/* Modern color palette */
:root {
  --primary-color: #819cd1; /* Blue */
  --secondary-color: #3a3857; /* Dark blue-gray */
  --accent-color: #30303d; /* Darker blue-gray */
  --dark-color: #2f2f2f; /* Dark gray */
  --light-color: #f8f9fa; /* Light gray */
  --text-color: #333333; /* Dark text */
  --white: #ffffff;

  /* Mobile-first breakpoints */
  --mobile-xs: 320px;
  --mobile-sm: 375px;
  --mobile-md: 425px;
  --tablet: 768px;
  --desktop-sm: 1024px;
  --desktop-md: 1200px;
  --desktop-lg: 1440px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Typography */
.section-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 1.8rem;
}

/* .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1.5px;
  background: var(--secondary-color);
} */

/* Navigation */
.navbar {
  background: transparent !important;
  backdrop-filter: none;
  transition: all 0.4s ease;
  padding: 0.7rem 0;
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(129, 156, 209, 0.95) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile navbar optimization */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(15px);
    padding: 0.4rem 0;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .navbar-nav .nav-link {
  text-shadow: none;
}

.navbar-brand {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--white) !important;
  /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); */
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 400;
  margin: 0 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.3px;
  /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); */
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../assets/images/hero/hero-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Changed from fixed to prevent glitches */
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Add subtle animated overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(129, 156, 209, 0.1) 0%,
    rgba(58, 56, 87, 0.1) 50%,
    rgba(129, 156, 209, 0.1) 100%
  );
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroShimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Floating decorative elements */
.hero-section::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(129, 156, 209, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Add more floating elements */
.hero-overlay::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(58, 56, 87, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatReverse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(15px) rotate(-180deg);
    opacity: 0.5;
  }
}

/* Mobile hero background optimization */
@media (max-width: 768px) {
  .hero-section {
    background-position: center top;
    background-attachment: scroll; /* Better performance on mobile */
    background-size: cover;
    background-repeat: no-repeat;
    /* Remove object-fit and object-position as they don't work with background images */
  }

  /* Portrait crop for mobile */
  @media (orientation: portrait) {
    .hero-section {
      background-position: center 30%;
    }
  }

  /* Mobile layout: text at top, CTAs at bottom */
  .hero-overlay {
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    padding-top: 80px; /* Add space for navbar height */
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero-overlay .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 80px); /* Full height minus navbar */
    padding: 0;
  }

  .hero-overlay .row {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
  }

  .hero-overlay .col-12 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
  }

  /* Text content at top */
  .hero-title,
  .hero-subtitle {
    margin-bottom: 1rem;
  }

  /* Move text higher on mobile */
  .hero-title {
    margin-top: 0;
  }

  .hero-subtitle {
    margin-top: 0.5rem;
  }

  /* CTA container at bottom */
  .hero-cta-container {
    margin-top: auto;
    margin-bottom: 0;
  }
}

.hero-overlay {
  background: rgba(129, 156, 209, 0.1);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Bottom gradient overlay for better text contrast on mobile */
@media (max-width: 768px) {
  .hero-overlay::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero-overlay .container {
    position: relative;
    z-index: 2;
  }
}

.hero-section h1 {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(129, 156, 209, 0.3);
  font-weight: 600;
  letter-spacing: -0.5px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 20ch;
  line-height: 1.2;
  position: relative;
  animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
  0% {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(129, 156, 209, 0.3);
  }
  100% {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5),
      0 0 30px rgba(129, 156, 209, 0.5);
  }
}

/* Fluid typography for hero subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 35ch;
  line-height: 1.4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  opacity: 0.95;
  position: relative;
}

/* Mobile subtitle full width */
@media (max-width: 768px) {
  .hero-subtitle {
    max-width: 100%;
    width: 100%;
    font-weight: 600;
  }
}

/* Hero CTA Container */
.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta-primary {
  width: 100%;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 0.875rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6b8dd6 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(129, 156, 209, 0.4),
    0 0 20px rgba(129, 156, 209, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-cta-primary:hover::before {
  left: 100%;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(129, 156, 209, 0.6),
    0 0 30px rgba(129, 156, 209, 0.3);
}

.hero-cta-secondary {
  width: 100%;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta-secondary::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: opacity 0.3s ease;
}

.hero-cta-secondary:hover::before {
  opacity: 1;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Desktop CTA layout */
@media (min-width: 768px) {
  .hero-cta-container {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: auto;
    min-width: 200px;
  }
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 1.2rem;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-0.5px);
  border-color: var(--white) !important;
}

.btn-outline-light {
  border: 1px solid var(--white);
  color: var(--white);
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 1.2rem;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-0.5px);
}

.btn-outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 18px;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-0.5px);
}

