/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
h1 {
    text-align: center;
}
h2{
    text-align: center;
}

/* Logo Styles */
.logo {
    display: block;
    margin: 20px auto;
    max-width: 150px; /* Adjust the size of the logo */
}

/* Navigation Bar */
nav {
    background-color: #333;
    width: 100%;
    text-align: center; /* Center align the contents of the nav */
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000; /* Keep navbar on top */
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

nav a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}
/*nav a.active {
    background-color: #007BFF; Highlight active link 
    color: white;
}*/

/* Dropdown Container */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 20px;
    background-color: #333;
    cursor: pointer;
}

.dropdown:hover .dropbtn {
    background-color: #ddd;
    color: black;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Slideshow Styles */
.slideshow-container {
position: relative;
max-width: 80%;
margin: 20px auto;
overflow: hidden; /* Hide any part of the image that goes beyond the container */
}

.slides img {
width: 80%; /* Ensure the images take up the full width of the container */
height: auto; /* Maintain aspect ratio */
object-fit: cover; /* Ensures the image fills the container while preserving the aspect ratio */
display: block;
margin: 0 auto;
}

/* Navigation Arrows */
.prev, .next {
position: absolute;
top: 50%;
padding: 16px;
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
cursor: pointer;
font-size: 18px;
transition: 0.3s ease;
}

.prev {
left: 0;
}

.next {
right: 0;
}

.prev:hover, .next:hover {
background-color: rgba(0, 0, 0, 0.8);
}

/* Indicator Styles */
.dot-container {
    text-align: center;
    padding: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

 /* Panels Styles */
 .panel-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.panel {
    background-color: #fff;
    padding: 30px;
    width: 80%; /* Adjust width to make panels fit nicely */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.panel h2 {
    margin-bottom: 20px;
    color: #333;
}

.panel p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

 /* Button Styles */
 .panel button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.panel button:hover {
    background-color: #555;
}

/* Vision, Mission & Values Section */
.vision-mission-values {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    padding: 20px;
    width: 80%; /* Adjust to fit content */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-image: url("tree.jpg"); /* Add the background image */
    background-size: cover; /* Ensure the image covers the whole panel */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image from repeating */
}

.vision-mission-values .column {
    width: 30%; /* Make each column 1/3 of the container */
    padding: 20px;
    text-align: center;
    border-right: 2px solid #fff; /* White line separating columns */
    background-color: rgba(255, 255, 255, 0.8); /* Add slight transparency to ensure text readability */
}

.vision-mission-values .column:last-child {
    border-right: none; /* Remove the border from the last column */
}

.vision-mission-values .column h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.vision-mission-values .column p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

 /* Button Styles */
 .vision-mission-values button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.vision-mission-values button:hover {
    background-color: #555;
}

/* consultants */
.consultants {
    display: flex;
            justify-content: space-between;
            text-align: center;
            margin: 40px auto;
            padding: 20px;
            width: 80%; /* Adjust to fit content */
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
}
.consultants .text h2{
    text-align: center;
}

.consultants .column {
    width: 30%; /* Make each column 1/3 of the container */
    padding: 20px;
    text-align: center;
    border-right: 2px solid #fff; /* White line separating columns */
    background-color: rgba(255, 255, 255, 0.8); /* Add slight transparency to ensure text readability */
}

.consultants .column:last-child {
    border-right: none; /* Remove the border from the last column */
}

.consultants .column h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.consultants .column p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

footer .footer-left, footer .footer-middle, footer .footer-right {
    width: 30%;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    padding: 5px;
}

footer a:hover {
    text-decoration: underline;
}

footer .footer-middle p {
    margin: 5px 0;
}
