@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');


.navbar-logo-img {
  width: 20px; /* Set the width you want */
  height: auto; /* Adjust the height automatically based on the width to maintain aspect ratio */
  max-height: 40px; /* Ensure the height does not exceed a specific value */
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phase-announcement {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #FFD700; /* Gold color */
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out forwards, pulse 2s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}



a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #1c3e5d;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
}

.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.23) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  max-width: 600px;
  text-align: center;
}

.main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  animation: slideUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: slideUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #fff;
  animation: slideUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}
.cta-button {
  animation: slideUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: rgba(175, 196, 220, 0.8);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1b3e5d;
}

.logo-container {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 4;
}

.hero-logo {
  width: 100px;
  height: auto;
}

.image-swap-buttons {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 4;
}

.swap-button {
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
  background: none;
}

.swap-button.active, .swap-button:hover {
  background-color: #fff;
}

@media (max-width: 768px) {
  .hero-text {
    max-width: 100%;
  }

  .logo-container {
    top: 1rem;
    left: 1rem;
  }

  .hero-logo {
    width: 80px;
  }

  .image-swap-buttons {
    bottom: 1rem;
    right: 1rem;
  }
}
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #afc4dc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #afc4dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-logo:hover {
  color: #1b3e5d;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-link {
  margin-left: 2rem;
  color: #1b3e5d;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link i {
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover i {
  opacity: 1;
  transform: translateY(0);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #1b3e5d;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.language-switch {
    display: flex;
    align-items: center;
    margin-left: 2rem;
  }
  
  .language-switch span {
    margin: 0 0.25rem;
    color: #333;
  }
  
  .language-switch .nav-link {
    margin-left: 0;
    padding: 0 0.5rem;
  }
.language-switch .nav-link.active {
  font-weight: bold;
  color: #1b3e5d;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon__line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    width: auto;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 20px 0;
    padding: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    margin: 1rem 0;
    justify-content: flex-start;
  }

  .nav-link i {
    opacity: 1;
    transform: translateY(0);
    margin-right: 1rem;
  }

  .language-switch {
    justify-content: flex;
    margin-top: 1rem;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link span {
    display: inline-block;
  }
}

.key-features {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden; /* Ensure no overflow */
  box-sizing: border-box; /* Include padding and border in the element's width and height */
}

.diagonal-split {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
}

.image-half {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/image15.jpg');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 0 100%, 65% 100%, 55% 0);
}

.content-half {
  position: relative;
  width: 50%;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 3rem 3rem 3rem 6rem;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 18% 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.key-features-header {
  text-align: left;
  margin-bottom: 2rem;
}

.key-features-header h2 {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  color: #1b3e5d;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word; /* Ensure text wraps within container */
  overflow-wrap: break-word; /* Prevent text overflow */
  box-sizing: border-box;
}

.key-features-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #6c757d;
  font-family: 'Montserrat', sans-serif;
  word-wrap: break-word; /* Ensure text wraps within container */
  overflow-wrap: break-word; /* Prevent text overflow */
  box-sizing: border-box;
}

.features-description {
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.features-animation {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  width: calc(50% - 0.75rem);
}

.feature-item i {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-right: 0.5rem;
  color: #1b3e5d;
}

.feature-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #333;
}

.learn-more-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #1b3e5d;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.learn-more-btn:hover {
  background-color: #afc4dc;
  color: #1b3e5d;
}

@media (max-width: 1200px) {
  .content-half {
    width: 55%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 15% 0);
    padding: 3rem 2rem 3rem 4rem;
  }
}