/* About Section */
.about-image img {
  transition: transform 0.3s ease;
}

/* .about-image img:hover {
  transform: scale(1.01);
} */

.placeholder-image {
  background: var(--light-color);
  height: 300px;
  border: 2px dashed var(--primary-color);
  opacity: 0.7;
}

.feature-item {
  text-align: center;
  padding: 1rem 0.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.feature-item i {
  font-size: 2.2rem;
  color: var(--primary-color);
}

/* Destination Cards */
.destination-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.01);
}

.destination-card .card-body {
  padding: 1.5rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  padding: 1.2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--primary-color);
}

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  transition: all 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(129, 156, 209, 0.1),
    rgba(58, 56, 87, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.gallery-item::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: transform 0.3s ease;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox styles */
.lightbox {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.9) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000 !important;
  opacity: 1 !important;
}

.lightbox-content {
  position: relative !important;
  max-width: 90% !important;
  max-height: 90% !important;
  text-align: center !important;
}

.lightbox-close {
  position: absolute !important;
  top: -40px !important;
  right: 0 !important;
  background: none !important;
  border: none !important;
  color: white !important;
  font-size: 2rem !important;
  cursor: pointer !important;
  z-index: 10001 !important;
}

.lightbox-image {
  max-width: 100% !important;
  max-height: 80vh !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.lightbox-caption {
  color: white !important;
  margin-top: 1rem !important;
  font-size: 1.1rem !important;
  opacity: 0.9 !important;
}

/* Contact Form */
.contact-form .form-control {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(129, 156, 209, 0.25);
}

.contact-info i {
  font-size: 1.2rem;
  width: 20px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-0.5px);
}

/* Testimonials Section */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(129, 156, 209, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.7;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-start;
}

.star-rating i {
  color: #ffc107;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.star-rating i.far {
  color: #e0e0e0;
}

.star-rating i:hover {
  transform: scale(1.2);
  color: #ffdb4d;
}

