:root {
    --primary-blue: #a5b4c4;
    --secondary-blue: #8497aa;
    --dark-blue: #566d82;
    --light-blue: #e8f0f7;
    --lighter-blue: #f2f7fb;
    --white: #ffffff;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-blue);
    border-top-color: var(--dark-blue);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, var(--lighter-blue), var(--white));
    min-height: 100vh;
    color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
    overflow-x: hidden;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    padding: 1rem 0;
    max-width: 150px;
    margin: 0 auto;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* Header Styles */
header {
    background: linear-gradient(to bottom, var(--white), var(--light-blue));
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--secondary-blue);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-blue);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    flex: 1;
}

section {
    background: linear-gradient(145deg, var(--white), var(--light-blue));
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(165, 180, 196, 0.2);
    transition: transform 0.3s ease;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(165, 180, 196, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        max-width: 100px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 0 1rem;
    }

    footer ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    body {
        padding-bottom: 150px;
    }
}

/* add to css/style.css */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-text .company-name {
  font-weight: 700;
  font-size: 1rem; /* smaller than page H1 */
  color: var(--dark-blue);
}

.site-text .tagline {
  font-size: 0.85rem;
  color: var(--secondary-blue);
  margin-top: 2px;
}

/* Events Slider Styles */
.events-section {
    padding: 2rem 0;
    background: var(--lighter-blue);
    margin: 2rem 0;
}

.events-slider {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #f8f9fb;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.slide img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.slide-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-btn {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 10;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .slide img {
        height: 300px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

.kpi-section {
  background: var(--light-blue);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.kpi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.kpi-item h3 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.kpi-item:hover h3 {
  color: var(--secondary-blue);
}

.kpi-item p {
  font-weight: 600;
  color: var(--secondary-blue);
}

.map-section {
  margin-top: 2rem;
  text-align: center;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--lighter-blue);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 1rem;
}

form input, form textarea {
  padding: 0.75rem;
  border: 1px solid var(--primary-blue);
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  background: var(--dark-blue);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: var(--secondary-blue);
}

