/* General Fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

body, p, a, li, span {
    font-family: 'Roboto', sans-serif;
}

/* Sec1 Styling */
.sec1 {
    position: relative;
    height: 100vh;
    background: url("images/leaves-forest.jpg") no-repeat center center fixed; /* Add background image */
    background-size: cover; /* Make the image cover the section */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
}

.sec1 header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

#header-text {
    font-size: 2.5rem;
    font-weight: bold;
}

#language-select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.7);
    color: black;
    cursor: pointer;
}

#hero-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

#hero-section p {
    font-size: 1rem;
    margin-bottom: 10px;
}

#hero-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

#hero-section p:last-of-type {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Sec2 Styling */
.sec2 {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
    color: #333;
}

.sec2 h3 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 30px;
}

.info-box-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
    margin-bottom: 30px;
}

.info-box {
    background: rgba(0, 0, 0, 0.05); /* Light transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.33% - 20px); /* 3 boxes per row with spacing */
    text-align: left;
}

.info-box h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.image-container {
    margin-top: 20px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -20px;
}
/* Sec2 Styling */
.sec2 {
    background: #fff;
    padding: 20px 20px;
    position: relative;
}

.content-container {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Left Image Styling */
.image-box {
    flex: 1;
    position: relative;
    max-width: 70%; /* Ensure image takes half the width */
    z-index: 1; /* Ensure it overlaps the next section */
}

.image-box img {
    width: 100%;
    border-radius: 0 40px 40px 40px; /* Keeps top-left corner unrounded */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px); /* Moves the image slightly down */
    position: relative;
}

/* Right Text Content */
.text-box {
    flex: 1;
    text-align: left;
    padding: 20px;
    border-left: 4px solid rgba(0, 0, 0, 0.1); /* Optional subtle frame */
}

.text-box h3 {
    font-size: 1.5rem; /* Slightly smaller than before */
    font-weight: bold;
    color: #2f4f4f;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 0.9rem; /* Reduce font size for paragraphs */
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* Overlap Effect */
.sec2:after {
    content: "";
    position: absolute;
    bottom: -20px; /* Allows the section to overlap slightly */
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    z-index: 0;
}
/* Sec3 Styling */


/* Slider Container */
.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: black;
    padding-bottom: 20px;
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 15px; /* Smooth corners for images */
    object-fit: cover;
    height: 400px; /* Consistent height for slides */
}

/* Dots Navigation */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.dots-container .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dots-container .dot.active {
    background: #fff; /* Highlight active dot */
}






/* AuthorE Section Styling */
#authorE {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px 0px 25px 25px;

    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 1050px;

}

.authorE-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.authorE-container .image-box {
    flex: 1 1 200px;
    text-align: center;
}

.authorE-container .image-box img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Circular image for a professional look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.authorE-container .description-box {
    flex: 2;
    text-align: left;
}

.authorE-container h3 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 30px;
}

.authorE-container p {
    font-size: 0.9rem; /* Reduce font size for paragraphs */
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}




/* Sec5 Styling */
.sec5 {
    background: #fff; /* White background */
    padding: 50px 20px;
    text-align: center;
}

.sec5 h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2f4f4f; /* Subtle dark green */
}

.sec5 p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(47, 79, 79, 0.1); /* Light greenish tint */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.card h4, .card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2f4f4f;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}




/* Sec6 Styling */
#location-section {
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95); /* White with slight transparency */
    border-radius: 25px 0px 25px 25px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 1050px;
}

.locationE-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows responsiveness */
}

.locationE-container .image-box {
    flex: 1 1 200px;
    text-align: center;
}

.locationE-container .image-box img {
    width: 200px;
    height: 200px;
    border-radius: 25px 0px 25px 25px; /* Circular image for a polished look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.locationE-container .description-box {
    flex: 2;
    text-align: left;
}

.locationE-container h3 {
    font-size: 1.5rem;
    color: #2f4f4f; /* Subtle dark green */
    margin-bottom: 30px;
}

.locationE-container p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; /* Gray for paragraphs */
}



/* Sec7 Styling (Updated for Box) */
.sec7 {
    background: #fff;  /* White background */
    padding: 50px 20px; /* Add padding for spacing */
    text-align: center; /* Center text */
    color: #333; /* Dark text color */
}

#pricing {
    font-size: 1.5rem;  /* Set font size for the title */
    color: #2f4f4f;  /* Dark green */
    margin-bottom: 30px; /* Margin at the bottom */
}

/* Sec7 Content Box */
.sec7-content-box {
    display: flex;
    justify-content: space-between; /* Align left and right content */
    align-items: center;  /* Center items vertically */
    gap: 20px;
    background: rgba(255, 255, 255, 0.95); /* Slight transparency */
    border-radius: 25px;  /* Rounded corners */
    padding: 20px;  /* Padding inside the box */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Box shadow for depth */
    max-width: 1050px;
    margin: 0 auto;  /* Center the box */
}

/* Left Side - Pricing */
.pricing-left {
    flex: 1; /* Take up 50% of the container */
    text-align: left; /* Align text to the left */
}

#pricing-list {
    list-style-type: none; /* Remove default list style */
    padding-left: 0;  /* Remove left padding */
}

.price-item {
    margin: 10px 0; /* Margin between pricing items */
    font-size: 1rem;
    color: #333; /* Dark text for pricing items */
}

/* Right Side - Currency Selection */
.currency-right {
    flex: 0.4; /* Take up 40% of the container */
    text-align: right; /* Align text to the right */
}

#currency {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 10px;  /* Space between label and select */
}

#currency-select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.7);  /* Light background */
    color: black;
    cursor: pointer;
    width: 120px;  /* Control the width of the select box */
}

/* Responsive Design */
@media (max-width: 768px) {
    .sec7-content-box {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        text-align: center; /* Center text */
    }

    .currency-right {
        text-align: center; /* Center the currency selection on small screens */
    }

    .pricing-left {
        text-align: center; /* Center the pricing list on small screens */
    }

    #currency-select {
        width: 200px;  /* Wider select box on smaller screens */
    }
}

.sec8 {
    position: relative;
    height: 10vh;
    background: url("images/leaves-forest.jpg") no-repeat center center fixed; /* Add background image */
    background-size: cover; /* Make the image cover the section */
    color: white;
    text-align: center;
    display: flex;ß
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
}

.sec8 footer {
    position: absolute;
    top: 20px;
    left: 50%;

    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

footer p {
    font-size: 1.5rem;
    font-weight: bold;
}

