
@font-face {
    font-family: 'MyFont';  
    src: url('asset/fonts/swiss.ttf') format('truetype');  
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont2'; 
    src: url('asset/fonts/ArgentumSans-Regular.otf') format('opentype');  
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont3'; 
    src: url('asset/fonts/ArgentumSans-ExtraLight.otf') format('opentype');  
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont4';  
    src: url('asset/fonts/ArgentumSans-ExtraBold.otf') format('opentype');  
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont5';  
    src: url('asset/fonts/Montserrat-ExtraBold_0.ttf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont6';  
    src: url('asset/fonts/Montserrat-SemiBold.ttf') format('opentype');  
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.navBar {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.logo-img {
    height: 100px;
    padding-left: 40px;
    padding-top: 20px;
}

.nav-container {
    padding-top: 10px;
    padding-right: 150px;
    z-index: 1000;
    position: relative;
    top: 10px;
    right: 0;
    text-align: right;
    align-items: end;
}

.navbar {
    justify-content: right;
    padding-right: 0.25rem;
} 

.navbar-nav {
    display: flex;
    gap: 10px;
    font-family: 'MyFont2', sans-serif;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 1rem;
    padding-right: 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: #e1820e;
}

.navbar-nav .nav-link.active {
    color: #e1820e;
    background-color: transparent;
    font-weight: bold;
}

.navbar-toggler {
    color: transparent;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
}

.what-we-do {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 100px;
    padding-left: 20px;
    margin-left: 20px;
    width: 100%;
    text-align: center;
}
.what-we-do a.active {
    color: #e1820e;
    font-weight: bold;
    transition: color 0.3s ease;
}

.what-we-do ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0; 
    width: 100%;
}

.what-we-do li {
    margin: 0 10px; 
}

.what-we-do a {
    text-decoration: none;
    color: white;
    font-family: 'MyFont2', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}


.what-we-do a:hover {
    color: #e1820e;
}


.videos-section {
    padding-top: 20px; 
    padding-left: 20px;
    width: 100%;
}


.video-row {
    display: flex;
    justify-content: space-evenly;
    gap: 10px; 
    margin-top: 40px;
}


.video-container {
    position: relative;
    width: 30%;
    padding-top: 30%; 
    overflow: hidden;
    border-radius: none;
}


.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
}

.video-container:hover video {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: transparent;
}

.video-container:hover .overlay {
    opacity: 1;
}

.label {
    font-family: 'MyFont3', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px;
    position: absolute;
    top: 10px;
    left: 5px;
    transition: color 0.3s ease;
    opacity: 0; 
}


.video-container:hover .label {
    opacity: 1;
}



.center-video {
    justify-content: center;
}


video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    pointer-events: none; 
}


.video-container video:hover {
    transform: scale(1.05); 
    transition: transform 0.3s ease-in-out;
}















.footer {
    background-color: #000000; 
    color: #ffffff; 
    font-family: 'MyFont2',sans-serif;
    line-height: 1;
}
.logo-img-footer{
    width: 150px;
}
  
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2); /* Optional slight transparency for bottom section */
    color: #b3b3b3;
    font-size: 16px;
    font-family: 'MyFont3',sans-serif;
}
  
.footer a {
    color: #ffffff;
    font-size: 14px;
    font-family: "MyFont3",sans-serif;
    letter-spacing:1px;
}
  
  .footer a:hover {
    color: #ffa500; /* Highlight color on hover */
}
  
  .footer hr {
    background-color: #ffa500; /* Divider line color */
}

.footerp{
    font-size: 14px;
    font-family: "MyFont3",sans-serif;
    letter-spacing:1px;
    line-height: 1.3;
}
.text-uppercase{
    font-size: 16px;
    letter-spacing:1px;
}
.footerSub{
    font-size: 16px;
    font-family: 'MyFont3',sans-serif;
    letter-spacing:1px;
}
.footer-icons i {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}
  
.footer-icons i:hover {
    color: #ffa500; 
    transform: scale(1.1); 
}



@media (max-width: 768px) {
    
    .what-we-do {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
        text-align: center;
        padding-right: 50px;
        line-height: 0%;
    }

    .what-we-do ul {
        flex-direction: column; 
        align-items: center;
    }

    .what-we-do li {
        margin: 15px 0; 
    }

    .what-we-do a {
        font-size: 1.5rem;
    }

   
    .videos-section {
        padding-top: 30px;
        padding-left: 20px;
    }

    .video-row {
        flex-direction: column; 
        gap: 20px; 
        margin-top: 30px;
    }

    .video-container {
        width: 80%;
        padding-top: 56.25%; 
        margin: 0 auto;
    }

    .center-video {
        justify-content: center;
        width: 100%;
    }

    
    .label {
        font-size: 1.2rem;
        padding: 15px;
        letter-spacing: 1px;
    }
}


@media (max-width: 480px) {
    .logo-img {
        height: 80px; 
        padding-left: 20px;
        padding-top: 10px;
    }

    .nav-container {
        padding-right: 1px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem; 
    }

    .what-we-do a {
        font-size: 1.3rem; 
        line-height: -5;
    }

    
    .video-container {
        width: 90%;
        padding-top: 56.25%;
        margin: 0 auto; 
    }

    .footer p,
    .footerp {
        font-size: 12px;
    }

    .footer-icons i {
        font-size: 16px; 
    }
}
