
body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 1000; 
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}


.navbar.transparent {
    background-color: rgba(0, 0, 0, 0.05); 
    pointer-events: auto; 
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
}


.navbar.solid {
    background-color: #1e3547;
    pointer-events: auto;
}

.nav-links {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #1e3547;
    width: 100%;
    text-align: center;
}

.nav-links li {
    padding: 15px 0;
}


.nav-links.nav-active a {
    font-size: 1.5rem !important;  
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}



.nav-links a:hover,
.nav-links a.active {
    color: #52b3e4; 
}


.nav-links li {
    position: relative;
    margin: 25px 0;
    text-align: center;
}

.nav-links li::after {
    content: "";
    display: block;
    width: 100%; 
    height: 1px;
    background-color: #ffffff;
    margin: 10px auto 0; 
}


.nav-links li:last-child::after {
    display: block;
}

.nav-links a {
    text-decoration: none;
}

.logo img {
    width: 50px;
    transition: width 0.3s ease;
}

.menu-toggle {
    z-index: 1001;
    pointer-events: auto;
}

.menu-toggle i {
    font-size: 30px;
    color: white;
    z-index: 10000;
}


.nav-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(13, 27, 42, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.nav-links.nav-active {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav-links li {
    margin: 20px 0;
}

.nav-links a {
    color: white;
    font-size: 2rem;
}

.menu-toggle.active i {
    content: '\f00d';
    color: white;
}

.nav-links {
    display: none;
}

.video-container {
    position: relative;
    width: 100%; 
    height: 100vh; 
    overflow: hidden;
    margin: 0;
    padding: 0;
}

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


.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; 

}

.video-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 0 10px;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    position: relative; 
}


.video-content h1::after {
    content: "";
    display: block;
    width: 50%; 
    height: 3px; 
    background-color: #ffffff;
    margin: 8px auto 0; 
    opacity: 0.8; 
}

.video-content p {
    font-size: 1.5rem;
    color: #e0e0e0;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin: 0 0 20px;
}


.bg-video {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; 
}


.scroll-button {
    font-size: 2rem;
    color: #ffffff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-button i {
    animation: bounce 2s infinite;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}



section {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}


#video-section {
    height: 100vh;
}



@media only screen and (max-width: 768px) {
    .scroll-button {
        font-size: 2.5rem;
    }

    .navbar.solid .logo img {
        width: 40px;
    }
}


h1, h2, h3 {
    font-size: 2.5rem; 
    font-weight: 700;  
    color: #0d1b2a;    
    margin-bottom: 20px; 
}









p {
    font-size: 1.2rem;  
    font-weight: 400;   
    color: #333333;     
    line-height: 1.6;   
    margin-bottom: 15px; 
}


.close-icon {
    display: none; 
    font-size: 30px;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10000; 
}

.nav-active .close-icon {
    display: block; 
}

.menu-toggle i:hover {
    color: #52b3e4; 
}


.scroll-button i:hover {
    color: #52b3e4; 
}
.scroll-button i {
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9); 
    animation: bounce 2s infinite;
    transition: color 0.3s ease, text-shadow 0.3s ease; 
}






.solutions-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    grid-auto-rows: 50vh; 
    gap: 0; 
    width: 100%; 
    margin: 0;
    padding: 0;
}

.solution-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.8); 
    transition: transform 0.5s ease, filter 0.5s ease; 
}

.solution-item:hover .solution-image {
    transform: scale(1.05); 
    filter: brightness(1); 
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5); 
    color: white;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    z-index: 2; 
}

.solution-overlay h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 10px;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    position: relative; 
}

.solution-overlay h3::after {
    content: "";
    display: block;
    width: 100%; 
    height: 2px; 
    background-color: #ffffff; 
    margin: 5px auto 0; 
    opacity: 0.8; 
}

.solution-overlay p {
    font-size: 1.3rem;  
    color: #e0e0e0;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .solution-overlay h3 {
        font-size: 1.3rem; 
    }
    .solution-overlay p {
        font-size: 0.9rem; 
    }
}


.row-odd .solution-item:nth-child(1) {
    grid-column: 1 / 2;
}

.row-odd .solution-item:nth-child(2) {
    grid-column: 2 / 3;
}


.row-even {
    grid-template-columns: 1fr 1.5fr;
}

.row-even .solution-item:nth-child(1) {
    grid-column: 1 / 2;
}

.row-even .solution-item:nth-child(2) {
    grid-column: 2 / 3;
}


#nos-solutions {
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .solutions-container {
        display: block;
        width: 100%;
    }

    .solution-item {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 0; 
    }
    .solution-image {
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
    }
    .solution-overlay {
        font-size: 1rem;
        padding: 15px;
        text-align: center;
        color: white;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
}



body {
    overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
    .navbar {
        height: 70px; 
    }
}

