/* === Body === */

body {
  background-color: lightblue;
}


body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color:#0077b6;
}

header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #05aef1c1;
  --webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.logo {
  width: 30%;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #6d0000;
  margin: 4px 0;
  transition: all var(--transition-speed) ease;
}

nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100%;
  width: 80%;
}

nav li a{
  display: flex;
  width: 100%;
  height: 100%;
}

.nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: color 0.3s;
}

nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-size: 11pt;
  transition: color var(--transition-speed) ease;
  width: 100%;
  height: 100%;
}

nav a:hover {
  color: rgb(255, 255, 255);
}

.nav-button {
  padding: 0.5rem 1rem;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  box-shadow: 0px 3px 0px rgba(161, 126, 1, 0.219);
}

.nav-button:hover {
  background-image: linear-gradient(to right, rgba(251, 255, 4, 0.999) 10%, rgba(8, 86, 255, 0.935) 90%);
  font-size: 12pt;
  font-weight: 500;
}

.active {
  background-image: linear-gradient(to right, rgb(241, 234, 21) 10%, rgba(241, 11, 11, 0.935) 90%);
}

.active {
  font-size: 12pt;
  color: #fff;
  font-weight: 500;
}
/* ---------- Footer ---------- */
footer {
  background-color: #222;
  color: #eee;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}
@media (max-width: 1250px) {
  main {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    font-size: 0.8rem;
    width: 100%;
  }

  h1 {
    font-size: 10pt;
  }

  h2 {
    font-size: 10pt;
  }

  h3 {
    font-size: 9pt;
  }

  p {
    font-size: 9pt;
  }

  .hero {
    width: 95%;
  }

  .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-left: 0.2em;
    margin-right: 0;
    padding: 0;
    margin-top: 100px;
  }

  .content {
    width: 100%;
    padding: 0.5rem;
  }

  .section {
    display: block;
    align-items: center;
    justify-content: start;
    margin-bottom: 1rem;
    gap: 0.7rem;
    
  }

  .contact-form {
    width: 80%;
  }

  /* Position and style for the nav in mobile view */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1724aff2;
    backdrop-filter: blur(10px);  
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
  }

  .logo {
    font-size: 28pt;
    width: 60%;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  /* Display the hamburger icon at small screens */
  .hamburger {
    display: flex;
  }

  /* When the nav-toggle is checked, fully expand the nav menu */
  #nav-toggle:checked + .hamburger + nav {
    display: flex;
    flex-direction: column;
    /* ensures the items stack vertically */
    width: 100%;
    max-height: 500px;
    /* Adjust this value to the maximum height of your menu */
    height: max-content;
    transition: max-height 0.3s ease-in-out;
    z-index: 1000;
  }

  #nav-toggle:checked + .hamburger + .nav-button + a {
    display: flex;
    flex-direction: column;
    /* ensures the items stack vertically */
    width: 80%;
  }

  /* Transform the hamburger icon into an X */
  #nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  #nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}


/* ===== SEARCH BOX ===== */
.search-box {
  align-items: center;
  display: flex;
  gap: 5px;
}

.search-box input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}



/* GRID SECTION */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 2rem;
}

.grid-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/*page 2 */
.intro-images {
  display: flex;             /* arrange images side by side */
  justify-content: space-between;
  align-items: center;
  gap: 20px;                 /* space between images */
  padding: 20px;
}

.image-column {
  flex: 1;                   /* each image takes equal width */
}

.image-column img {
  width: 100%;               /* image fills its column */
  height: auto;
  display: block;
  border-radius: 8px;        /* optional rounded corners */
}

/* Responsive: stack images on small screens */
@media (max-width: 768px) {
  .intro-images {
    flex-direction: column;
  }
}

/*page 2  3 section*/


/* Images container in 3 columns */
.magic-serenity .image-column {
  display: flex;            /* place images in a row */
  justify-content: space-between;
  gap: 20px;                /* space between columns */
}

.magic-serenity .image-column img {
  width: 100%;              /* fill each column */
  height: auto;
  border-radius: 8px;       /* same rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* same subtle shadow */
  display: block;
}

/* Responsive: stack images vertically on smaller screens */
@media (max-width: 768px) {
  .magic-serenity .image-row {
    flex-direction: column;
  }
}

/*page 1  1 section*/




.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 10px; /* space between images */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* center the grid */
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* optional: adds smooth rounded corners */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.03); /* subtle zoom effect on hover */
}
/*page 3  1,2,3 section*/

