/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.btn-small {
    background-color: #003366;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-small:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    color: #003366;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #003366;
    margin: 15px auto;
}

/* Top Bar Styles */
.top-bar {
    background-color: #f8f8f8;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #003366;
}

.social-links a {
    margin-left: 10px;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #003366;
}

/* Header Styles */
header {
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    max-height: 90px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.mobile-menu-btn {
    /* display: none;
    font-size: 24px;
    cursor: pointer; */
    color: white; /* White icon by default */
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden on desktop by default */
    transition: all 0.3s ease;
}

.main-header.scrolled .mobile-menu-btn,
#main-header.scrolled .mobile-menu-btn {
    color: #003366; /* Dark icon when scrolled */
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: #003366;
    margin-bottom: 20px;
}

/* Tablet Styles
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 15px;
    }
}

/* Mobile Styles */
/* @media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}  */

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.centered-btn {
    text-align: center;
    margin-top: 40px;
}

/* Projects Preview */
.projects-preview {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-card img {
    display: block;
    transition: transform 0.5s;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
    background-color: white;
}

.project-info h3 {
    margin-bottom: 5px;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    padding-right: 30px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-features {
    margin: 20px 0 30px;
}

.about-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-features i {
    margin-right: 10px;
    color: #003366;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #003366;
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    /* background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px; */
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: white; /* Your brand color */
}

.testimonial-content .position {
    font-size: 16px;
    color: white;
    margin-bottom: 15px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    display: block;
    margin: 0 auto 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    opacity: 0.8;
}

/* Call to Action */
.cta {
    padding: 60px 0;
    text-align: center;
    background-color: #003366;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: #003366;
}

.cta .btn:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #002244;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.3);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ddd;
}

.footer-col p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-col img {
    margin-left: 50px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    font-size: 14px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: white;
    transition: background-color 0.3s;
}

.footer .social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Screenshot 2025-06-23 122950.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #003366;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    background-color: #003366;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 0;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -40px;
}

.timeline-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #003366;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 40px;
    color: #003366;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f0f0f0;
} */

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: #003366;
    color: white;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
}

/* Services Page Styles */
.services-content {
    padding: 80px 0;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-details.reverse {
    direction: rtl;
}

.service-text {
    direction: ltr;
}

.service-image img {
    width: 700px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    margin-right: 10px;
    color: #003366;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #003366;
}

/* Projects Page Styles */
.projects-filter {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #003366;
    color: white;
    border-color: #003366;
}

.projects-grid-section {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 51, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 20px;
    background-color: white;
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-location, .project-year, .project-type {
    font-size: 14px;
    color: #666;
}

.project-type {
    display: inline-block;
    padding: 3px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-top: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.page-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.page-btn:hover, .page-btn.active {
    background-color: #003366;
    color: white;
    border-color: #003366;
}

.page-btn.next {
    width: auto;
    padding: 0 15px;
}

.project-stats {
    padding: 60px 0;
    background-color: #003366;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
    margin-top: 40px;
}

.info-card {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.info-card i {
    font-size: 24px;
    color: #003366;
    margin-right: 15px;
    margin-top: 5px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: #003366;
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-map {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.regional-offices {
    margin-top: 60px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.office-card h3 {
    color: #003366;
    margin-bottom: 15px;
}

.office-card p {
    margin-bottom: 10px;
}

.office-card i {
    color: #003366;
    margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-preview .container,
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .service-details.reverse {
        direction: ltr;
    }
    
    .service-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-year {
        left: 0 !important;
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Add these new styles to your existing CSS */

/* Header with scroll effect */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header.scrolled .nav-links a {
    color: #333;
}

.main-header.scrolled .nav-links a:hover,
.main-header.scrolled .nav-links a.active {
    color: #003366;
}

/* Logo size adjustment */
.logo img {
    height: auto;
    width: 90px;
    transition: all 0.3s ease;
}

#main-header.scrolled .logo img {
    width: 100px;
}

/* Hero section with background image */
/* .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('alasema pic.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
} */

/* .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Hero Section with Sliding Background */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 20vh;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Add this to your existing CSS */
.hero .btn {
    background-color: transparent;
    border: 2px solid transparent;
    color: white;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Adjust the first content section to account for fixed header */
.services-preview {
    padding-top: 120px;
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Partners Carousel - Natural Images */
.partner-img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 15px; 
    /* No borders, no forced shapes */
    border: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain; /*Preserve original aspect ratio*/
}

/* Keep all other carousel styles the same */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 30px 0;
}

.partners-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 120s linear infinite;
    align-items: center; /* Vertical centering */
}

.team-member {
    /* display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    min-width: 200px; */
    min-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
} */

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

.partner-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .partners-track {
        gap: 15px;
        animation-duration: 40s;
    }
    
    .team-member {
        min-width: 120px;
        height: 80px;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    .partners-track {
        gap: 10px;
        animation-duration: 50s;
    }
    
    .team-member {
        min-width: 100px;
        height: 60px;
    }
    
    .partner-img {
        max-height: 40px;
    }
    
    .about-team .section-title {
        font-size: 28px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Responsive adjustments
@media (max-width: 768px) {
    .partners-track {
        gap: 20px;
    }
    
    .team-member {
        min-width: 150px;
        height: 100px;
    }

    .partner-img {
        width: 120px;
        height: 120px;
    }
} */

/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Change this to your desired track color */
}

::-webkit-scrollbar-thumb {
    background: #003366; /* Change this to your desired thumb color */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Change this to your desired hover color */
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #003366 #f1f1f1; /* thumb and track color */
}

.contact-intro {
        margin-bottom: 30px;
        font-size: 1.0em;
        /* color: #555; */
}

.project-counter-container {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.project-counter {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-preview {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-icon {
        font-size: 35px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}