/*---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: #ebe46c; /* 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;
  }
}

/*Welcome section*/

.services-welcome {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: /*linear-gradient(rgba(44,204,113,0.25), rgba(44,204,113,0.25)),*/
        url('../images/services-img2.jpg') center/cover no-repeat;
    text-align: left;
    position: relative;
    padding: 48px 0 50px 60px;
}

.services-welcome h1{
    font-size: 5rem;
    color: orange;
    font-weight: 900;
    -webkit-text-stroke: 1px black; /* width and color of outline */
    /* For Firefox */
    text-stroke: 1px black; /* experimental, less supported */
}

@media (max-width: 700px) {
  .services-welcome {
    position: relative;
    padding-top: 0;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 30px;
    min-height: 50vh;             /* Slightly smaller height on mobile */
    text-align: center;           /* Center text for better mobile UX */
    align-items: center;          /* Center flex items horizontally */
  }

  .services-welcome > * {
    position: absolute;
    top: 2px; /* 10px from top of the section */
    left: 16px; /* Or however far from left you want */
    right: 16px;
    }

  .services-welcome h1 {
    font-size: 2.8rem;            /* Scale down headline */
    color: orange;                /* Keep color */
    margin-top: 0;
    margin-bottom: 0;
    -webkit-text-stroke: 1px black; /* width and color of outline */
    /* For Firefox */
    text-stroke: 1px black; /* experimental, less supported */
  }
}

/* Services Main Section */

.services {
    text-align: center;
    margin-top: 80px;
}

.services h1 {
    font-size: 1rem;
    margin-top: 0;
    color: #155b15;
    margin-bottom: 0;
}

.services h2 {
    font-size: 2.3rem;
    color: #000;
    margin-top: 0;
    margin-bottom: 8px;
}

.services p{
    margin-bottom: 40px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #18462b;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44,204,113,0.15);
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 40px auto 80px auto;
  max-width: 1400px;
}

.service-block {
  width: calc(25% - 30px); /* 4 per row with gap considered */
  min-width: 300px;
  height: 460px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  background-color: #fff;
  padding: 28px 24px 24px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
  position: relative;
  overflow: hidden;
  text-align: left;
  border: 2px solid grey;
}

.service-block:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44,204,113,0.18);
    border: 2px solid #18462b;
    z-index: 2;
}

.service-block:hover .icon-circle {
    transform: translateY(-10px);
    transition: transform 0.2s;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #18462b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.title {
    font-size: 1.5rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 6px;
}

.desc {
    font-size: 0.98rem;
    font-weight: 300;
    color: #b0b0b0;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.6;
}

.container a {
    background-color: var(--color-3);
    text-decoration: none;
    width: 160px;
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.service-block a:hover{
    background-color: #18462b;
    color: #fff;
}

@media (max-width: 768px) {
  .services h1 {
    font-size: 0.9rem;
  }

  .services h2 {
    font-size: 1.6rem;
  }

  .services p {
    font-size: 0.8rem;
    padding: 0 16px;
  }

  .container {
    flex-direction: column;         /* Stack service blocks vertically */
    align-items: center;
    gap: 24px;
    margin: 40px 0;
    padding: 0 16px;
  }

  .service-block {
    width: 100%;
    max-width: 80vw;                /* Limit block width on mobile */
    height: auto;                   /* Let it grow with content */
    padding: 24px 20px;
  }

  .title {
    font-size: 1.3rem;
  }

  .desc {
    font-size: 0.95rem;
    color: #666;
  }

  .container a {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
  }

  .icon-circle img {
    width: 32px;
    height: 32px;
  }
}


/* Change a tag color when parent block is hovered */
.service-block:hover .service-block a{
    background-color: #18462b;
    color: #fff;
}

/* Book now */

.services-info {
    background: rgb(31, 65, 31);
    padding: 0;
    margin: 40px auto;
    color: #fff;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.services-book {
     flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px 48px 64px; /* left, right, top, bottom padding */
    box-sizing: border-box;
}

.services-info > img {
    width: 70vw;
    max-width: 80vw;
    min-width: 320px;
    height: auto;
    margin-right: 32px;
    object-fit: cover;
    display: block;
}

.services-book {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.info-block{
    background-color: var(--color-3);
    width: 600px;
    height: 500px;
    color: #000;
    padding: 10px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0 20px 20px 20px;
    position: relative;
    right: 150px;
}

.info-block h1 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px
}

.info-block h2 {
    font-size: 3rem;
}

.info-block p {
    margin: 20px 0;
}

.info-block a {
    background-color: #18462b;
    color: #fff;
    text-decoration: none;
    width: 160px;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.2s;
}

.info-block a:hover {
    background-color: #2ecc71;
    color: #000;
}

.services-book ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.services-book li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
}

.services-book li i {
    color: #18462b;
    margin-right: 8px;
    font-size: 1.2em;
}

.lists {
    display: flex;
    flex-direction: row;
    gap: 32px; /* space between the lists */
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 768px) {
  .services-info {
    flex-direction: column-reverse; /* Stack text below image */
    align-items: center;
    padding: 0;
  }

  .services-info > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin: 0;
    max-width: 100%;
  }

  .services-book {
    padding: 24px 16px;
    align-items: center;
  }

  .info-block {
    width: 90%;
    max-width: 500px;
    height: auto;
    padding: 24px;
    right: 0; /* Remove offset */
    text-align: center;
  }

  .info-block h1 {
    font-size: 0.95rem;
  }

  .info-block h2 {
    font-size: 2rem;
  }

  .info-block a {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }

  .lists {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .services-book li {
    justify-content: center;
    text-align: left;
    width: 100%;
  }
}


/* Process Section */

.process {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.process h1 {
    font-size: 1.2rem;
    color: rgb(21, 59, 21);
    margin-bottom: 0;
}

.process h2 {
    font-size: 2.2rem;
    margin-top: 0;
}

/* --- Process Section Steps --- */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin: 48px 0 32px 0;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 160px;
}

.step .icon-circle {
    width: 120px;
    height: 120px;
    background: rgb(21, 59, 21);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(44,204,113,0.13);
    z-index: 1;
}

.step .icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.step .title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #18462b;
    margin-bottom: 6px;
    text-align: center;
}

.step .desc {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    text-align: center;
    margin: 0;
    margin-bottom: 0;
}

.step .mini-circle {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: #e6d36a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18462b;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(44,204,113,0.10);
    transition: transform 0.25s cubic-bezier(.4,2,.6,1);
    z-index: 2;
    border: 2px solid #fff;
}

/* Jump effect on hover of the main circle */
.step:hover .mini-circle,
.step .icon-circle:hover + .mini-circle {
    transform: translateX(-50%) translateY(-10px) scale(1.08);
}

/* Dotted line between steps */
.process-steps .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 60px; /* vertically center with the icon-circle */
    right: -134px;
    width: 300px;
    height: 0;
    border-top: 3px dotted rgb(21, 59, 21);
    z-index: 0;
    
}

@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .process-steps .step:not(:last-child)::after {
        width: 0;
        height: 48px;
        top: 80px;
        left: 50%;
        right: auto;
        border-top: none;
        border-left: 3px dotted #27ae60;
        transform: translateX(-50%);
    }
}

/* ===========================
   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;
  }
}