@media (max-width: 992px) {
  .content-half {
    width: 100%;
    margin-left: 0;
    clip-path: none;
    padding: 2rem 1rem; /* Adjusted padding for better fit */
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .key-features-header {
    text-align: left; /* Align text to the left for consistency */
  }
  
  .key-features-header h2 {
    font-size: clamp(1.3rem, 3.5vw, 2rem); /* Adjusted font size for better fit */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .key-features-header p {
    font-size: clamp(0.8rem, 2vw, 1rem); /* Adjusted font size for better fit */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 576px) {
  .content-half {
    padding: 1.5rem 1.5rem; /* Further reduce padding on very small screens */
  }
  
  .key-features-header h2 {
    font-size: 1.3rem; /* Smaller font size for very small screens */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .key-features-header p {
    font-size: 0.8rem; /* Smaller font size for very small screens */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

.learn-more-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #1b3e5d;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.learn-more-btn:hover {
  background-color: #afc4dc;
  color: #1b3e5d;
}

@media (max-width: 992px) {
  .diagonal-split {
    flex-direction: column;
    min-height: auto;
  }

  .image-half {
    position: relative;
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .content-half {
    width: 100%;
    margin-left: 0;
    clip-path: none;
    padding: 3rem 2rem;
  }

  .features-animation {
    flex-direction: column;
  }

  .feature-item {
    width: 100%;
  }
}

  .more-info-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 2rem;
    background-color: #afc4dc;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .more-info-btn:hover {
    background-color: #1b3e5d;
  }
  
  .additional-info {
    display: none;
    margin-top: 2rem;
  }



  .location-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
  }
  
  .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
  }
  
  .location-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
  
  .location-info {
    flex: 1;
    padding: 2rem;
  }
  
  .location-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1b3e5d;
    margin-bottom: 1.5rem;
  }
  
  .location-highlights {
    list-style-type: none;
    padding: 0;
  }
  
  .location-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
  }
  
  .location-highlights i {
    font-size: 1.5rem;
    color: #1b3e5d;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
  }
  
  .location-map {
    width: 100%;
    max-width: 800px; /* Adjust this value based on your design needs */
    margin: 0 auto;
    position: relative;
  }
  
  .responsive-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .discover-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: #afc4dc;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
  }
  
  .discover-button span {
    margin-right: 10px;
  }
  
  .discover-button i {
    transition: transform 0.3s ease;
    
  }
  
  .discover-button:hover {
    background-color: #1b3e5d;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  .discover-button:hover i {
    transform: translateX(5px);
  }
  
  @media (max-width: 768px) {
    .location-card {
      flex-direction: column;
    }
  
    .location-map {
      max-width: 100%;
    }
    
  }


  .surroundings {
    background-color: #f8f9fa;
    padding: 5rem 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1b3e5d;
    margin-bottom: 1rem;
  }
  
  .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
  }
  
  .climate-showcase {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .imageW-container {
    flex: 1;
    min-height: 400px;
    background-image: url('/static/weather-bg.JPG');
    background-size: cover;
    background-position: center;
  }
  .image-container {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
  }
  

  .climate-info {
    flex: 1;
    background-color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .climate-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
  }
  
  .climate-card:hover {
    transform: translateY(-5px);
  }
  
  .climate-icon {
    font-size: 2rem;
    color: #1b3e5d;
    margin-bottom: 1rem;
  }
  
  .climate-card h3 {
    font-size: 1.2rem;
    color: #1b3e5d;
    margin-bottom: 0.5rem;
  }
  
  .climate-card .highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1b3e5d;
    margin-bottom: 0.5rem;
  }
  
  .climate-card .description {
    font-size: 0.9rem;
    color: #6c757d;
  }
  
  @media (max-width: 768px) {
    .climate-showcase {
      flex-direction: column;
    }
    
    .image-container {
      min-height: 200px;
    }
  }
  /* Activities Section */
  .activities-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
  }
  
  .activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .activity-card:hover {
    transform: translateY(-10px);
  }
  
  .activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .activity-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    color: #1b3e5d;
  }
  
  .activity-card p {
    padding: 0 1rem 1rem;
    color: #1c3e5d;
  }
  
  .culture-section {
    padding: 4rem 2rem;
    background-color: #fff;
  }
  
  .culture-slider {
    position: relative;
    overflow: hidden;
    height: 400px; /* Adjust based on your content */
  }
  
  .culture-slide {
    display: flex;
    align-items: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  
  .culture-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .culture-slide img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .slide-info {
    width: 50%;
    padding: 2rem;
  }
  
  .slide-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1b3e5d;
  }
  
  .slide-info p {
    font-size: 1.1rem;
    color: #1c3e5d;
  }
  
  @media (max-width: 768px) {
    .culture-slider {
      height: auto;
    }
  
    .culture-slide {
      flex-direction: column;
      height: auto;
    }

    .weather-card {
      width: 80%;
      margin-bottom: 2rem;
    }
  
    .culture-slide img,
    .slide-info {
      width: 100%;
    }
  
    .culture-slide img {
      height: 300px;
    }
  
    .slide-info {
      padding: 1rem;
    }
  }
 /* Asegurar que los modales funcionen */