.text-section p {
  text-align: center;
  font-size: 18px;   /* optional */
  line-height: 1.6;  /* optional for better readability */
}


/* FOOTER */
footer {
  background: #023e8a;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* === FOOTER === */
footer {
  background-color: #023e8a;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  margin-top: 4rem;
}
/* ===== FOOTER SECTION ===== */
.site-footer {
  background: linear-gradient(135deg, #023e8a, #0077b6);
  color: white;
  padding: 2.5rem 1rem 1rem;
  font-family: "Poppins", sans-serif;
}

/* Footer layout: 3 main columns */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* === About Section === */
.footer-about {
  flex: 1 1 300px;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffd60a;
}

/* === Links Section === */
.footer-links {
  flex: 1 1 250px;
}

.footer-links h4 {
  color: #ffd60a;
  margin-bottom: 0.6rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #90e0ef;
}

/* === Social Section === */
.footer-social {
  flex: 1 1 200px;
}

.footer-social h4 {
  color: #ffd60a;
  margin-bottom: 0.6rem;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  background: #00b4d8;
  color: white;
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background: #90e0ef;
  transform: scale(1.1);
}

/* === Bottom Copyright === */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #caf0f8;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    flex: 1 1 100%;
  }

  .social-icons {
    justify-content: center;
  }
}




/* === Main Content === */
main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  margin-top: 200px;
}

section {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* === Main headings === */
section h1,h2 {
  color: #0077b6;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
}

section p {
  font-size: 1.1rem;
}

/* === Buttons === */
button, .btn {
  background-color: #00b4d8;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover, .btn:hover {
  background-color: #0077b6;
}

/* === Footer === */
footer {
  background-color: #023e8a;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }


  section {
    padding: 1.5rem;
  }
}


/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(135deg, #90e0ef, #caf0f8);
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  max-width: 800px;
  margin: 3rem auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-size: 2rem;
  color: #023e8a;
  margin-bottom: 1rem;
}

.contact-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* === FORM STYLING === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #023e8a;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4d8;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 180, 216, 0.3);
}

/* === BUTTON === */
.btn-submit {
  background-color: #0077b6;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #023e8a;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }
}
/* === FEEDBACK SECTION === */
.feedback-section {
  background: linear-gradient(135deg, #f8f7caf3, #fff4a3);
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  max-width: 800px;
  margin: 3rem auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feedback-section h2 {
  font-size: 2rem;
  color: #023e8a;
  margin-bottom: 1rem;
}

.feedback-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* === FORM === */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 0.4rem;
}

.feedback-form input,
.feedback-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #00b4d8;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 180, 216, 0.3);
}

/* === RATING STARS === */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 5px;
}

.rating input {
  display: none;
}

.rating label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* highlight stars on hover and when selected */
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: #ffb703;
}

/* === SUBMIT BUTTON === */
.btn-feedback {
  background-color: #0077b6;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  align-self: center;
}

.btn-feedback:hover {
  background-color: #023e8a;
}


   


@media (max-width: 600px) {
  .feedback-section {
    padding: 2rem 1rem;
  }

  .feedback-section h2 {
    font-size: 1.6rem;
  }

  .rating label {
    font-size: 1.6rem;
  }
}


/* ===== DISPLAYED COMMENTS ===== */
.feedback-comments {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  
}

.feedback-comments h3 {
  margin-bottom: 15px;
  color: #ffea05;
}
 

.comment {
  background-color: #f5ea1a;
  border-left: 5px solid #fce700;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.comment p {
  margin: 0;
  color: #333;

}

/* === ABOUT SECTION === */
.about-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-section h2 {
  color: #0077b6;
  margin-bottom: 1rem;
}

/* === STORY SECTION === */
.story-section {
  background: #f7fcfd;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 12px;
}

.story-section h2 {
  color: #0077b6;
  text-align: center;
  margin-bottom: 1.5rem;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.story-content img {
  width: 45%;
  border-radius: 10px;
}

.story-content p {
  flex: 1;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* === MISSION SECTION === */
.mission-section {
  text-align: center;
  background: linear-gradient(135deg, #caf0f8, #ade8f4);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.mission-section h2 {
  color: #023e8a;
  margin-bottom: 1rem;
}

/* === TEAM SECTION === */
.team-section {
  text-align: center;
  padding: 3rem 1rem;
}

.team-section h2 {
  color: #0077b6;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-member {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: #023e8a;
  margin-bottom: 0.3rem;
}

