*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #1a1a1a;
    color: white;
  
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > *:not(footer) {
    flex-grow: 1;
}

header {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000; 
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.hero {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.7em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease forwards 0.5s;
}

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

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }
}

nav {
    background-color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content-wrapper {
    width: 90%;
    max-width: 1180px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    border-radius: 5px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

.logo img {
    height: 35px;
    margin-right: 12px;
}

.logo p {
    font-size: 32px;
    font-weight: 700;
    color: black;
    line-height: 1.1;
    margin: 0;
}

.logo p span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    line-height: 1.2;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(134deg, #e60f0f, #910505);
    border-radius: 50%;
    margin-left: 15px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2em;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(134deg, #e60f0f, #910505);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.nav-social-links {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.nav-social-links a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-social-links a:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.join-us-button {
    background: linear-gradient(134deg, #e60f0f, #910505);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

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

.join-us-button:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    filter: brightness(1.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 15, 15, 0.3);
}

/* About Us Section */
.about-us {
    background-color: white;
    padding: 0;
    color: #333;
}

.clients-logos {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 30px 20px;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    overflow: hidden; 
    width: 100%;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.clients-logos img {
    flex-shrink: 0;
    height: 50px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clients-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.clients-logos-container {
    display: flex;
    gap: 60px; 
    animation: scrollLogos 20s linear infinite;
    width: fit-content;
   
}

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.about-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1180px; 
    margin: 0 auto;
    padding: 80px 20px;
    gap: 80px;
    opacity: 0;
    transform: translateY(50px);
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
}

.about-text h2 {
    font-size: 2.5em;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

.about-text p strong {
    font-weight: 700;
    color: #333;
}

.about-image-container {
    flex: 1;
    position: relative;
    padding-bottom: 0;
    opacity: 0;
    transform: translateX(30px);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

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

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

/* Our Expertise Section */
.our-expertise-section {
    background-color: #ffffff;
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}

.expertise-content-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.expertise-text-column {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-text-column h2 {
    font-size: 2.5em;
    color: #e50914;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.expertise-text-column h2::after {
    display: none;
}

.expertise-text-column p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
}

.expertise-blocks-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -60px;
    padding: 40px;
}

.expertise-block {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-height: 350px;
}

.expertise-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.1);
}

.expertise-icon {
    font-size: 2.5em;
    color: #e50914;
    margin-bottom: 20px;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.expertise-block h3 {
    font-size: 1.5em;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 700;
}

.expertise-block p {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

.innovation-block {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
}

.trust-block {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
}

.commitment-block {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
}

@media (max-width: 768px) {
    .expertise-blocks-column {
        grid-template-columns: 1fr;
    }
    
    .expertise-block {
        padding: 30px 20px;
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .expertise-block {
        min-height: 300px;
    }
}

/* Our Services Section */
.our-services {
    background: linear-gradient(180deg, #f1f1f1 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
    color: #333;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-header h2 {
    font-size: 2.5em;
    color: #e50914;
    margin-bottom: 20px;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services-header p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.service-cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.service-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    object-fit: contain;
    border-radius: 50%; /* Forme circulaire */
    background-color: transparent; /* Fond transparent */
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
}

.service-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

.service-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.service-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-pagination .dot.active {
    background: #e60f0f;
    transform: scale(1.2);
}

/* Tablette */
@media screen and (max-width: 768px) {
    .service-cards-container {
        max-width: 600px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .service-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .service-card {
        padding: 15px;
    }
    .service-pagination {
        margin-top: 25px;
    }
    .service-pagination .dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .service-cards-container {
        max-width: 340px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .service-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-card {
        padding: 12px;
    }
    .service-pagination {
        margin-top: 20px;
    }
    .service-pagination .dot {
        width: 8px;
        height: 8px;
    }
}

/* Our Team Section */
.our-team-section {
    background-color: #1a1a1a;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.team-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.team-header h2 {
    font-size: 2.5em;
    color: #e50914; /* Changed to red */
    margin-bottom: 20px;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.team-header p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ccc;
}

.team-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

.team-card {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    width: calc((1200px - 2 * 30px) / 3); /* For 3 cards with gaps */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    margin-bottom: 20px;
    filter: brightness(1.1) contrast(1.05);
}

.team-card h3 {
    font-size: 1.5em;
    color: #e50914;
    margin-bottom: 10px;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.team-card .position {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 15px;
}

.team-card .social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.team-card .social-links a {
    color: #ccc;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.team-card .social-links a:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Footer Section */
footer {
    background-color: #f1f1f1; /* Light gray background for main footer */
    color: #333;
    padding: 60px 20px 20px 20px;
    font-size: 0.9em;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 280px; /* Adjust min-width as needed for responsiveness */
    margin-bottom: 20px;
}

.footer-col.company-info {
    flex: 1.5; /* Larger column for company info */
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333; /* Dark text for headers */
}

.footer-col p,
.footer-col ul li a {
    color: #555; /* Slightly lighter text for content */
    line-height: 1.6;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col .social-media-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-col .social-media-links a {
    color: #555;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-col .social-media-links a:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-bottom {
    background-color: #f1f1f1; /* Changed to match main footer background */
    border-top: 1px solid #ccc;
    padding: 10px 0; /* Reduced padding to decrease height */
    text-align: center;
    color: #555;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Our Partners Section */
.our-partners-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.partners-header {
    text-align: center;
    margin-bottom: 0px;
}

.partners-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.partners-header h2 span {
    color: #e50914;
}

.partners-header p {
    color: #333333;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.partners-logos-new-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.partners-logos-new-container img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-width: 200px;
}

.partners-logos-new-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive pour Our Partners */
@media screen and (max-width: 768px) {
    .our-partners-section {
        padding: 60px 0;
    }
    
    .partners-header h2 {
        font-size: 2em;
    }
    
    .partners-logos-new-container {
        gap: 40px;
        padding: 30px 0;
    }
    
    .partners-logos-new-container img {
        height: 60px;
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .our-partners-section {
        padding: 40px 0;
    }
    
    .partners-header h2 {
        font-size: 1.8em;
    }
    
    .partners-logos-new-container {
        gap: 30px;
        padding: 20px 0;
    }
    
    .partners-logos-new-container img {
        height: 50px;
        max-width: 120px;
    }
}

/* Carousel Controls */
.partners-controls {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.partners-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partners-control-btn:hover {
    background: #e50914;
    color: white;
}

.partners-control-btn i {
    font-size: 1.2em;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    nav ul li {
        margin: 20px 0;
    }

    .nav-content-wrapper {
        padding: 10px 20px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 8px 0;
    }
    .nav-links li:last-child {
        margin: 20px 0;
    }
    .nav-links li a,
    .contact-button {
        display: inline-block;
        width: auto;
        box-sizing: border-box;
        margin: 0;
        padding: 10px 0;
        border-radius: 0;
        font-size: 1em;
        border: none !important;
    }
    .contact-button {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .contact-button:hover {
        background: none;
        color: #910505 !important;
        filter: none;
        box-shadow: none;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .service-cards-container {
        padding: 20px 0;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .service-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        padding: 25px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .team-card {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    
    .team-card img {
        width: 180px;
        height: 180px;
    }
    
    .team-card h3 {
        font-size: 1.3em;
    }
    
    .team-card .position {
        font-size: 1em;
    }
    
    .team-card .social-links {
        gap: 15px;
    }
    
    .team-card .social-links a {
        font-size: 1.3em;
    }

    .footer-main-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-col p {
        font-size: 0.9em;
        line-height: 1.5;
    }

    .footer-col h4 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .footer-col ul {
        padding: 0;
    }

    .footer-col ul li {
        margin: 8px 0;
    }

    .footer-col ul li a {
        font-size: 0.9em;
    }

    .social-media-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-bottom p {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 30px;
    }

    .nav-content-wrapper {
        padding: 10px;
    }

    .service-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex: 0 0 260px;
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 1em;
    }

    .team-card {
        flex: 0 0 350px;
        padding: 30px;
    }

    .team-card h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .team-card .position {
        font-size: 1em;
    }

    .team-card .social-links {
        gap: 15px;
    }

    .team-card .social-links a {
        font-size: 1.4em;
    }

    .footer-main-content {
        padding: 15px;
        gap: 15px;
    }

    .footer-logo img {
        height: 35px;
    }
    
    .footer-col p {
        font-size: 0.85em;
    }

    .footer-col h4 {
        font-size: 1em;
    }

    .footer-col ul li a {
        font-size: 0.85em;
    }

    .social-media-links a {
        font-size: 1.2em;
    }

    .footer-bottom {
        padding: 12px 15px;
    }

    .footer-bottom p {
        font-size: 0.75em;
    }

    .footer-col {
        margin-bottom: 5px;
    }
}

/* About Us Section Responsive */
@media screen and (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
        font-size: 2em;
    }

    .about-text p {
        font-size: 1em;
    }

    .about-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .clients-logos {
        padding: 20px 10px;
    }

    .clients-logos-container {
        gap: 30px;
    }

    .clients-logos img {
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .about-content-wrapper {
        padding: 30px 15px;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 1.8em;
    }

    .about-text p {
        font-size: 0.95em;
    }

    .clients-logos-container {
        gap: 20px;
    }

    .clients-logos img {
        height: 30px;
    }
}

/* Our Services Section Responsive - Alternative Approach */
@media screen and (max-width: 768px) {
    .services-header {
        padding: 40px 20px;
        text-align: center;
    }

    .services-header h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .services-header p {
        font-size: 1em;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-cards-container {
        padding: 20px 0;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .service-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        padding: 25px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
        color: #333;
    }

    .service-card p {
        font-size: 0.95em;
        line-height: 1.5;
        color: #666;
    }

    .service-pagination {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .services-header {
        padding: 30px 15px;
    }

    .services-header h2 {
        font-size: 1.8em;
    }

    .services-header p {
        font-size: 0.95em;
    }

    .service-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex: 0 0 260px;
        padding: 20px;
    }

    .service-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.9em;
    }

    .service-pagination {
        display: none;
    }
}

/* Hero Section Responsive */
@media screen and (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2em;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .join-us-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 30px 15px;
    }

    .hero-content h1 {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .join-us-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e50914;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#back-to-top.visible {
    display: flex;
}

@media screen and (max-width: 768px) {
    #back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

.social-bar {
    background-color: #1a1a1a;
    padding: 10px 0;
    width: 100%;
}

.social-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.contact-info i {
    font-size: 16px;
    margin-right: 6px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-left: 5px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-selector a:hover {
    background: linear-gradient(134deg, #e60f0f, #910505);
    -webkit-background-clip: text;
    
    background-clip: text;
    
}

.language-selector a.active {
    background: linear-gradient(134deg, #e60f0f, #910505);
    color: #fff;
}

.language-selector a.active:hover {
    color: #fff !important;
    background: linear-gradient(134deg, #e60f0f, #910505);
    cursor: default;
    text-decoration: none;
    filter: none;
}

.language-selector a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.language-selector a.disabled:hover {
    color: #fff;
    background-color: transparent;
}

.language-selector a.disabled:hover {
    color: #fff;
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .social-bar {
        padding: 8px 0;
    }
    
    .social-bar-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }
    
    .social-left {
        flex-direction: row;
        gap: 10px;
    }
    
    .contact-info {
        padding-left: 16px;
    }
    
    .contact-info span {
        display: none;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        font-size: 16px;
    }
    
    .language-selector {
        margin-left: auto;
        gap: 8px;
    }
    
    .language-selector a {
        font-size: 12px;
    }
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .video-container {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .video-container {
        padding: 10px;
    }
}

.contact-button {
    background: linear-gradient(134deg, #e60f0f, #910505);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 60px;
    border: 1px solid #910505;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 15, 15, 0.3);
}

.contact-button::after {
    display: none;
}

.social-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .social-bar-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }
    .social-left {
        flex-direction: row;
        gap: 10px;
    }
    .contact-info {
        padding-left: 16px;
    }
    .contact-info span {
        display: none;
    }
    .language-selector {
        margin-left: auto;
    }
}