/*---Base & Reset---*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html, body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  background: #f8f9fa;
  color: #222;
}

/*---Colors---*/
:root {
    --color-1: #39614a; /* Green */
    --color-2: #2ecc71; /* Lighter Green */
    --color-3: #e4df7d; /* Yellow */
    --color-4: #f8f9fa; /*Off white */
    --color-5: #ece9a9; /* Light Background */
    --color-6: rgb(0, 89, 255); /* blue */
}

/*---Scroll to top Button---*/

#scrollTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-1);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(44,204,113,0.13);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: background 0.2s, transform 0.2s;
    opacity: 0.92;
    animation: beacon-glow 1.2s infinite alternate;
    display: none; /* Hide by default */
}


#scrollTopBtn:hover {
    background: var(--color-2);
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
    animation: beacon-glow 0.6s infinite alternate;
}

/*---Button Glow Effect---*/

@keyframes beacon-glow {
    0% {
        box-shadow: 0 0 12px 4px var(--color-1), 0 2px 12px rgba(44,204,113,0.13);
    }
    100% {
        box-shadow: 0 0 32px 12px var(--color-2), 0 2px 12px rgba(44,204,113,0.13);
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Navigation*/
/* NAVIGATION (DESKTOP) */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 6px 24px -4px rgba(44, 204, 113, 0.18), 0 2px 12px rgba(0, 0, 0, 0.10);
  padding: 16px 40px;
  height: 140px;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 120px;
  width: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-1);
}

.nav-company {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-1);
}

.nav-links-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: orange;
}

.nav a.book-now {
  background: var(--color-1);
  color: #fff;
  padding: 10px 22px;
  border: 2px solid var(--color-1);
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.1);
  transition: background 0.2s;
}

.nav a.book-now:hover {
  background: var(--color-3);
  color: #000;
  border: 2px solid #000;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  height: 4px;
  width: 28px;
  background: #222;
  border-radius: 2px;
}

/* CLOSE BUTTON */
.nav-close {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 974px) {
  .nav {
    height: 75px;
    padding: 0 16px;
  }

  .nav-logo {
    height: 60px;
  }

  .nav-company {
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links-group {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75vw;
    max-width: 320px;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.1);
    padding: 60px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
  }

  .nav-links-group.open {
    transform: translateX(0);
  }

  .nav-links-group a {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    text-align: left;
  }

  .nav a.book-now {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 12px 0;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #222;
    cursor: pointer;
  }

  .nav.open .nav-hamburger {
    display: none !important;
  }
}

/* ============================
   About Welcome Section
   ============================ */

.about-welcome {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: url('../images/about-img2.jpg') center/cover no-repeat;
  text-align: left;
  position: relative;
  padding: 80px 0 40px 60px;
  overflow-x: hidden;
}

.about-welcome h1 {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-6);
  line-height: 1.1;
  -webkit-text-stroke: 1px black; /* width and color of outline */
    /* For Firefox */
    text-stroke: 1px black; /* experimental, less supported */
}

.about-welcome p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  max-width: 700px;
}

/* ============================
   Responsive Adjustments
   ============================ */

@media (max-width: 700px) {
  .about-welcome {
    padding: 32px 16px 24px;
    align-items: center;
    text-align: center;
    min-height: 60vh;
  }

  .about-welcome h1 {
    font-size: 2.7rem;
  }

  .about-welcome p {
    font-size: 1rem;
  }
}


/* About Main Section*/
.about-main {
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44,204,113,0.07);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-main-content {
    flex: 2 1 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-main h1 {
    font-size: 1rem;
    margin-top: 0;
    color: #155b15;
    margin-bottom: 0;
}

.about-main h2 {
    font-size: 2.3rem;
    color: #409765;
    margin-top: 0;
    margin-bottom: 8px;
}

.about-main p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(44,204,113,0.05);
}

.owners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin: 40px auto 30px auto;
  width: 100%;
  max-width: 1000px;
  flex-wrap: wrap; /* 🔥 Allow cards to wrap on smaller screens */
  padding: 0 16px;  /* 🔥 Prevent edge overflow */
}

.owner-card {
  background: #fff;
  color: #18462b;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,204,113,0.10);
  padding: 32px 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  min-height: 340px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 16px auto; /* spacing between rows on mobile */
}

.owner-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(44,204,113,0.13);
}

.owner-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 10px 0 4px 0;
  color: #18462b;
}

.owner-card p {
  font-size: 1.05rem;
  color: #27ae60;
  margin: 0;
  font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 700px) {
  .owners {
    flex-direction: column;
    gap: 24px;
  }

  .owner-card {
    width: 100%;
    max-width: 320px; /* Keeps it neat on mobile */
    min-height: auto; /* Allows natural height */
  }
}

/* ============================
   Why Choose Us Section
   ============================ */

.why-choose-us {
  background: #f8f9fa;
  padding: 40px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44,204,113,0.07);
  text-align: center;
  max-width: 1200px;
  margin: 40px auto;
}

