﻿/* Base Styles & Variables */
:root {
    /* Light Theme Colors */
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #777;
    --bg-color: #f9f9f9;
    --card-bg: #fff;
    --header-bg: #fff;
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    /* Dark Theme Colors - will be applied when data-theme="dark" */
    --primary-color-dark: #2980b9;
    --secondary-color-dark: #27ae60;
    --accent-color-dark: #c0392b;
    --text-color-dark: #ecf0f1;
    --text-light-dark: #bdc3c7;
    --bg-color-dark: #1a1a1a;
    --card-bg-dark: #2d2d2d;
    --header-bg-dark: #2d2d2d;
    --footer-bg-dark: #1a1a1a;
    --border-color-dark: #444;
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.3);
    --nav-shadow-dark: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] {
    --primary-color: var(--primary-color-dark);
    --secondary-color: var(--secondary-color-dark);
    --accent-color: var(--accent-color-dark);
    --text-color: var(--text-color-dark);
    --text-light: var(--text-light-dark);
    --bg-color: var(--bg-color-dark);
    --card-bg: var(--card-bg-dark);
    --header-bg: var(--header-bg-dark);
    --footer-bg: var(--footer-bg-dark);
    --footer-text: var(--text-light-dark);
    --border-color: var(--border-color-dark);
    --shadow: var(--shadow-dark);
    --nav-shadow: var(--nav-shadow-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Add to style.css */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.blue-btn {
    background-color: var(--secondary-color);
    color: white;
}

.blue-btn:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    box-shadow: var(--nav-shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo a span {
    color: var(--primary-color);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
}

.nav-links ul {
    padding: 60px 20px 20px;
}

.nav-links ul li {
    margin-bottom: 15px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.close-btn, .menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.menu-btn {
    display: block;
}

.theme-toggle button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Sections */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Status image1.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.sub-header.parallax {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 80px;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

/* About Content */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* FAQ Section */

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--card-bg);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--card-bg);
}

.faq-answer-content {
    padding: 0 20px 20px;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: var(--card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3, .footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3::after, .footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--footer-text);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 60%;
    height: auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Projects Page Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    color: white;
}

.project-status {
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.project-badge {
    background-color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
}

.project-progress {
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.project-content {
    padding: 20px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--primary-color-dark);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--card-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 15px 15px;
}

.rating {
    color: #f1c40f;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    margin-bottom: 5px;
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-post {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post.featured {
    grid-column: 1 / -1;
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta i {
    margin-right: 5px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color-dark);
}

.blog-divider {
    position: relative;
    margin: 40px 0;
    text-align: center;
}

.blog-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    z-index: -1;
}

.blog-divider span {
    background-color: var(--bg-color);
    padding: 0 20px;
    color: var(--text-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.page-numbers {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--card-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.page-numbers:hover, .page-numbers.current {
    background-color: var(--primary-color);
    color: white;
}

/* Sidebar */
.blog-sidebar {
    order: -1;
}

.sidebar-widget {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.widget-title {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.categories-widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.categories-widget ul li a:hover {
    color: var(--primary-color);
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.post-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-container a {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--bg-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tags-container a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Status image1.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-color-dark);
}

/* Contact Page Styles */


.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary-color-dark);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.form-column {
    order: 2;
}

.map-column {
    order: 1;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.business-hours {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.business-hours h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.business-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    color: var(--accent-color);
}

.emergency-contact i {
    font-size: 1.5rem;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.error-message {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 5px;
    height: 15px;
}

.form-submit {
    margin-top: 30px;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-preview-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-preview-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--card-bg);
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn i {
    margin-right: 8px;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
}

.mission-statement {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Global Presence */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.about-col {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), var(--primary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-col:hover .layer {
    opacity: 1;
}

.about-col:hover img {
    transform: scale(1.1);
}

/* Why Choose Us */
.facilities {
    padding: 80px 0;
    text-align: center;
}

.facilities h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.facilities p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.facilities-col {
    flex: 1;
    min-width: 250px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.facilities-col:hover {
    transform: translateY(-10px);
}

.facilities-col img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.facilities-col h3 {
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
    }
    
    .nav-links ul {
        display: flex;
        padding: 0;
        gap: 20px;
    }
    
    .close-btn, .menu-btn {
        display: none;
    }
    
    .about-content {
        flex-wrap: nowrap;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-column {
        order: 1;
    }
    
    .map-column {
        order: 2;
    }
    
    .blog-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .blog-sidebar {
        order: 2;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
}

/* AOS Animation Delay Classes */
[data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos-delay="300"] {
    transition-delay: 300ms;
}

[data-aos-delay="400"] {
    transition-delay: 400ms;
}

[data-aos-delay="500"] {
    transition-delay: 500ms;
}

/* Codex modern refresh */
:root {
    --radius-sm: 6px;
    --radius-md: 8px;
    --header-height: 80px;
    --surface-border: rgba(127, 127, 127, 0.16);
    --soft-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --soft-shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.14);
}

[data-theme="dark"] {
    --surface-border: rgba(255, 255, 255, 0.1);
    --soft-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
    --soft-shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html {
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

main > section,
section {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 3000;
    pointer-events: none;
    transition: width 0.12s linear;
}

.header {
    border-bottom: 1px solid var(--surface-border);
    background-color: color-mix(in srgb, var(--header-bg) 88%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--soft-shadow);
}

.navbar {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 12px 0;
}

.logo a {
    font-size: 1.65rem;
    letter-spacing: 0;
}

.nav-links {
    right: -320px;
    width: min(82vw, 300px);
    padding: 18px;
    background-color: color-mix(in srgb, var(--card-bg) 94%, transparent);
    border-left: 1px solid var(--surface-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--soft-shadow-strong);
}

.nav-links.is-open {
    right: 0;
}

.nav-links ul {
    padding: 72px 0 20px;
}

.nav-links ul li {
    margin-bottom: 8px;
}

.nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    letter-spacing: 0;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--primary-color);
    background-color: color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.close-btn,
.menu-btn,
.theme-toggle button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background-color: color-mix(in srgb, var(--card-bg) 80%, transparent);
    border: 1px solid var(--surface-border);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.close-btn:hover,
.menu-btn:hover,
.theme-toggle button:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
}

.section,
.mission-values,
.about,
.facilities,
.projects-filter,
.projects-section,
.testimonials-section,
.blog-content-section,
.contact-info-section,
.contact-form-section,
.faq-preview-section {
    padding-block: clamp(56px, 8vw, 96px);
}

.about-hero,
.sub-header.parallax {
    min-height: 54vh;
    border-bottom: 1px solid var(--surface-border);
    isolation: isolate;
}

.about-hero h1,
.parallax-content h1,
.roadmap-hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.8rem);
    max-width: 920px;
    margin-inline: auto;
}

.about-hero p,
.parallax-content p,
.roadmap-hero p {
    max-width: 680px;
    margin-inline: auto;
}

.section-title::after,
.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after,
.widget-title::after,
.business-hours h3::after {
    border-radius: 999px;
}

.mission-statement,
.value-card,
.team-member,
.faq-item,
.stat-item,
.project-card,
.testimonial-slide,
.blog-post,
.sidebar-widget,
.contact-info-card,
.map-container,
.business-hours,
.contact-form,
.faq-preview-item,
.facilities-col {
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    box-shadow: var(--soft-shadow);
}

.project-card,
.blog-post,
.team-member,
.value-card,
.facilities-col,
.contact-info-card,
.faq-preview-item,
.sidebar-widget,
.testimonial-slide,
.stat-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover,
.blog-post:hover,
.team-member:hover,
.value-card:hover,
.facilities-col:hover,
.contact-info-card:hover,
.faq-preview-item:hover,
.sidebar-widget:hover,
.testimonial-slide:hover,
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--soft-shadow-strong);
    border-color: color-mix(in srgb, var(--primary-color) 28%, var(--surface-border));
}

.btn,
.hero-btn,
.filter-btn,
.page-numbers,
.project-status,
.project-badge,
.tags-container a,
.newsletter-form input,
.newsletter-form button,
.form-group input,
.form-group textarea,
.form-group select {
    border-radius: var(--radius-sm);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: #fff;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
}

.blue-btn {
    background-color: var(--secondary-color);
}

.project-image,
.post-image,
.about-image,
.map-container,
.about-col {
    border-radius: var(--radius-md);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-float {
    animation: whatsapp-float-motion 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.08);
}

@keyframes whatsapp-float-motion {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.roadmap-hero {
    margin-top: var(--header-height);
    min-height: 58vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url("images/Status image1.webp") center/cover no-repeat;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.roadmap-step {
    min-height: 100%;
    padding: 28px;
    background-color: var(--card-bg);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    box-shadow: var(--soft-shadow);
}

.roadmap-step span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-weight: 700;
}

.roadmap-step h2 {
    font-size: 1.3rem;
}

.roadmap-step .read-more {
    margin-top: 8px;
}

@media (min-width: 768px) {
    .nav-links {
        padding: 0;
        border-left: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    .nav-links ul {
        align-items: center;
        gap: 6px;
        padding: 0;
    }

    .nav-link {
        padding: 9px 11px;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .navbar {
        width: 92%;
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
/* End Codex modern refresh */

/* Codex responsive menu fix */
@media (min-width: 1025px) {
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
        border-left: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links ul {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
    }

    .nav-links ul li {
        margin-bottom: 0;
    }

    .menu-btn,
    .close-btn {
        display: none !important;
    }

    .theme-toggle {
        margin-left: 12px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: min(82vw, 300px);
        height: 100vh;
        padding: 18px;
        background-color: color-mix(in srgb, var(--card-bg) 94%, transparent);
        border-left: 1px solid var(--surface-border);
        box-shadow: var(--soft-shadow-strong);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-links.is-open {
        right: 0;
    }

    .nav-links ul {
        display: block;
        padding: 72px 0 20px;
    }

    .nav-links ul li {
        margin-bottom: 8px;
    }

    .menu-btn,
    .close-btn {
        display: inline-flex !important;
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 10px;
    }
}
/* End Codex responsive menu fix */

/* Codex hard desktop menu fix */
.header .menu-btn,
.header .close-btn {
    display: none !important;
}

@media (min-width: 901px) {
    .header .nav-links {
        position: static !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-left: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .header .nav-links ul {
        display: flex !important;
        align-items: center;
        gap: 6px;
        padding: 0 !important;
    }

    .header .nav-links ul li {
        margin-bottom: 0 !important;
    }

    .header .theme-toggle {
        margin-left: 12px;
        margin-right: 0;
    }
}

@media (max-width: 900px) {
    .header .nav-links {
        position: fixed !important;
        top: 0;
        right: -320px;
        width: min(82vw, 300px) !important;
        height: 100vh !important;
        padding: 18px !important;
    }

    .header .nav-links.is-open {
        right: 0;
    }

    .header .nav-links ul {
        display: block !important;
        padding: 72px 0 20px !important;
    }

    .header .nav-links ul li {
        margin-bottom: 8px !important;
    }

    .header .menu-btn,
    .header .close-btn {
        display: inline-flex !important;
    }

    .header .theme-toggle {
        margin-left: auto;
        margin-right: 10px;
    }
}
/* End Codex hard desktop menu fix */

