/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header styling with reduced height and light effects */
header {
    background-color: #006769;
    display: flex;
    justify-content: space-between;
    padding: 2px 20px; /* Reduced header height */
    border-bottom: 4px solid #117554;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffffff33 0%, transparent 100%);
    opacity: 0.8; /* Light effect added */
    pointer-events: none;
}

.logo-name {
    display: flex;
    align-items: Center;
}

.logo-name img {
    width: 50px;   /* Or whatever size you want */
    height: 28px;  /* Keeps the image's aspect ratio */
    display: block; /* Removes any extra vertical whitespace */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: bottom;
    position: relative;
    top: 50px; /* Aligning with middle section border */
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FEFAE0;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 2px solid #117554;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 12px;
}

.dropdown-content a:hover {
    background-color: #CCD5AE;
}

.dropdown:hover .dropdown-content {
    display: block;
}

main {
    background-color: white;
    padding: 50px;
    border-left: 0px solid #117554;
    border-right: 0px solid #117554;
    border-bottom: 4px solid #117554;
    position: relative;
}

.middle-section {
    text-align: bottom;
}

/* Main image section */
.main-image img {
    width: 70%;
    height: 400px; /* Adjust to cover 70% width and full height */
    display: block;
    margin: 0 auto;
}

/* Text section for motivational content */
.text-section {
    margin: 20px auto;
    width: 80%;
    font-size: 18px;
    color: #333;
    text-align: bottom;
}

/* Transparent images section */
.transparent-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.transparent-images .section {
    margin: 20px;
    text-align: bottom;
}

.transparent-images img {
    opacity: 0.6;
}

/* Footer styling with reduced height */
footer {
    background-color: #FEFAE0;
    text-align: center;
    padding: 2px; /* Reduced footer height */
    border-top: 1px solid #117554;
    font-size: 14px;
}

/* Global border */
body {
    border: 4px solid #117554; /* Hard border for the entire page */
}
/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Export-Import button styles */
#export-import-buttons {
    text-align: center;
    margin-top: 20px;
}

#export-import-buttons button {
    display: inline-block;
    margin: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

#export-import-buttons button:hover {
    background-color: #0056b3;
}

/*enquiry form
.form-section {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #006769;
}

.form-section label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-section input:focus,
.form-section textarea:focus {
    border-color: #006769;
    outline: none;
    background-color: #f0fdfb;
}

.form-section button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #006769;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section button:hover {
    background-color: #004f4d;
}