@media only screen and (max-width: 768px) {
    .video-content h1 {
        font-size: 2.8rem; 
    }

    .video-content p {
        font-size: 1.2rem; 
    }

    .scroll-button {
        font-size: 2rem; 
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px; 
    height: 40px; 
    background-color: #1e3547; 
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px; 
    height: 40px; 
    background-color: #1e3547; 
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem; 
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #52b3e4; 
}


@media only screen and (max-width: 768px) {
    .back-to-top {
        width: 35px; 
        height: 35px;
        font-size: 1rem; 
        bottom: 15px; 
        right: 15px;
    }
}

.back-to-top:hover {
    background-color: #52b3e4; 
}

@media only screen and (max-width: 768px) {
    .back-to-top {
        width: 35px; 
        height: 35px;
        font-size: 1rem; 
        bottom: 15px; 
        right: 15px;
    }
}


.counter-container {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    background-color: #1e3547; 
    color: white;
    flex-wrap: wrap; 
}

.counter {
    text-align: center;
    flex: 1 1 150px; 
    margin: 10px 0;
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
}

.font-weight {
    margin-top: 5px;
    font-size: 1.2rem;
}


@media only screen and (max-width: 768px) {
    .counter-container {
        padding: 20px 0;
    }

    .counter-icon {
        font-size: 2rem; 
    }

    .number {
        font-size: 2rem; 
    }

    .font-weight {
        font-size: 1rem; 
    }
}

@media only screen and (max-width: 480px) {
    .counter {
        flex: 1 1 100%;
    }

    .counter-icon {
        font-size: 1.8rem;
    }

    .number {
        font-size: 1.8rem;
    }

    .font-weight {
        font-size: 0.9rem;
    }
}
#counters {
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #1e3547;
}





.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 40px;
    background-color: #1e3547;
    color: white;
    box-sizing: border-box;
}


.contact-left {
    flex: 1;
    padding-right: 20px;
}

.fields .field {
    margin-bottom: 20px;
}

.field label {
    font-size: 1.5rem; 
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}


.field input, .field textarea {
    width: 100%;
    padding: 12px;
    background-color: #2a4b63;
    border: none;
    color: white;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none; 
}

.button-container input[type="submit"] {
    padding: 15px 30px; 
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: #1e3547; 
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 10px; 
}

.button-container input[type="submit"]:hover {
    background-color: #52b3e4; 
    color: #ffffff; 
}

.button-container input[type="reset"] {
    padding: 15px 30px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-container input[type="reset"]:hover {
    background-color: rgba(255, 255, 255, 0.1); 
}


/* By iGetSolution bébé */
.contact-right {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2); 
    padding-right: 20px; 
}

.contact-method {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
}

.contact-method:last-child {
    border-bottom: none; 
}

.contact-method i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-method h4 {
    margin: 0;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.contact-method a, .contact-method span {
    color: #b0c7d6;
    font-size: 1rem;
    line-height: 1.5;
}




@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-left, .contact-right {
        width: 100%;
        padding: 20px;
    }

    .button-container {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .contact-right {
        border-left: none;
    }
}





.footer {
    background-color: #1e3547;
    color: #b0c7d6;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
}

.footer .social-icons {
    margin-bottom: 10px;
}

.footer .social-icons a {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #52b3e4; 
}

.footer .footer-text {
    color: #b0c7d6;
    font-size: 0.9rem;
}

.footer .footer-text a {
    color: #b0c7d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-text a:hover {
    color: #ffffff; 
}
html {
    scroll-behavior: smooth;
}

#menu a[href="#contact"].active {
    color: #1e90ff; 
}


/* iGetSolution bébé all rigth reserved to iGet */



.contact-method i {
    color: white; 
    font-size: 1.5rem; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-method i:hover {
    color: #52b3e4; 
    transform: scale(1.2); 
}
.contact-method h4 {
    color: white; 
    margin-top: 10px;
    transition: color 0.3s ease;
}

.contact-method h4:hover {
    color: #52b3e4; 
}
.contact-method a {
    color: #d1d1d1; 
    text-decoration: none; 
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent; 
}

.contact-method a:hover {
    color: #52b3e4; 
    border-bottom: 1px solid #52b3e4; 
}

.contact-method span {
    color: #d1d1d1; 
    font-size: 0.9rem; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-method span:hover {
    color: #52b3e4; 
    transform: scale(1.05); 
}






#nos-solutions .solution-overlay h3 {
    color: #fff; 
    transition: color 0.3s ease, transform 0.3s ease; 
}

#nos-solutions .solution-overlay h3:hover {
    color: #52b3e4; 
    transform: scale(1.05); 
}





.video-content h1 {
    color: #fff; 
    font-size: 3.2rem; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    transition: color 0.3s ease, transform 0.3s ease; 
}

.video-content h1:hover {
    color: #52b3e4; 
    transform: scale(1.05); 
}


.video-content p,
.video-content span {
    color: #d1d1d1; 
    font-size: 1.5rem; 
    transition: color 0.3s ease, transform 0.3s ease; 
}

.video-content p:hover,
.video-content span:hover {
    color: #52b3e4; 
    transform: scale(1.02); 
}




#nos-solutions .solutions-container .solution-item .solution-image {
    filter: brightness(0.7); 
    transition: filter 0.3s ease, transform 0.3s ease; 
    position: relative;
    z-index: 1;
}


#nos-solutions .solutions-container .solution-item:hover .solution-image {
    filter: brightness(1); 
    transform: scale(1.05); 
    z-index: 2;
}


#nos-solutions .solutions-container .solution-item .solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    z-index: 3;
}


#nos-solutions .solutions-container .solution-item:hover .solution-overlay {
    background: rgba(0, 0, 0, 0.3);
    z-index: 4;
}
