/*FONT FACE*/
/********************************************************************/
@font-face {
    font-family: 'Nexa';
    src: url('ttf/Nexa Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('ttf/Nexa Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('ttf/Nexa Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/*UNIVERSAL SELECTOR*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nexa', sans-serif;
    font-weight: lighter;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/********************************************************************/
html {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
}

/********************************************************************/
*:focus {
    outline: none;
}

/********************************************************************/
/*HIGHLIGHTING PAGE CONTENTS*/
::selection {
    background: black;
    color: #cb9938;
}

/********************************************************************/
::-moz-selection {
    background: var(--red);
    color: var(--white);
}

/********************************************************************/
/*LINKS*/
a {
    text-decoration: none;
    cursor: pointer;
}

/********************************************************************/
/*SCROLLBAR*/
::-webkit-scrollbar {
    width: 2px;
}

/********************************************************************/
/* TRACK */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px black;
    background-color: black;
}

/********************************************************************/
/* HANDLE */
::-webkit-scrollbar-thumb {
    background: #cb9938;
}

/********************************************************************/
/* HANDLE ON HOVER */
::-webkit-scrollbar-thumb:hover {
    background: gray;
}

/********************************************************************/
/*HOMEPAGE LOADER EYE ANIMATION*/

/********************************************************************/
/*NAV*/
.navbar {
    background: black;
    padding: 1rem;
    position: relative;
}

/********************************************************************/
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

/********************************************************************/
.nav-menu a {
    color: #cb9938;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

/********************************************************************/
.nav-menu a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/********************************************************************/
.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

/********************************************************************/
.nav-menu a:hover::after {
    width: 40%;
    left: 50%;
}

/********************************************************************/
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    gap: 6px;
}

/********************************************************************/
.hamburger span {
    width: 30px;
    height: 3px;
    background: #cb9938;
    transition: all 0.3s ease;
}

/********************************************************************/
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/********************************************************************/
.close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #cb9938;
    font-size: 1.5rem;
    cursor: pointer;
}

/********************************************************************/
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1000;
    }

    /********************************************************************/
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: black;
        width: 250px;
        height: 100vh;
        padding-top: 3rem;
        transition: 0.3s;
        z-index: 999;
        justify-content: flex-start;
    }

    /********************************************************************/
    .nav-menu.active {
        left: 0;
    }

    /********************************************************************/
    .nav-menu li {
        margin: 1rem 0;
    }

    /********************************************************************/
    .overlay.active {
        display: block;
    }

    /********************************************************************/
    .close-btn {
        display: block;
    }
}

/********************************************************************/
/*HEADER SECTION*/
.header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-image: url('../Images/Header.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

/********************************************************************/
.header-logo {
    animation: fadeSlideIn 1s ease-out forwards, floatUpDown 1s ease-in-out infinite;
    left: 50%;
}

/********************************************************************/
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/********************************************************************/
.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/********************************************************************/
.header-title {
    font-size: 6rem;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

/********************************************************************/
.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.5s forwards;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.918);
}

/********************************************************************/
.scroll-icon {
    position: absolute;
    color: #cb9938;
    bottom: -50px;
    left: 45%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 1;
    animation: bounce 1.5s infinite ease-in-out, floatUpDown 1s ease-in-out infinite;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.959));
    z-index: 3;
}

/********************************************************************/
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********************************************************************/
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/********************************************************************/
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    /********************************************************************/
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/********************************************************************/
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********************************************************************/
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/********************************************************************/
/*HEADER MOBILE*/
@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }

    /********************************************************************/
    .header-subtitle {
        font-size: 1.2rem;
    }

    /********************************************************************/
    .header-title {
        font-size: 6rem;
        color: rgb(255, 255, 255);
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards;
        text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/*TESTIMONIALS SECTION*/
section.testimonials-section {
    background: linear-gradient(to bottom, #ffffff, #d3d3d3);
    padding: 80px 20px;
}

/********************************************************************/
section.testimonials-section h2,
section.gallery-container h2,
section.gallery-section h2,
section.count-section h2 {
    text-align: center;
    color: #141414;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/********************************************************************/
section.count-section h2 {
    color: #cb9938 !important;
}

/********************************************************************/
section.testimonials-section h2::before,
section.testimonials-section h2::after,
section.gallery-container h2::before,
section.gallery-container h2::after,
section.gallery-section h2::before,
section.gallery-section h2::after,
section.count-section h2::before,
section.count-section h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #141414;
    border-radius: 2px;
    margin: 0 10px;
}

/********************************************************************/
section.count-section h2::before,
section.count-section h2::after {
    background-color: #cb9938 !important;
}

/********************************************************************/
section.gallery-container h2 {
    margin-top: 40px;
}

/********************************************************************/
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/********************************************************************/
.testimonial {
    display: none;
    padding: 40px;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: absolute;
}

/********************************************************************/
.testimonial.active {
    display: block;
    opacity: 0;
    /* Start with 0 opacity */
    position: relative;
    animation: slideAndFade 0.6s ease-out forwards;
}

/********************************************************************/
@keyframes slideAndFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    /********************************************************************/
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/********************************************************************/
.quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #dadada;
    margin-bottom: 20px;
    position: relative;
}

/********************************************************************/
.author {
    font-weight: 600;
    color: #cb9938;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.253);
    background-color: #000000;
    padding: 6px 10px;
    border-radius: 20px;
    display: inline-block;
}

/********************************************************************/
.role {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.9rem;
}

/********************************************************************/
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0e0e0e;
    color: #cb9938;
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    z-index: 2;
}

