/* General styles */
body {
    color: #333;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-size: 24px;
    font-style: normal;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h3 {
    color: #3FA19F;
}

/* Splash Page styles */
#splash-page {
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#splash-page.fade-out {
    opacity: 0;
    pointer-events: none;
}

#progress-bar {
    /*width: 200px;
    height: 20px;
    background-color: #ccc;
    border-radius: 10px;
    overflow: hidden;*/
    top: 15%;
    right:  10%;
    height: 200px;
    width: 110px;
    border-radius: 150px 10px 10px 150px;
    border-top: 20px solid #fff;
    border-left: 20px solid #fff;
    border-bottom: 20px solid #fff;
    transform: translate(100px) rotate(-90deg);
    position: relative;
}

#progress-bar .bar {
    /*height: 100%;
    background-color: #F57649;*/

    height:200px;
    width: 110px;
    border-radius: 150px 10px 10px 150px;
    border-top: 20px solid #F57649;
    border-left: 20px solid #F57649;
    border-bottom: 20px solid #F57649;
    transform: translate(100px) rotate(-360deg);
    position: absolute;
}

.border-circle {
    background-color: #F57649;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: absolute;
}

.left-circle {
    right: -6px;
    top: -20px;
}

.right-circle {
    bottom: -20px;
    right: -6px;
}


/* Navigation bar styles */
#navbar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px 20px 0 10px;
}

.nav-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #fff; 
    color: #F57649; /*Orange*/
    font-size: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.nav-btn.active {
    background-color: #fff; 
    color: #77C7A4; /*Light Green*/
}

.b {
    float: left;
    overflow: hidden;
    margin-top: 0px;
}

.btxt {
    float: left;
    overflow: hidden;
    margin: 10px 0 0 15px;
}

/* Section styles */
section {
    /* border:  1px solid red; */
    padding: 50px 0;
    
}

/* Home section styles */
#home {
    background: url('../img/ppmnc5.jpg') no-repeat; /* Adjust background color as needed */
    height: 600px;
    padding: 50px 0;
}

.home-content {
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    flex: 1;
    max-width: 33%;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.info {
    flex: 2;
    max-width: 66%;
    position: relative;
}

.info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.info p {
    font-size: 24px;
    line-height: 1.5;
}

.spacer {
    /* border: 1px solid red; */
    height: 150px;
    overflow: hidden;
}

/* Gallery carousel styles */
.gallery-carousel {
    width: 100%;
}

.gallery-slide {
    /* border: 1px solid red; */
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
}

.gradient-overlay {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 60%; /* 20% width for the gradient overlay */
    height: 150%;
    z-index: 2;
    transform: rotate(-2deg);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 0)); /* White to transparent gradient */
}

.info-overlay {
    position: absolute;
    top: 96%; /*uncomment this togoback to original 50%;*/
    right: 0;
    width: 70%; /* 20% width for the gradient overlay */
    min-height: 10%; /*uncomment this togoback to original 48%;*/
    z-index: 2;
    /*transform: rotate(-10deg);*/
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 1) 80%); /* White to transparent gradient */
    border-bottom-right-radius: 20px;
    color: #fff;
    font-size: 20px;
    padding: 0px 20px 20px 20px;
}

.green-btn {
    width: 50px;
    height: 50px;
    background-color: #77C7A4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
    opacity: 0;
    float: right;
    transition: width 0.1s ease-in-out; /* Smooth transition for size change */
}

.green-btn:hover {
    background-color: #3FA19F; /* Change color on hover if desired */
}

.orange-btn {
    width: 50px;
    height: 50px;
    background-color: #F57649;
    border-radius: 50%;
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 80px; /* Adjust position as needed */
    cursor: pointer;
    transition: width 0.1s ease-in-out; /* Smooth transition for size change */
}

.orange-btn:hover {
    background-color: #F17849; /* Change color on hover if desired */
}

