/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #1a252f;
    --text-color: #333;
    --light-text: #f8f9fa;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --gray-bg: #f5f5f5;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif,Calibri;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--secondary-color);
}

.img-placeholder {
    background-color: #e0e0e0;
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-text {
    background-color: transparent;
    color: var(--accent-color);
    padding: 0;
    border-radius: 0;
}

.btn-text:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
    transform: translateX(5px);
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 15px;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-img {
    max-height: 56px;
    width: auto;
}

nav ul {
    display: flex;
}
.about-image .img-placeholder {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}
nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 80vh;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Project slideshow styles */
.project-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-slideshow img.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.project-slideshow img.hidden {
    opacity: 0;
    z-index: 0;
}

.slideshow-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    pointer-events: auto;
}

.prev-slide:hover, .next-slide:hover {
    background-color: white;
    transform: scale(1.1);
}

/* Modify existing project-card styles */
.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* ===== FEATURED PROJECTS ===== */
.featured-projects {
    padding: 5rem 0;
    background-color: var(--gray-bg);
}

.featured-projects h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
}

.project-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--gray-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 1.5rem;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0.5;}
    to {opacity: 1;}
}

.testimonial-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client-info h4 {
    margin-bottom: 0.3rem;
}

.client-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.prev-testimonial,
.next-testimonial {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--accent-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--accent-color);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--light-text);
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== PROJECT FILTERS ===== */
.project-filters {
    padding: 2rem 0;
    background-color: var(--gray-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background-color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-color);
    color: white;
}

/* ===== PROJECTS GALLERY ===== */
.projects-gallery {
    padding: 4rem 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-story {
    padding: 5rem 0;
}

.about-hero {
    background-color: #f5f8fa;
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.about-story-image {
    position: relative;
}

.rounded-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.image-accent-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 1;
}

.about-story-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-values {
    background-color: #f5f8fa;
    padding: 100px 0;
}

.mission-values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.mission-values-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-values-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Client Logo Slider */

@keyframes scrollRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollLeftToRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo-slider.rtl .client-logos-track {
  animation: scrollRightToLeft 30s linear infinite;
}
.client-logo-slider.ltr .client-logos-track {
  animation: scrollLeftToRight 30s linear infinite;
}

.client-logo-slider {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 2rem 0;
    overflow: hidden;
}

.client-logos-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.client-logos-track {
    display: flex;
    width: fit-content;
    animation: scrollLogos 30s linear infinite;
    will-change: transform;
}

.client-logos-container:hover .client-logos-track {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 20px;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.slider-arrow {
    background-color: 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);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }

.slider-arrow:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1) translateY(-50%);
}

.prev-arrow {
    margin-right: 10px;
}

.next-arrow {
    margin-left: 10px;
}

/* Animation for continuous scrolling */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .client-logo {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .client-logo {
        width: 160px;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .client-logo {
        width: 140px;
        margin: 0 10px;
        height: 100px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
}
/* ... existing code ... */

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-image {
        order: -1;
    }
    
    .about-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .awards-timeline::before {
        left: 80px;
    }
    
    .award-year {
        width: 60px;
    }
    
    .award-content {
        margin-left: 40px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .about-hero {
        padding: 70px 0 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .projects-grid,
    .services-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .award-year {
        width: 50px;
        font-size: 0.9rem;
    }
    
    .awards-timeline::before {
        left: 70px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .client-logo {
        height: 100px;
    }
}

/* ... rest of your existing code ... */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.view-all-projects {
    text-align: center;
    margin: 2rem 0 4rem;
}

.view-all-projects .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.view-all-projects .btn:hover {
    transform: translateY(-3px);
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.team {
    padding: 5rem 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-title {
    display: block;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.awards {
    padding: 5rem 0;
    background-color: var(--gray-bg);
}

.awards h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 2px;
    background-color: var(--accent-color);
}

.award-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.award-year {
    width: 100px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    padding-right: 20px;
}

.award-content {
    flex: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-left: 40px;
    position: relative;
}

.award-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 4px solid white;
    box-shadow: var(--box-shadow);
}

.award-content h3 {
    margin-bottom: 0.5rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    margin-bottom: 2rem;
}

.method-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details h3 {
    margin-bottom: 0.5rem;
}

.social-connect {
    margin-top: 2rem;
}

.contact-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.map-section {
    padding: 5rem 0;
    background-color: var(--gray-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq {
    padding: 5rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-image {
        order: -1;
    }
    
    .about-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .awards-timeline::before {
        left: 80px;
    }
    
    .award-year {
        width: 60px;
    }
    
    .award-content {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .about-hero {
        padding: 70px 0 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1001;
        padding: 2rem;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 2rem;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .close-menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .projects-grid,
    .services-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .award-year {
        width: 50px;
        font-size: 0.9rem;
    }
    
    .awards-timeline::before {
        left: 70px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}



/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideInUp 0.8s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ===== DARK MODE STYLES ===== */
.dark-mode {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --light-color: #34495e;
    --dark-color: #1a1a1a;
    --text-color: #f5f5f5;
    --light-text: #ecf0f1;
    --border-color: #444;
    --gray-bg: #2c3e50;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode body {
    background-color: #1a1a1a;
    color: var(--text-color);
}

.dark-mode header,
.dark-mode .service-card,
.dark-mode .project-card,
.dark-mode .team-member,
.dark-mode .value-card,
.dark-mode .testimonial-content,
.dark-mode .contact-form-container,
.dark-mode .faq-item,
.dark-mode .award-content {
    background-color: #2c3e50;
}

.dark-mode .logo a,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
    color: var(--light-text);
}

.dark-mode nav ul li a {
    color: var(--light-text);
}

.dark-mode .about-hero,
.dark-mode .mission-values,
.dark-mode .awards,
.dark-mode .testimonials,
.dark-mode .map-section,
.dark-mode .project-filters {
    background-color: #1a252f;
}

.dark-mode .filter-btn {
    background-color: #34495e;
    color: var(--light-text);
}

.dark-mode .filter-btn:hover,
.dark-mode .filter-btn.active {
    background-color: var(--accent-color);
}

.dark-mode .img-placeholder {
    background-color: #34495e;
    color: #bbb;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background-color: #34495e;
    border-color: #444;
    color: var(--light-text);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    border-color: var(--accent-color);
}

/* ===== PRINT STYLES ===== */
@media print {
    header,
    footer,
    .cta,
    .hero-buttons,
    .scroll-down,
    .view-all,
    .testimonial-controls,
    .filter-buttons {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background-color: #fff;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .projects-grid,
    .services-grid,
    .team-grid,
    .values-grid {
        display: block;
    }
    
    .project-card,
    .service-card,
    .team-member,
    .value-card {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .hero {
        height: auto;
        padding: 50pt 0;
    }
}        