.contactmodal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contactmodal-content {
    position: relative;
    margin: 15% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    background-color: #fefefe;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contactmodal-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.contactmodal-content p {
    color: #666;
    margin-bottom: 20px;
}

.contactmodal-content .fas {
    font-size: 50px;
    margin-bottom: 20px;
}

.contactmodal-content .fa-check-circle {
    color: #4CAF50;
}

.contactmodal-content .fa-exclamation-circle {
    color: #f44336;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Loading overlay */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    color: white;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1b3e5d;
    margin-bottom: 1rem;
  }
  
  .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
  }
  
  .contact-form {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1b3e5d;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #1b3e5d;
    box-shadow: 0 0 0 0.2rem rgba(27, 62, 93, 0.25);
    outline: none;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1b3e5d;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #2c5d8b;
    transform: translateY(-2px);
  }
  
  .submit-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .submit-btn:hover i {
    transform: translateX(5px);
  }
  
  @media (max-width: 768px) {
    .contact-form {
      padding: 2rem;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }


  .gallery {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1b3e5d;
    margin-bottom: 2rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item-inner {
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    background: rgba(0,0,0,0.5);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* General styles for animated headers */
.animated-header {
  position: relative;
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: headerAppear 0.8s ease forwards;
}

.animated-header span {
  display: inline-block;
  position: relative;
}

.animated-header span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1b3e5d; /* Adjust color as needed */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.animated-header:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Appearance animation */
@keyframes headerAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applying animations with delays to different headers */
h1.animated-header { animation-delay: 0.2s; }
h2.animated-header { animation-delay: 0.3s; }
h3.animated-header { animation-delay: 0.4s; }
h4.animated-header { animation-delay: 0.5s; }
h5.animated-header { animation-delay: 0.6s; }
h6.animated-header { animation-delay: 0.7s; }

@media (max-width: 768px) {
  .animated-header {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .animated-header span::after {
    display: none;
  }
}

.testimonials-section {
  position: relative;
  padding: 6rem 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.learn-more-container {
  margin-top: 1rem; /* Add spacing between the image and the button */
  text-align: center; /* Center the button */
  width: 100%; /* Ensure the container takes full width */
  margin-bottom: 1rem;
}


.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1b3e5d;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #6c757d;
  font-family: 'Montserrat', sans-serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 4rem;
  color: #afc4dc;
  position: absolute;
  opacity: 0.3;
}

.testimonial-content::before {
  top: -20px;
  left: -10px;
}

.testimonial-content::after {
  bottom: -50px;
  right: -10px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  text-align: right;
  color: #6c757d;
}

.diagonal-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #afc4dc;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 20% 0);
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonials-grid {
      grid-template-columns: 1fr;
  }

  .diagonal-bg {
      clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 10%);
  }
}
.site-footer {
  background-color: #afc4dc;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-links a {
  color: #1b3e5d;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-left: 2rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #333;
}

.footer-links a:hover i {
  transform: scale(1.1);
}

.footer-copyright {
  color: #1b3e5d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .footer-links {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .footer-links a {
    margin: 0.5rem 0;
  }

  .footer-links a i {
    opacity: 1;
    transform: translateY(0);
  }
}