.scrolling-div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 98%;
    height: 2px; /* Adjust height as needed */
    border-radius: 10px;
    background-color: #3FA19F;
    text-align: right;
    transition: width 0.5s ease-out; /* Smooth transition for width change */
}

.home-msg {
    position: absolute;
    color: #F57649;
    height: 200px;
    font-family: "Just Another Hand", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    letter-spacing: 6px;
    top: 600px;
    right: 1px;
    text-align: right;
    width: 100%;
}

.home-msg span {
    box-shadow: 0px 2px #3FA19F;
}

/* About section styles */

#about {
    min-height: 600px;
    background-color: #3FA19F; /*Dark Green*/
    border-radius: 20px;
    border: none;
    color: white;
    margin: 20px;
    padding: 50px;
}

.partner-profile {
    display: flex;
    flex-direction: flex-start;
    align-items: flex-start; /* Align items to the start (left) */
    margin-bottom: 50px;
}

.partner-profile img {
    width: 200px; /* Adjust image width as needed */
    height: 200px; /* Adjust image height as needed */
    border-radius: 50%; /* Rounded image */
    margin-right: 20px;
    border-right: 4px solid #77C7A4;
}

.partner-info h4 {
    margin-bottom: 5px;
}

.partner-info p {
    margin-bottom: 10px;
}

.banner-image {
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: url("../img/volunteerbg.png") top left / cover no-repeat;
    text-transform: uppercase;
    min-height: 282px;
}

.banner-image h1 {
    font-size: 3rem;
    line-height: 3.25rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 2%;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.banner-image h4 {
    font-weight: 600;
    font-size: 5rem;
    line-height: 3rem;
    color: #fff;
    margin-top: 5%;
    margin-bottom: 0, 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:60em) {
    .banner-image h3 {
        font-size: 2rem;
        line-height: 1.7rem;
        color: #444;
        margin-top: 20px;
        letter-spacing:-1px;
        margin-bottom: 0;
    }
    .banner-image h4 {
        font-size: 1.6rem;
        line-height: 1.3rem;
        margin-top: 19%;
    }
    .banner-image h1 {
        font-size: 3rem;
        line-height: 2.2rem;
        letter-spacing: -2px;
        font-weight:300;
        margin-top: 10px;
    }
    .banner-image {
        background-position: center;
        min-height: 300px;
    }
}


.banner-image div h6 {
    margin: 14% auto 0;
}

@media screen and (max-width: 60em) {
    .banner-image h6 {
        margin: 10% auto 0;
    }
}

@media screen and (max-width: 50em) {
    .banner-image h6 {
        margin: 13% auto 0;
    }
}

.banner-image p {
    margin: 13px auto!important;
    width: 100%;
    max-width: 1000px;
    text-align: left;
    font-size: 1rem!important;
    line-height:1.6;
    color: #444444!important;
    font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 50em) {
    .banner-image p {
        max-width: 95%
    }
}

@media screen and (max-width: 40em) {
    .banner-image p {
        max-width: 100%;
        width: 100%;
        line-height: 1.4rem;
        margin-bottom: 2%;
        text-align: left;
    }
}

/* Service section styles */
.imgspacer {
    background: url('../img/gardens.jpg') no-repeat;
    position: relative;
}

/* Styles for the sticky behavior */
.sticky {
    position: sticky;
    top: 0;
    z-index: 100; /* Adjust z-index as needed */
}

.spacer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 20% width for the gradient overlay */
    height: 100%;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0)); /* White to transparent gradient */
}


#services {
    color: #555;
    min-height: 800px;
    margin: 20px;
    padding: 50px;
    position: relative;
}