.why-choose-us h1 {
  font-size: 1rem;
  margin-top: 0;
  color: #155b15;
  margin-bottom: 0;
}

.why-choose-us h2 {
  font-size: 2.3rem;
  color: #27ae60;
  margin-top: 0;
  margin-bottom: 8px;
}

.why-choose-us .info {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 100px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(44,204,113,0.05);
}

/* ✅ Responsive container */
.why-choose-us .container {
  display: flex;
  flex-wrap: wrap; /* 🔥 Allows wrap on smaller screens */
  justify-content: center;
  gap: 20px;
}

/* ✅ Card item */
.why-choose-us .inner-container {
    width: 250px;
    height: 150px;
    border-radius: 15px;
    background-color: #d1ddd1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    padding-bottom: 18px;   
    box-sizing: border-box;
    padding-top: 40px;
}

/* Icon */
.icon-circle {
  width: 90px;
  height: 90px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,204,113,0.15);
  z-index: 2;
}

.icon-circle:hover {
  transform: translateX(-50%) scale(1.1);
}

.icon-circle img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.why-choose-us span{
    font-size: 3rem;
    color: #000;
    font-weight: 600;
    margin-top: 100px;
    display: block;
    margin-top: 10px;
    text-align: center;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 700px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .why-choose-us .info {
    font-size: 1rem;
    margin-bottom: 60px;
  }

  .why-choose-us .container {
    gap: 20px; /* Controls horizontal gap */
    flex-direction: row; /* This stays as is to allow wrapping */
    justify-content: center;
  }

  .why-choose-us .inner-container {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
  }

  .icon-circle {
    top: -40px;
    width: 80px;
    height: 80px;
  }

  .icon-circle img {
    width: 32px;
    height: 32px;
  }

  .why-choose-us span {
    font-size: 3rem;
  }
}


/* What we offer Section*/

.what-we-do {
    background: rgb(31, 65, 31);
    padding: 0;
    margin: 40px auto;
    color: #fff;
    display: flex;
    align-items: stretch;
    min-height: 400px;
    width: 100vw; /* Ensure full viewport width if needed */
    max-width: 100%;
}

.what-we-do-content {
    flex: 1 1 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px 48px 64px;
    box-sizing: border-box;
}

.what-we-do img {
    flex: 1 1 50%;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 100%;
}

.what-we-do h1 {
    font-size: 1.2rem;
    color: rgb(226, 226, 91);
    margin-bottom: 0;
}

.what-we-do h2 {
    font-size: 3rem;
    margin-top: 0;
}

.what-we-do-content p {
    font-size: 1.2rem;
    color: #f5f5dc;
    line-height: 1.2;
    margin-bottom: 5px;
    margin-top: 0;
    padding: 10px 10px;
}

.what-we-do-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.what-we-do-content li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: 10px 10px;
}

.what-we-do-content li i {
    color: rgb(226, 226, 91);
    margin-right: 8px;
    font-size: 1.2em;
}

.our-mission {
    display: flex;
    align-items: center;
    gap: 8px; 
    background: #e6d36a;
    border-radius: 12px;
    padding: 60px 16px;
    margin-top: 24px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.07);
    width: 520px;
    height: 100px;
}

.our-mission i {
    font-size: 3rem;
    object-fit: contain;
    border-radius: 50%;
    color: #2d2d1a;
}

.our-mission p {
    margin: 0;
    color: #2d2d1a;
    font-size: 2rem;
    font-weight: 500;
}

@media (max-width: 700px) {
  .what-we-do {
    flex-direction: column; /* Stack vertically */
    min-height: auto;
    padding: 0 16px 40px; /* Some side padding and bottom spacing */
  }

  .what-we-do img {
    width: 100%;
    height: 220px; /* Fixed height for visual balance */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .what-we-do-content {
    width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
    text-align: center; /* Center text for mobile friendliness */
  }

  .what-we-do-content h1 {
    font-size: 1rem;
  }

  .what-we-do-content h2 {
    font-size: 2rem;
  }

  .what-we-do-content p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .what-we-do-content ul {
    padding-left: 0;
    margin: 16px 0;
    text-align: left; /* Keep list aligned left for readability */
  }

  .what-we-do-content li {
    font-size: 1rem;
    padding: 6px 0;
  }

  .our-mission {
    width: 100%;
    padding: 24px 16px;
    margin-top: 24px;
    height: auto;
    justify-content: center;
    text-align: center;
  }

  .our-mission i {
    font-size: 2.5rem;
  }

  .our-mission p {
    font-size: 1.5rem;
  }
}


/* Testimonies Section */
.testimonials {
    background: #f8f9fa;
    padding: 60px 0 50px 0;
    text-align: center;
}

.testimonials h1 {
    font-size: 2.3rem;
    color: #27ae60;
    margin-top: 0;
    margin-bottom: 8px;
}

.testimonials h2 {
    font-size: 1.5rem;
    color: #155b15;
    margin-bottom: 32px;
    margin-top: 0;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,204,113,0.10);
    padding: 36px 32px 28px 32px;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.testimonial-stars {
    color: #e6d36a;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #27ae60;
    font-weight: 600;
}

.testimonial-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.3rem;
    color: #27ae60;
    transition: color 0.2s;
    padding: 0 8px;
}

