:root {
    --primary-color: #06619e;
    --secondary-color: #9fd2f3;
    --text-color: dimgrey;
    --header-text-color: white;
    --notification-color: green;
    --navbar-items-text-color: black;
    --header-image: url("https://res.cloudinary.com/duvqdy5qf/image/upload/v1751359982/mkdhydro/penk23fncvcoukaapv5n.jpg");
  }
  
html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-color);
  max-width: 100vw;
  overflow-x: hidden;
}

header {
  background-color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 50px;
  border-bottom: 2px solid var(--primary-color);
}

.hero {
    position: relative;
    text-align: center;
    color: #f8f8f8;
    background-image: url(https://res.cloudinary.com/duvqdy5qf/image/upload/v1751359982/mkdhydro/penk23fncvcoukaapv5n.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.hero h1 {
  font-size: 48px;
  font-family: sans-serif;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero .english-hero {
  font-size: 40px;
}
.hero p {
  font-size: 20px;
  margin: 0 0 30px;
}

.hero button {
  position: relative;
  z-index: 999;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    scale 0.4s ease;
}

.hero button:hover {
  background-color: #005f99;
  scale: 1.1;
}

.wave {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.wave path {
  fill: var(--secondary-color);
}
.container {
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: fit-content;
  background-color: white;
  width: 100%;
  max-width: 100%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.section:nth-child(odd) {
  background-color: var(--primary-color);
  color: white;
}
.scale-on-hover {
  transition: scale 0.5s ease;
  cursor: pointer;
}
.scale-on-hover:hover {
  scale: 1.05;
}

.section-content {
  flex: 1;
  text-align: left;
}

.circular-images {
  max-width: 50%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 20rem;
  aspect-ratio: 1;
  object-fit: cover;
}
.square-images {
  border-radius: 0%;
}
.right-flow-image {
  position: relative;
  right: 0;
}
.left-flow-image {
  position: relative;
  left: 0;
}
.circle {
  position: fixed;
  border-radius: 50%;
  background-color: rgba(114, 181, 225, 0.5);
}

.circle-1 {
  top: 30rem;
  left: -7rem;
  width: 20rem;
  height: 20rem;
}

.circle-2 {
  bottom: -50px;
  right: 2px;
  width: 180px;
  height: 180px;
}

.circle-3 {
  bottom: 10%;
  right: 50%;
  width: 200px;
  height: 200px;
}

.gallery-view-all-container {
    background-color: white;
    height: 100%;
    padding: 1rem;

}

footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }

  .section img {
    max-width: 100%;
  }

  .section-content {
    width: 100%;
  }
}
