.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-transform: uppercase;
    width: 70%;
    text-align: center;
}

.video-overlay h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0.4;
    line-height: 0;
}

.video-overlay h1 {
    font-size: 44px;
    text-align: center;
}

.video-overlay a {
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 50px;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    border: 5px solid #dbdbdb;
    transition: transform 0.3s ease;
}

.scroll-to-top a {
    background-color: white;
    padding: 10px;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-to-top img {
    width: 30px;
    height: 30px;
}

.scroll-to-top a:hover {
    transform: scale(1.1);
}

.social-bubble {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    align-items: center;
    border-radius: 50px;
    z-index: 1000;
}

.social-bubble a {
    display: inline-block;
    margin: 4px 4px 0px 4px;
}

.social-bubble img {
    width: 40px;
    height: 40px;
}

.social-bubble img:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.container {
    padding: 80px 80px 0 80px;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}

.intro-text {
    flex: 1;
    padding: 0 80px;
}

.intro-text a {
    margin-top: 40px;
}

.intro-image {
    flex: 1;
    text-align: right;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.banner-devis {
    background-color: #ffffff;
    color: black;
    padding: 40px 0 80px 0;
    text-align: center;
    margin: 80px -80px;
}

.banner-devis .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-devis h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.services {
    padding: 40px 80px;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.services-display {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-top: 20px;
}

.service {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.service:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-text {
    padding: 20px;
}

.service-text h4 {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.service-text p {
    color: #444;
    font-size: 14px;
    margin-top: 10px;
}

.testimonials-grid {
    margin: 80px -80px 0 -80px;
    padding: 40px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-grid h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #081548;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px 80px;
    justify-content: center;
}

.testimonial-item {
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item.full-width {
    grid-column: span 2;
}

.testimonial-quote {
    font-size: 30px;
    color: #cf9903;
    margin-right: 10px;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-content {
    text-align: left;
}

.testimonial-message {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: bold;
    color: #081548;
}

.reviews-responsive {
    display: none;
}

.drone-regulations {
    padding: 40px 80px;
    color: #333;
    text-align: left;
    margin: 80px 0;
}

.drone-regulations h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #081548;
}

.drone-regulations h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.drone-regulations p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.drone-regulations a {
    color: #cf9903;
    text-decoration: none;
    font-weight: 600;
}

.drone-regulations a:hover {
    text-decoration: underline;
}

.realisations {
    margin: 80px -80px 0 -80px;
    padding: 40px 80px 80px 80px;
    background-color: #081548;
    color: white;
    text-align: center;
}

.realisations h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.realisations-display {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
}

.realisation {
    position: relative;
    width: 500px;
    height: auto;
    overflow: hidden;
}

.realisation a {
    display: block;
    width: 100%;
}

.realisation img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.realisation:hover img {
    filter: brightness(0.8);
    transition: filter 0.3s ease-in-out;
}

.realisation .realisation-info {
    width: 100%;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 1;
    text-align: left;
    padding: 20px 0;
    box-sizing: border-box;
}

.realisation .realisation-info h3 {
    color: #f8f9fa;
    font-size: 30px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}

.realisation .realisation-info p {
    font-size: 12px;
    margin: 5px 0;
    color: var(--secondary-color);
}

.realisation .realisation-info .realisation-meta {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 0;
}

.realisation .realisation-info .read-more {
    text-decoration: underline;
    color: white;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.realisation .realisation-info .read-more:hover {
    color: #cf9903;
}

.realisations-link {
    margin-top: 40px;
}

.realisations-link .btn {
    background-color: #ffffff;
    color: #081548;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s, padding-right 0.3s, width 0.3s;
}

.realisations-link .btn:hover {
    padding-right: 30px;
    width: auto;
    background-color: #cf9903;
}

.realisations-link .btn:hover::after {
    content: ' >';
    position: absolute;
    right: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .video-overlay {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .video-overlay h1 {
        font-size: 24px;
    }

    .video-overlay h2 {
        font-size: 18px;
        line-height: 1.5;
        width: 90%;
        margin: 0 auto;
    }

    .video-overlay a {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding: 0;
    }

    .intro {
        flex-direction: column;
        align-items: center;
    }

    .intro-text {
        width: 90%;
        margin-bottom: 40px;
    }

    .intro-text, .intro-image {
        padding: 0;
        text-align: center;
    }

    .intro-image img {
        max-width: 80%;
    }

    .banner-devis {
        margin: 0;
    }

    .banner-devis .banner-content h2 {
        font-size: 24px;
        width: 80%;
        margin: 0 auto 20px auto;
    }

    .services {
        padding: 20px;
    }

    .services-display {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
        padding: 20px;
    }

    .testimonials-grid {
        padding: 20px;
        margin: 80px 0;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-item {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-message {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-name {
        font-size: 12px;
        margin-top: 10px;
    }

    .drone-regulations {
        padding: 0 20px;
        margin: 0;
    }

    .realisations {
        margin: 0;
        padding: 20px;
    }

    .realisations-display {
        flex-direction: column;
        align-items: center;
    }
    
    .realisation {
        width: 100%;
    }

    .realisation img {
        height: 250px;
    }
}