.testimonial-arrow:hover {
    color: #155b15;
}

@media (max-width: 800px) {
  .testimonials-carousel {
    flex-direction: column; /* Stack cards vertically */
    gap: 32px; /* More spacing between cards */
    max-width: 100%;
    padding: 0 16px; /* Side padding on mobile */
  }

  .testimonial-card {
    min-width: auto; /* Allow flexible width */
    max-width: 100%; /* Full width on mobile */
    padding: 24px 20px; /* Slightly smaller padding */
  }

  .testimonial-text {
    font-size: 1rem; /* Slightly smaller text */
  }

  .testimonial-arrow {
    font-size: 2rem; /* Scale down arrows a bit */
    padding: 0 6px;
  }
}


/* ===========================
   Footer
   =========================== */
footer{
    color:azure;
    font-family: Arial, Helvetica, sans-serif;
}

.foot {
    margin-top: 0;
    width: 100%;
    padding: 0 5%; /* Less padding for more width */
    background: rgb(18, 39, 18);
    color: #efefef;
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-bottom: 0;
    padding-top: 0;
    justify-content: center;
}

.col-1 {
    background-color: var(--color-3);
    flex: 1 1 0;
    min-width: 350px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    padding: 50px 30px;
    gap: 18px;
}

.col-1 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    letter-spacing: 1px;
}


.col-1 .contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.col-1 .contact-row i {
    font-size: 1.8rem;
    color: #000;
    border-radius: 50%;
    padding: 1px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
    margin-right: 6px;
}

.col-1 .contact-row span,
.col-1 .contact-row a {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.col-1 .contact-row a:hover {
    color: var(--color-2);
    text-decoration: underline;
}

  footer i{
    font-size: 2.5rem;
  }

  .foot div h3 {
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .col-1 a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
  }
  
.col-2, .col-3 {
    flex: 1 1 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 18px;
    gap: 10px;
}

.col-2 h3, .col-3 h3 {
    font-size: 1.50rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.col-2 .links span,
.col-3 .links span {
    font-size: 0.98rem;
    color: var(--color-3);
    font-weight: 400;
}
.col-2 .links a,
.col-3 .links a {
    font-size: 0.98rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 7px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    padding-left: 0;
    padding-bottom: 10px;
}

.col-2 .links a:hover,
.col-3 .links a:hover {
    color: var(--color-3);
    cursor: pointer;
}

.col-4 {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 18px;
    gap: 18px;
}

.col-4 h3 {
    font-size: 1.50rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-align: center;
}

/* Newsletter input group */
.col-4 .newsletter-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 260px;
    position: relative;
    margin-bottom: 18px;
}

.col-4 input[type="email"] {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: none;
    padding: 0 56px 0 18px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #222;
    box-shadow: 0 2px 8px rgba(44,204,113,0.07);
}

.col-4 button[type="submit"] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,204,113,0.10);
}

.col-4 button[type="submit"] i {
    font-size: 1.1rem; /* Set the icon size here */
}

.col-4 button[type="submit"]:hover {
    background: var(--color-2);
    color: #fff;
}

/* Social icons */
.col-4 .socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    justify-content: center;
}

.col-4 .socials i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid #fff;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.col-4 .socials i:hover {
    border: 1px solid var(--color-3);
    color: var(--color-3);
    transform: translateY(-5px);
}


  .dev {
    background-color: rgb(23, 49, 23);
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .dev a {
    color: #fff;
    text-decoration: none;
    font-weight: bolder;
  }

  .dev a:hover {
    color: var(--color-3);
  }

  @media (max-width: 974px) {
  .foot {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 0 2vw;
  }
  .col-1, .col-2, .col-3, .col-4 {
    min-width: 0;
    width: 100%;
    padding: 24px 10px;
    align-items: flex-start;
  }
  .col-4 {
    align-items: center;
  }
  .col-1 h3, .col-2 h3, .col-3 h3, .col-4 h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  .col-1, .col-2, .col-3, .col-4 {
    font-size: 0.98rem;
  }
  .newsletter-group {
    width: 100%;
    max-width: 100%;
  }
  .col-4 input[type="email"] {
    font-size: 0.98rem;
    padding: 0 44px 0 10px;
    height: 36px;
  }
  .col-4 button[type="submit"] {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    right: 3px;
  }
  .col-4 .socials {
    gap: 10px;
    margin-top: 8px;
    justify-content: flex-start;
  }
  .col-4 .socials i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .dev {
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
  }
}