/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00bcd4;
}

main {
    padding: 20px;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

footer {
    background-color: #222;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

footer h4 {
    margin-bottom: 10px;
}

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

footer ul li {
    margin-bottom: 5px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #00bcd4;
}

/* Footer Enhancements */
.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links div {
    margin: 10px;
}

.footer-links h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

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

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    display: none;
    z-index: 1000;
}

.cookie-banner button {
    margin: 0 10px;
    padding: 5px 10px;
    background-color: #00bcd4;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-banner button:hover {
    background-color: #008ba3;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Section Navigation Buttons */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f5f7fa;
    flex-wrap: wrap;
}

.section-nav button {
    padding: 10px 20px;
    border: none;
    background: #7297c5;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.section-nav button:hover {
    background: #5a7eaa;
}

/* Hide all sections by default */
.content-section {
    display: none;
    padding: 5px;
}

/* Show only selected section */
.content-section.visible {
    display: block;
}

/* Layout */
.vision-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

.vision-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 700px;
}

.vision-text {
    flex: 1;
    min-width: 280px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vision-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Left-to-right animation */
.slide-left{
opacity:0;
transform:translateX(-80px);
animation:slideInLeft 1s ease-out forwards;
animation-play-state:paused;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right-to-left animation */
.slide-right{
opacity:0;
transform:translateX(80px);
animation:slideInRight 1s ease-out forwards;
animation-play-state:paused;
}



@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-flex{

display:grid;
grid-template-columns:50% 50%;
align-items:center;          /* vertical centering of both columns */
min-height:70vh;
padding:5px 5%;
gap:5px;
overflow:hidden;
margin-top:0;
}

/* Left text column */
.about-left{
display:flex;
flex-direction:column;
justify-content:center;
gap:25px;
}
/* keep your text animations unchanged */
.about-text{
width:100%;
}

/* Right image column */
.about-image{
display:flex;
justify-content:center;
align-items:center;
animation:slideInRight 1.2s ease-out forwards; /* new image entrance animation */
}



/* Image enhancements */
.about-image img{
   width: auto;
   max-width: 100%;
   max-height: 75vh;
   height: auto;
   object-fit: contain;
   border-radius: 28px;
   box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

/* Existing blur reveal still works */

/* Mobile / tablet */
@media (max-width:900px){

.about-flex{
grid-template-columns:1fr;
text-align:center;
}

.about-left{
gap:30px;
}

.about-image{
order:-1; /* optional: image appears first on mobile */
}

.about-image img{
max-height:50vh;
max-width:95%;
}
}

.contact{
display:grid;
grid-template-columns:50% 50%;
align-items:center;          /* vertical centering of both columns */
min-height:80vh;
padding:60px 5%;
gap:10px;
overflow:hidden;
}

/* Left side */
.contact-image{
display:flex;
justify-content:center;
align-items:center;          /* keeps image vertically centered */
animation:slideInLeft 1.2s ease-out forwards;
}

.contact-image img{
width:auto;
max-width:100%;
max-height:75vh;
height:auto;
object-fit:contain;

border-radius:28px;         /* soft curved corners */
box-shadow:0 8px 30px rgba(0,0,0,.12);
}

/* Right side */
.contact-content{
display:flex;
flex-direction:column;
justify-content:center;      /* vertically centers text block */
padding:20px 40px;
animation:slideInRight 1.2s ease-out forwards;
}

.contact-content h1{
margin-bottom:20px;
}

.contact-content p{
margin-bottom:18px;
line-height:1.7;
}

.contact-content a{
color:#0056b3;
text-decoration:none;
font-weight:bold;
}

/* Animations */
@keyframes slideInLeft{
from{
opacity:0;
transform:translateX(-100px);
}
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes slideInRight{
from{
opacity:0;
transform:translateX(100px);
}
to{
opacity:1;
transform:translateX(0);
}
}

/* Mobile */
@media (max-width:900px){
.contact{
grid-template-columns:1fr;
text-align:center;
}

.contact-content{
padding:20px;
align-items:center;
}

.contact-image img{
max-height:50vh;
}
}