.content-logo {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.service-package {
    border-radius: 20px;
    border: 1px solid #3FA19F; /*Dark Green*/
    margin: 20px;
    padding: 50px;
    position: relative;
}

.bmnc {
    position: absolute;
    left: -5px;
    top: 22px;
}

.more-btn {
    padding: 30px 20px;
    margin: 0 30px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #fff; 
    color: #F57649; /*Orange*/
    font-size: 30px;
    overflow: hidden;
    position: absolute;
    right: 0;
    transition: background-color 0.3s ease;
}

.more-btn:hover {
    background-color: #ddd; 
    color: #77C7A4; /*Light Green*/
}

.more-btn.active {
    background-color: #fff; 
    color: #77C7A4; /*Light Green*/
}

/* for partners btn only */
#partners-btn {
    margin-top: 65px;
}

/* Contacts section styles */

#contacts {
    min-height: 400px;
    background-color: #F57649;
    /*border-radius: 20px;
    border: none;*/
    color: white;
    /*margin: 20px;*/
    overflow: hidden;
    padding: 50px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.contact-left {
    width: 45%;
}

.contact-left h2 {
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 20px;
}

.contact-right {
    width: 45%;
}

.contact-right h2 {
    margin-bottom: 15px;
}

#c-here:hover {
    color: #77C7A4;
    font-size: 25px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #77c7a4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #5cbfa9;
}


/*----Services page Styles ----*/
#servicehome {
    background-color: #fff; /* Adjust background color as needed */
    min-height: 800px;
    overlow:  hidden;
    padding: 0;
}

#service-content {
    color: #555;
    min-height: 800px;
    margin: 20px;
    padding: 50px;
    position: relative;
}

#servicehomep {
    background-color: #fff; /* Adjust background color as needed */
    min-height: 800px;
    padding: 0;
}

#service-contentp {
    color: #555;
    min-height: 800px;
    margin: 20px;
    padding: 50px;
    position: relative;
}

/* Styles for tabs */
.tablinks {  
    background-color: #3FA19F; /*Dark Green*/
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none; 
    padding: 20px 20px 30px 20px;
    margin: 0 5px 0 0; 
    
    cursor: pointer;  
    color: #fff;
    font-size: 30px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    margin-bottom: -1px;
    z-index: 2;
}

.tablinks.active {
    padding: 30px 20px;
    background-color: #fff; 
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid #3FA19F; /*Dark Green*/
    border-bottom: 1px solid #fff;
    color: #F57649; /*Orange*/
}    

.tabcontent {
    border-radius: 0px 20px 20px 20px;
    border: 1px solid #3FA19F; /*Dark Green*/
    display: none;
    float:  left;
    overflow: hidden;
    width: 100%;
    padding: 50px 0;
}

.tabcontent.active {
    display: block;
    float:  left;
    overflow: hidden;
    width:  100%;
}

/* Styles for Book Now button */
#book-now-btn {
    display: block;
    margin-top: 20px;
    padding: 20px 20px;
    background-color: #77C7A4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    float: right;
    font-size: 24px;
}

#book-now-btn:hover {
    background-color: #5cbfa9;
}


#footer {
    min-height: 50px;
    background-color: #F57649;
    /*border-radius: 20px;
    border: none;*/
    color: white;
    /*margin: 20px;*/
    overflow: hidden;
    padding: 0 0 0 50px;
}

/* Copyright Styles */
.column {
    float: left;
    overflow: hidden;
    height: 100%;
}

.copyright {
    text-align: center;
}

.copyright p {
    font-size: 14px;
    color: #fff;
    margin: 50px;
}

/* Remove bullets from ul */
.quick-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Remove underlines from links and set color to white */
.quick-links a {
    text-decoration: none;
    color: white;
}

/* Style links on hover */
.quick-links a:hover {
    text-decoration: underline; /* Add underline on hover if desired */
    /* Additional hover styles can be added here */
}

.footer-content {
    overflow: hidden; /* Clear float */
    height: 200px;  
}

.quick-links {
    float: left; /* Float quick links div to the left */
    width: 70%;
}

.copy {
    border:  1px solid red;
    background: orangered;
    float: right; /* Float copyright div to the right */
    width: 280px;
}

.copyright {
    
}

/* Clear floats after the columns */
.footer-content:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}