:root {
    --primary-blue: #003366;
    --background-light: #f4f9ff;
    --white: #ffffff;
    --text-black: #1a1a1a;
    --linkedin-blue: #0077b5;
    --whatsapp-green: #25D366;
    --footer-dark: #001f3f;
}

* { box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; margin: 0; color: var(--text-black); line-height: 1.8; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Navigation */
nav { background: var(--white); padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 50px; }
.nav-links { display: flex; list-style: none; padding: 0; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: var(--primary-blue); font-weight: 600; font-size: 0.9rem; }

/* Hero Section */
.hero { padding: 60px 0; background-color: var(--background-light); }
.hero-flex { display: flex; align-items: center; gap: 40px; }
.hero-text h1 { font-size: 3rem; color: var(--primary-blue); margin: 0; }
.hero-image img { width: 300px; border-radius: 10px; box-shadow: 15px 15px 0px var(--primary-blue); }
.intro-paragraph { font-size: 1.1rem; line-height: 1.8; margin-top: 20px; }

/* Sections */
.board-relevance, .content-section, .awards-section, .testimonials { padding: 40px 0 60px 0; }
h3 { color: var(--primary-blue); border-bottom: 3px solid var(--primary-blue); display: inline-block; padding-bottom: 5px; margin-bottom: 25px; }
.highlight-card { background: var(--background-light); padding: 30px; border-left: 8px solid var(--primary-blue); border-radius: 0 5px 5px 0; }
.full-text p { margin-bottom: 20px; text-align: justify; }

/* Endorsements */
.testimonials { background-color: #f3f6f8; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.testimonial-card { background: white; border-radius: 10px; padding: 25px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.reco-header { display: flex; align-items: center; position: relative; margin-bottom: 15px; }
.reco-avatar i { font-size: 45px; color: #cbd5e0; margin-right: 15px; }
.reco-info h4 { margin: 0; font-size: 1rem; color: #000; }
.reco-info p { margin: 0; font-size: 0.85rem; color: #666; line-height: 1.2; }
.linkedin-brand { position: absolute; top: 0; right: 0; color: #0077b5; font-size: 1.2rem; }
.reco-body p { font-size: 0.95rem; color: #333; font-style: italic; }

/* Award Sizing */
.awards-list { display: flex; flex-direction: column; gap: 40px; }
.award-item { display: flex; gap: 30px; align-items: flex-start; }
.award-image-box { flex: 0 0 280px; margin-right: 15px;  }
.award-photo { 
    width: 100%; height: 180px; object-fit: contain; background: #fff; 
    border-radius: 10px; box-shadow: 15px 15px 0px var(--primary-blue); 
}

.symbolic-award { 
    width: 100%; height: 180px; background: linear-gradient(135deg, var(--primary-blue), #0050a0); 
    border-radius: 10px; color: white; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; box-shadow: 15px 15px 0px var(--primary-blue); 
}

/* Footer Navigation */
.site-overview { background: var(--footer-dark); color: #fff; padding: 60px 0 20px 0; }
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-logo { height: 45px; filter: brightness(0) invert(1); margin-bottom: 15px; }
.overview-col h4 { border-bottom: 2px solid #0050a0; padding-bottom: 10px; margin-bottom: 15px; font-size: 1rem; }
.overview-col ul { list-style: none; padding: 0; }
.overview-col ul li { margin-bottom: 8px; font-size: 0.85rem; }
.overview-col ul li a { color: #ccc; text-decoration: none; transition: 0.2s; }
.overview-col ul li a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid #003366; margin-top: 40px; padding-top: 20px; color: #777; font-size: 0.8rem; }

/* Utilities */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: var(--whatsapp-green); color: white; width: 55px; height: 55px; border-radius: 50px; display: flex; justify-content: center; align-items: center; font-size: 26px; z-index: 2000; text-decoration: none; }
.news-btn { display: inline-block; margin-top: 10px; padding: 8px 15px; background: var(--primary-blue); color: white; text-decoration: none; border-radius: 4px; font-size: 0.85rem; }

/* New class to handle large local logos */
.local-brand-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 850px) {
    .hero-flex, .award-item { flex-direction: column; text-align: center; }
    .award-image-box { width: 100%; max-width: 280px; margin: auto; }
}