
body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}
header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header img {
    height: 50px;
    margin-right: 15px;
}
.news-ticker {
    background: #0078d7;
    color: #fff;
    padding: 8px;
    overflow: hidden;
    white-space: nowrap;
}
.news-ticker span {
    display: inline-block;
    padding-right: 50px;
    animation: ticker 20s linear infinite;
}
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
h1, h2 {
    color: #0078d7;
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0078d7;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.3s;
}
.cta-button:hover {
    background: #005fa3;
}
.director-section {
    display: flex;
    align-items: center;
    margin: 40px auto;
    max-width: 900px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.director-section img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Hero Text Global Fix */
.hero-text, .hero-text * {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
}

/* Hero Text Global Fix with Cache Busting */
.hero-text, .hero-text * {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
}