/********************************************************************/
.nav-button:hover {
    background: #cb9938;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/********************************************************************/
.prev {
    left: 20px;
}

/********************************************************************/
.next {
    right: 20px;
}

/********************************************************************/
.dots-container {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

/********************************************************************/
.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/********************************************************************/
.dot:hover {
    transform: scale(1.2);
}

/********************************************************************/
.dot.active {
    background-color: #cb9938;
}

/********************************************************************/
@media (max-width: 768px) {
    section.testimonials-section {
        padding: 40px 15px;
    }

    /********************************************************************/
    section.testimonials-section h2 {
        font-size: 2rem;
    }

    /********************************************************************/
    .quote {
        font-size: 1rem;
    }

    /********************************************************************/
    .nav-button {
        padding: 8px 12px;
    }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/*MARQUEE*/
/********************************************************************/
.marquee-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000000;
    padding: 20px 0;
}

/********************************************************************/
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

/********************************************************************/
.marquee-item {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    /* Margin between items */
    background: #cb9938;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
}

/********************************************************************/
.marquee-item:last-child,
.marquee-item2:last-child {
    margin-right: 0;
}

/********************************************************************/
.marquee-item2 {
    width: 24px;
    height: 24px;
    margin-top: 40px;
    margin-right: 20px;
    background: #cb9938;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
}

/********************************************************************/
/* MARQUEE ANIMATION */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* GALLERY */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #d3d3d3, #ffffff);
}

/********************************************************************/
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/********************************************************************/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/********************************************************************/
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/********************************************************************/
.gallery-item:hover {
    transform: scale(1.02);
}

/********************************************************************/
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/********************************************************************/
.gallery-item:hover img {
    transform: scale(1.1);
}

/********************************************************************/
.load-more-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 30px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/********************************************************************/
.load-more-btn:hover {
    background: #000000;
    color: #cb9938;
    transform: translateY(-2px);
}

/********************************************************************/
.image-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 50px;
}

/********************************************************************/
.image-viewer.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

/********************************************************************/
.viewer-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

/********************************************************************/
.close-viewer {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/********************************************************************/
.close-viewer:hover {
    color: #cb9938;
}

/********************************************************************/
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/********************************************************************/
.nav-btn:hover {
    background: #cb9938;
}

/********************************************************************/
.prev-btn {
    left: 20px;
}

/********************************************************************/
.next-btn {
    right: 20px;
}

/********************************************************************/
.image-viewer .nav-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
}

/********************************************************************/
.image-viewer .prev {
    left: 20px;
}

/********************************************************************/
.image-viewer .next {
    right: 20px;
}

.image-viewer .nav-button {
    background: rgba(14, 14, 14, 0.8);
}

/********************************************************************/
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /********************************************************************/
    .gallery-section {
        padding: 40px 15px;
    }

    /********************************************************************/
    .viewer-image {
        max-width: 95%;
    }

    /********************************************************************/
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* CLIENTS */
.count-section {
    background-color: black;
    color: #cb9938;
    text-align: center;
    padding: 50px 20px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

/********************************************************************/
.count-number {
    display: block;
    font-size: 50px;
    color: white;
    margin-top: 10px;
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* CONTACT */
.hero-section {
    position: relative;
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/********************************************************************/
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/Contact.gif');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

/********************************************************************/
.hero-text {
    font-size: 3rem;
    color: #cb9938;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/********************************************************************/
.cta-button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #000000;
    color: #cb9938;
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* H2 MEDIA */
@media (max-width: 768px) {

    section.testimonials-section h2,
    section.gallery-container h2,
    section.gallery-section h2,
    section.count-section h2 {
        font-size: 30px;
    }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* BACK TO TOP */
#back-to-top {
    position: fixed;
    bottom: 0px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease;
}

/********************************************************************/
#back-to-top:hover {
    opacity: 0.7;
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* FOOTER */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/********************************************************************/
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/********************************************************************/
.footer-logo {
    max-width: 60px;
    margin-bottom: 10px;
}

/********************************************************************/
.footer-copyright {
    font-size: 14px;
    margin: 0;
}

/********************************************************************/
@media (max-width: 768px) {
    .footer-content {
        padding: 10px;
    }

    /********************************************************************/

    .footer-copyright {
        font-size: 12px;
    }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
