:root {
    --primary: #f7941d; /* Sun Orange */
    --secondary: #414042; /* Text Grey */
    --bg-light: #f9f9f9;
    --bg-dark: #333;
    --text-light: #fff;
    --text-dark: #333;
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

* { margin:0; padding:0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { line-height: 1.6; color: var(--text-dark); }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 6px; top: 7px; z-index: 1000; }

header { background: linear-gradient(90deg, #fff 0%, #f9f9f9 100%); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top:0; z-index: 100; }
.full-width-nav { width: 100%; max-width: 1200px; margin: auto; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo img { height: 60px; }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; flex-wrap: wrap; margin: 0; }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 600; transition: all 0.3s; padding: 5px 10px; border-radius: 5px; }
.nav-links a:hover { color: var(--primary); background: rgba(247,148,29,0.1); }
.call-btn { position: absolute; top: 10px; right: 20px; }
.call-btn a { background: var(--primary); color: white; padding: 8px 15px; border-radius: 5px; transition: all 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.call-btn a:hover { background: #e68a1a; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero-bg.jpg');
    background-size: cover; background-position: center; color: white; padding: 100px 0; text-align: center;
    animation: fadeIn 1s ease-out;
}
.hero h1 { font-size: 3rem; margin-bottom: 10px; animation: slideInLeft 1s ease-out 0.5s both; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; animation: slideInRight 1s ease-out 0.7s both; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; animation: fadeIn 1s ease-out 1s both; }
.cta-button { background: var(--primary); color: white; padding: 12px 25px; border: none; border-radius: 5px; text-decoration: none; font-weight: 600; transition: all 0.3s; transform: scale(1); }
.cta-button:hover { background: #e68a1a; transform: scale(1.05); }
.cta-button.secondary { background: transparent; border: 2px solid white; }
.cta-button.secondary:hover { background: white; color: var(--primary); }

.why-choose, .stats, .about, .services-overview, .assistance, .best-practices, .leadership, .contact-form-section, .faq { padding: 60px 0; animation: fadeIn 1s ease-out; }
.why-choose { background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('assets/why-choose-bg.jpg'); background-size: cover; text-align: center; }
.stats { background: linear-gradient(rgba(65,64,66,0.9), rgba(65,64,66,0.9)), url('assets/stats-bg.jpg'); background-size: cover; color: white; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
.stat-item { animation: slideInLeft 1s ease-out; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 1.1rem; margin-top: 10px; }

.about { background: linear-gradient(rgba(249,249,249,0.9), rgba(249,249,249,0.9)), url('assets/about-bg.jpg'); background-size: cover; text-align: center; }
.about h2 { margin-bottom: 20px; }

.services-overview { background: linear-gradient(rgba(249,249,249,0.9), rgba(249,249,249,0.9)), url('assets/services-bg.jpg'); background-size: cover; }
.services-overview h2 { text-align: center; margin-bottom: 20px; }
.view-all { display: inline-block; margin-bottom: 30px; color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.view-all:hover { color: #e68a1a; }
@keyframes colorShift {
    0% { border-color: #f7941d; box-shadow: 0 5px 15px rgba(247,148,29,0.2); }
    25% { border-color: #ff6b6b; box-shadow: 0 5px 15px rgba(255,107,107,0.2); }
    50% { border-color: #4ecdc4; box-shadow: 0 5px 15px rgba(78,205,196,0.2); }
    75% { border-color: #45b7d1; box-shadow: 0 5px 15px rgba(69,183,209,0.2); }
    100% { border-color: #f7941d; box-shadow: 0 5px 15px rgba(247,148,29,0.2); }
}

.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-item { background: white; padding: 30px; border-radius: 10px; border: 2px solid #f7941d; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; animation: colorShift 4s infinite; position: relative; overflow: hidden; }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #f7941d, #e68a1a); }
.service-item h3 { color: var(--secondary); margin-bottom: 15px; font-weight: 600; position: relative; z-index: 1; }
.service-item p { line-height: 1.7; position: relative; z-index: 1; }
.service-item:nth-child(1) { animation-delay: 0s; }
.service-item:nth-child(2) { animation-delay: 0.5s; }
.service-item:nth-child(3) { animation-delay: 1s; }
.service-item:nth-child(4) { animation-delay: 1.5s; }
.service-item:nth-child(5) { animation-delay: 2s; }
.service-item:nth-child(6) { animation-delay: 2.5s; }
.service-item:nth-child(7) { animation-delay: 3s; }
.service-item:hover { transform: translateY(-5px); background: linear-gradient(135deg, #fefefe 0%, #f9f9f9 100%); box-shadow: 0 10px 30px rgba(247,148,29,0.3); }

.assistance { text-align: center; background: linear-gradient(45deg, var(--primary), #e68a1a); color: white; }
.assistance h2 { margin-bottom: 20px; }

.best-practices { background: linear-gradient(rgba(249,249,249,0.9), rgba(249,249,249,0.9)), url('assets/best-practices-bg.jpg'); background-size: cover; text-align: center; }
.best-practices ul { list-style: none; padding: 0; }
.best-practices li { margin: 10px 0; font-weight: 600; }

.leadership { background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('assets/leadership-bg.jpg'); background-size: cover; }
.leader-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.leader { background: var(--bg-light); padding: 30px; border-radius: 10px; text-align: center; transition: box-shadow 0.3s; }
.leader:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.know-more { display: inline-block; margin-top: 20px; color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.know-more:hover { color: #e68a1a; }

.contact-form-section { background: linear-gradient(rgba(249,249,249,0.9), rgba(249,249,249,0.9)), url('assets/contact-bg.jpg'); background-size: cover; }
.contact-form-section h2 { text-align: center; margin-bottom: 30px; }
.contact-form { max-width: 500px; margin: auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form select { padding: 12px; border: 1px solid #ddd; border-radius: 5px; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form select:focus { border-color: var(--primary); outline: none; }
.submit-btn { background: var(--secondary); color: white; padding: 15px; border: none; cursor: pointer; font-weight: bold; border-radius: 5px; transition: all 0.3s; }
.submit-btn:hover { background: #555; transform: scale(1.02); }

.faq { background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('assets/faq-bg.jpg'); background-size: cover; }
.faq h2 { text-align: center; margin-bottom: 30px; }
.faq-item { margin-bottom: 30px; animation: slideInRight 1s ease-out; }
.faq-item h3 { color: var(--primary); margin-bottom: 10px; }

footer { background: var(--bg-dark); color: var(--text-light); padding: 40px 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.footer-section h3 { margin-bottom: 15px; color: var(--primary); }
.footer-section ul { list-style: none; padding: 0; }
.footer-section li { margin: 5px 0; }
.footer-section a { color: #ccc; text-decoration: none; }
.footer-section a:hover { color: var(--primary); }

.services-page, .gallery-page, .clients-page, .contact-page, .careers-content { padding: 60px 0; }
.services-page h1, .gallery-page h1, .clients-page h1, .contact-page h1 { text-align: center; margin-bottom: 30px; }
.service-detail { margin-bottom: 40px; }
.gallery-grid, .clients-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.client-item { text-align: center; }
.client-item img { width: 120px; height: 80px; object-fit: contain; border: 1px solid #ddd; border-radius: 8px; background: white; }
.contact-info { margin-bottom: 40px; text-align: center; }
.contact-info-section, .contact-form-section, .join-team-section, .grievance-content, .privacy-content { padding: 60px 0; text-align: center; }
.policy-section { background: #f9f9f9; padding: 20px; margin: 20px 0; border-radius: 8px; border-left: 4px solid var(--primary); text-align: left; }
.hero-small { background: linear-gradient(45deg, var(--primary), #e68a1a); color: white; padding: 50px 0; text-align: center; animation: fadeIn 1s ease-out; }
.resume-section { margin-top: 50px; text-align: center; background: var(--bg-light); padding: 40px; border-radius: 10px; }

@media (max-width: 768px) {
    .nav-links { display: none; } /* Add a hamburger menu for real mobile sites */
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .leader-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
}