.star-rating i.fas {
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.testimonial-text {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  color: var(--primary-color);
  font-size: 2.5rem;
  opacity: 0.8;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.author-location {
  color: var(--text-color);
  font-size: 0.85rem;
  margin-bottom: 0;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .section-title::after {
    left: 0;
    transform: none;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Focus States */
.btn:focus,
.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(129, 156, 209, 0.2);
}

.op1 {
  opacity: 1 !important;
}

/* Enhanced About Section Styles */
.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-badge {
  z-index: 10;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.about-overlay {
  backdrop-filter: blur(10px);
}

.intro-card {
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, #5a7bb8 100%);
}

.credential-item {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.credential-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(129, 156, 209, 0.2);
}

.credential-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.safety-card {
  border: 1px solid rgba(129, 156, 209, 0.2);
  position: relative;
  overflow: hidden;
}

.safety-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    #5a7bb8 50%,
    var(--primary-color) 100%
  );
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(129, 156, 209, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Enhanced section header */
.section-header .badge {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
  .about-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .credential-item {
    margin-bottom: 1rem;
  }

  .feature-card {
    margin-bottom: 1rem;
  }

  .intro-card {
    padding: 1.5rem !important;
  }

  .safety-card {
    padding: 1.5rem !important;
  }
}

/* ===== SIMPLE ABOUT SECTION ===== */

/* About photo */
.about-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-photo:hover img {
  transform: scale(1.05);
}

/* Experience tag */
.experience-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #2fc193;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.experience-tag i {
  color: #ffd700;
  margin-right: 0.3rem;
}

/* Introduction text */
.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

/* Key points */
.key-points {
  margin: 2rem 0;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #2fc193;
}

.point-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.point-item i {
  width: 40px;
  height: 40px;
  background: #e8f5e8;
  color: #2fc193;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.point-item h6 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  color: #2d3748;
  font-size: 1.4rem;
}

.point-item small {
  color: #718096;
  font-size: 1.2rem;
}

/* Safety promise */
.safety-promise {
  background: #f7fafc;
  /* border: 1px solid #e2e8f0; */
  border-radius: 0.75rem;
  /* padding: 1.5rem; */
  margin: 2rem 0;
}

.safety-promise h5 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.safety-promise h5 i {
  color: #2fc193;
}

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

.safety-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #4a5568;
  font-size: 1.2rem;
}

.safety-list i {
  color: #2fc193;
  font-size: 1.2rem;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-buttons .btn {
  border-radius: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: #2fc193;
  border-color: #2fc193;
}

.cta-buttons .btn-primary:hover {
  background: #22543d;
  border-color: #22543d;
  transform: translateY(-1px);
}

.cta-buttons .btn-outline-primary {
  color: #2fc193;
  border-color: #2fc193;
}

.cta-buttons .btn-outline-primary:hover {
  background: #2fc193;
  border-color: #2fc193;
  transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
  .key-points .row {
    gap: 1rem;
  }

  .point-item {
    padding: 0.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    margin: 0;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .experience-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 576px) {
  .hero-subtitle {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .point-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .point-item i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .safety-promise {
    padding: 1rem;
  }
}

/* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* Base mobile styles (320px+) */
body {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Container adjustments for mobile */
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Navigation - Mobile First */
.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.2rem;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

/* Hero Section - Mobile First */
.hero-section {
  min-height: 100vh;
  background-attachment: scroll; /* Better performance on mobile */
}

.hero-section h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-section .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
  /* max-width: 280px; */
}

/* About Section - Mobile First */
.about-photo {
  margin-bottom: 2rem;
}

.about-photo img {
  border-radius: 0.75rem;
}

.experience-tag {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  top: 0.75rem;
  right: 0.75rem;
}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.about-content .lead {
  font-size: 1rem;
  text-align: center;
}

/* Key Points - Mobile First */
.key-points .row {
  gap: 0.75rem;
}

.point-item {
  flex-direction: column;
  text-align: center;
  padding: 1rem 0.75rem;
  gap: 0.75rem;
}

.point-item i {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.point-item h6 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.point-item small {
  font-size: 0.8rem;
}

/* Safety Promise - Mobile First */
.safety-promise {
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.safety-promise h5 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.safety-list li {
  font-size: 1.2rem;
  padding: 0.4rem 0;
}

/* CTA Buttons - Mobile First */
.cta-buttons {
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-buttons .btn {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

/* Destinations - Mobile First */
.destination-card {
  margin-bottom: 1.5rem;
}

.destination-card img {
  height: 200px;
}

.destination-card .card-body {
  padding: 1.25rem;
}

.destination-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.destination-card p {
  font-size: 0.9rem;
  margin-bottom: 0rem;
}

.destination-card .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

/* Services - Mobile First */
.service-card {
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 2rem;
}

.service-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
}

/* Testimonials - Mobile First */
.testimonial-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.author-name {
  font-size: 0.9rem;
}

.author-location {
  font-size: 0.8rem;
}

/* Gallery - Mobile First */
.gallery-item {
  margin-bottom: 1rem;
}

.gallery-item img {
  height: 200px;
}

/* Contact - Mobile First */
.contact-form .form-control {
  font-size: 0.9rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info .d-flex {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Footer - Mobile First */
.footer {
  padding: 2rem 0;
  text-align: center;
}

.social-links {
  margin-top: 1rem;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 0.5rem;
}

/* Lightbox - Mobile First */
.lightbox {
  padding: 1rem;
}

.lightbox-content {
  max-width: 95%;
  max-height: 95%;
}

.lightbox-close {
  top: -30px;
  font-size: 1.5rem;
}

.lightbox-image {
  max-height: 70vh;
}

.lightbox-caption {
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* Small Mobile (375px+) */
@media (min-width: 375px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  /* .hero-section .btn {
    max-width: 300px;
  } */

  .section-title {
    font-size: 1.6rem;
  }

  .destination-card img {
    height: 220px;
  }

  .gallery-item img {
    height: 220px;
  }
}

/* Medium Mobile (425px+) */
@media (min-width: 425px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .point-item {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
  }

  .point-item i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .destination-card img {
    height: 240px;
  }

  .gallery-item img {
    height: 240px;
  }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Navigation */
  .navbar {
    padding: 0.7rem 0;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .navbar-nav .nav-link {
    margin: 0 1rem;
    font-size: 1rem;
  }

  .navbar-collapse {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  /* Hero */
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.2rem;
  }

  .hero-section .btn {
    width: auto;
    margin-right: 1rem;
    margin-bottom: 0;
  }

  /* About */
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-content .lead {
    text-align: left;
  }

  .key-points .row {
    gap: 1rem;
  }

  .point-item {
    padding: 1.25rem;
  }

  .safety-promise h5 {
    text-align: left;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: auto;
  }

  /* Cards */
  .destination-card img {
    height: 250px;
  }

  .gallery-item img {
    height: 250px;
  }

  /* Contact */
  .contact-form .form-control {
    font-size: 1rem;
    padding: 0.875rem;
  }

  .contact-info .d-flex {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    text-align: left;
  }

  .social-links {
    justify-content: flex-end;
    margin-top: 0;
  }
}

/* Desktop Small (1024px+) */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }

  .hero-section .lead {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .destination-card img {
    height: 250px;
  }

  .gallery-item img {
    height: 250px;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* Desktop Medium (1200px+) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .destination-card img {
    height: 280px;
  }

  .gallery-item img {
    height: 280px;
  }
}

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-section h1 {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-section .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* High DPI Displays */
@media (min-resolution: 192dpi) {
  .hero-section {
    background-image: url("../assets/images/hero/hero-bg.jpg");
  }
}

/* Touch Device Enhancements */
.touch-device .destination-card:hover,
.touch-device .service-card:hover,
.touch-device .testimonial-card:hover {
  transform: none;
}

.touch-device .gallery-item:hover {
  transform: none;
}

.touch-device .gallery-item:hover::before,
.touch-device .gallery-item:hover::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* Mobile Form Enhancements */
.contact-form .focused {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Mobile-specific button improvements */
@media (max-width: 768px) {
  .btn {
    min-height: 44px; /* iOS recommended touch target size */
    min-width: 44px;
  }

  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
  }

  .social-links a {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    will-change: auto;
  }

  .gallery-item,
  .destination-card,
  .service-card,
  .testimonial-card {
    will-change: transform;
  }
}

/* Mobile Accessibility Improvements */
@media (max-width: 768px) {
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-section h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}

/* Mobile Landscape Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .navbar {
    padding: 0.3rem 0;
  }
}

/* Mobile Dark Mode Support */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)),
      url("../assets/images/hero/hero-bg.jpeg");
    background-position: calc(50% - 300px);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
  }
}

/* Mobile Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .gallery-item,
  .destination-card,
  .service-card,
  .testimonial-card,
  .btn,
  .navbar-nav .nav-link {
    transition: none !important;
    animation: none !important;
  }

  .hero-section {
    background-attachment: scroll;
  }
}

/* Mobile High Contrast Support */
@media (prefers-contrast: high) and (max-width: 768px) {
  .btn-outline-primary {
    border-width: 2px;
  }

  .navbar-nav .nav-link::after {
    height: 3px;
  }

  .section-title {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
}

/* FAQ Section Styles */
.accordion-item {
  border: 1px solid rgba(129, 156, 209, 0.1);
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.accordion-button {
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(129, 156, 209, 0.25);
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23819cd1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-body {
  padding: 1.5rem;
  background: var(--white);
  border-top: 1px solid rgba(129, 156, 209, 0.1);
}

.accordion-body p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.accordion-body ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.accordion-body li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--text-color);
}

.accordion-body strong {
  color: var(--secondary-color);
  font-weight: 600;
}

/* FAQ Icons */
.accordion-button i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
  .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 1.25rem;
  }

  .accordion-button i {
    font-size: 1rem;
  }
}

/* FAQ Animation */
.accordion-collapse {
  transition: all 0.3s ease;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  /* animation: whatsappPulse 2s infinite; */
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

.whatsapp-btn i {
  font-size: 28px;
  z-index: 2;
  position: relative;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  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;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@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 WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 100px; /* Move up to avoid collision with hero CTAs */
    right: 15px;
    z-index: 1001; /* Ensure it's above hero content */
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn i {
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none; /* Hide tooltip on mobile for better UX */
  }

  /* Additional spacing for hero section */
  .hero-cta-container {
    margin-bottom: 1rem; /* Extra space for WhatsApp button */
  }
}

@media (max-width: 480px) {
  /* Very small screens: text at top, CTAs at bottom */
  .hero-overlay {
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    padding-top: 80px; /* Add space for navbar height */
  }

  .hero-overlay .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
  }

  .hero-overlay .row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
  }

  .hero-overlay .col-12 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
  }

  /* Text content spacing */
  .hero-title,
  .hero-subtitle {
    margin-bottom: 1rem;
  }

  /* Move text higher on very small screens */
  .hero-title {
    margin-top: 0;
  }

  .hero-subtitle {
    margin-top: 0.5rem;
  }

  /* CTA container at very bottom */
  .hero-cta-container {
    margin-top: auto;
    margin-bottom: 0;
  }

  .whatsapp-float {
    bottom: 18px; /* Keep above CTAs on small screens too */
    right: 10px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn i {
    font-size: 22px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-item::after,
  .gallery-item::before,
  .whatsapp-float {
    display: none !important;
  }

  .hero-section {
    background: none !important;
    color: black !important;
    min-height: auto !important;
  }

  .hero-section h1,
  .hero-section .lead {
    color: black !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none !important;
    padding: 0 !important;
  }
}

.mobile-title {
  font-size: 1.7rem !important;
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 600;
  /* color: #9a9997; */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(129, 156, 209, 0.3);
}

.logo-img {
  height: 30px;
  width: 30px;
}
