/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Futura', 'Inter', 'Avenir', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Consistent heading fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif Pro', 'Playfair Display', serif;
}

/* Navbar Styles */
.navbar {
    background: #E0F2F1;
    color: white;
    padding: 15px 20px;
    position: fixed;
    z-index: 1000; 
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
  margin-top: 10px; 
  width: 150px;
  height: auto;
  transform: scale(1.8);
  transform-origin: center;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: black;
    padding: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(0, 128, 128, 0.5);
    border-radius: 5px;
}

/* Button */
.btn {
    /*background: #008080;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    */

    background: #008080;
    padding: 10px 18px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    line-height: 1.4; 
    white-space: nowrap; 
}

.btn:hover {
    background: rgba(0, 128, 128, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Embedded YouTube video */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    max-width: 100%;
  }

/* Styling for homepage text */
.home-container {
    margin: 20px 80px;
    justify-content: space-between;
    align-items: center;
}

/* Styling the header */
.home-container h1 {
    text-align: center;
    margin-top: 180px;
    font-size: 36px;
}

.home-container h2 {
    text-align: center;
    margin-top: 80px;
    font-size: 36px;
}

/* Styling the paragraph */
.home-container p {
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
}

/* Basic button styling */
.home-container button {
    float: right; /* Push the button to the right */
    margin-right: 20px;
    background-color: #818589;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 20px;
    min-width: 150px;
  }
  
/* Hover effect */
.home-container button:hover {
    background-color: #6c6f73; /* Darker gray on hover */
}
  
/* Active (click) effect */
.home-container button:active {
    background-color: #5c5f63; /* Even darker gray when clicked */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 128, 128, 0.5);
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: black;
    }
}

.review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    margin-bottom:10vh;
}
.review-section h3{
    text-align: center;
    margin: 10vh;
}

/*to span only 80% of width, not work yet*/
/*.review:first-child {
    flex: none;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}*/

/* Left section: Profile picture + Name */
.left-section {
    text-align: center;
}

.review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Right section: Review text */
.right-section {
    text-align: center;
}

.left-section .review-name {
    margin: 0;
}

.right-section .review-name{
    margin:0;
}

.btn-testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto; 
    width: fit-content;
    padding: 12px 24px;
    background: #008080;
    color: white;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
  }

/* Horizontal line before footer */
.footer-line {
    border: 0; /* Remove default border */
    height: 5px; /* Set the height of the line */
    background-color: #008080; /* Dark green color */
}

/* 1. Contact Form Section (Full-Width Background) */
.contact-form {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    color: white;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/images/notFound_background.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(1px);
    z-index: -1;
}

/* 2. Left Section: Headings + Paragraph */
.contact-form .left-section {
    width: 50%;
    /* Helps text stand out on background */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
  
.contact-form .left-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
  
.contact-form .left-section h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 500px; /* Limit text width for readability */
}
  
/* 3. Right Section: Center the White Box */
.contact-form .right-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
/* 4. White Box Container */
.form-box {
    margin:6vh;
    background-color: #fff;
    padding: 2rem;
    padding-top:1vh;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    /* Subtle drop shadow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Text color inside the box */
    color: #000;
}

.experience-form input[type="text"] {
    padding-right: 0;
    padding-left: 1px;
}
  
/* 5. Form Headings & Spacing */
.experience-form h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}
  
/* 6. Input Grouping (Name, Contact, Location) */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
  
/* 7. Inputs & Select */
.experience-form input,
.experience-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  
/* 8. Radio Group Layout */
.radio-group label {
    display: block;
    margin-bottom: 0.5rem;
}
  
/* 9. Submit Button */
.experience-form button[type="submit"] {
    background-color: #008080; /* Teal */
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    /* Center horizontally */
    margin: 0 auto;
    display: block;
}
  
.experience-form button[type="submit"]:hover {
    background-color: #006666; /* Darker teal on hover */
}

.approach{
    margin:3vh;
    padding: 1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.principle{
    padding: 1vh;
    background-color: #d9d9d9
}

.principle h2{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    margin: 2rem 0;
    text-align: center;
  }
  
  .icon-item {
    margin: 1rem;
  }
  
  .icon-item img {
    width: 60px;   /* Adjust size as needed */
    height: auto;
    margin-bottom: 0.5rem;
}

/* Container for main content */
.container {
    flex: 1;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Quote Container */
.quote-container {
    padding: 10px 10px;
    text-align: center;
    color: white;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.quote-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/mandala.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(1px);
    z-index: -2;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: -1;
}

.quote-container h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px #008080;
}

.quote-container button {
    position: relative;
    z-index: 2;
    background-color: #008080;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quote-container button:hover {
    background-color: #007070;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Footer CSS*/
footer {
    background-color: #E0F2F1; /* soft green */
    color: #2C3E50;
    width: 100%;
    box-sizing: border-box; 
    text-align: left;
    margin-top: auto; /* Push footer to bottom */
    position: relative;
    bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 50px 0 50px;
}

/* Left Section */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

/* Logo */
.footer-logo {
    width: 150px;
    height: auto;
  
}

/* Map Placeholder */
.footer-map {
    width: 300px;
    height: 160px;
    margin-left: -35px;
}

.map-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* logo Icons facebook,insta, phone*/
.icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
}




/* Footer Columns (Services, Resources, Connect) */
.footer-sections {
    flex: 3;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: #2C3E50;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #2C3E50;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #008080;
}

.resource-name {
  display: inline-block;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}


/* Bottom bar */
.footer-bottom-text {
    background-color: #008080;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 14px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}


