@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;...;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 999;
}

.scrollToTop:hover {
  background-color:#FFD700;
  color: #000;
}

body {
    background-color: #f9f9f9;
}
 
/* Style for header*/

header {
    background-color: #222;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 150px;
}

.logo {
    
    width: 30%;
    height: auto;
}

.navigation a {
   
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    padding: 0.9375em 2.1875em;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-left: 15px; 
    transition: 0.3s ease;    
}

.navigation a:hover {
     color: #1c1c1c;
    background-color: #FFD700;
    transform: scale(1.1);
}

/* Style for Project-section*/
section
{
    padding: 350px 200px;
   
}

.content 
{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    
}

.projects {
        background: linear-gradient(to right, #1c1c1c, #262626);
        

}

.projectname
{
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 44px;
    color: #f9f9f9;
    margin-bottom: 30px;

}

.projects .content
{
    margin-top: 100px;
}

.project-card {
    background-color: #FFD700;
    border: 1px solid #222;
    min-height: 14em;
    width: 100%; 
    max-width: 900px; 
    overflow: hidden;
    border-radius: 10px;
    margin: 15px auto; 
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(255, 215, 0, 0.2),
        0 0 8px rgba(255, 215, 0, 0.15),
        0 0 6px rgba(255, 215, 0, 0.15);
    transition: 0.7s ease;
}


.project-card:hover
{
transform: scale(1.1);
}


.project-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.project-video video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
    background-color: black;
    border: none;
}

.project-info {
padding: 1em;
}

.project-category 
{
    font-size: 0.8em;
    color: #000000;
}

.project-title-text {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1em;
    text-align: center;
}


    
.NaviScroll
{
    scroll-margin-top: 100vh;

}

.project-description {
    margin-top: 12px;
    font-size: 0.95em;
    line-height: 1.4em;
    color: #000;
    text-align: center;
    font-family: 'Open Sans', Arial, sans-serif;

}

 .footer {
    background-color:#222222;
    color: #fff;
    padding: 2em;
    display: flex;
    justify-content: space-between;
}

.footer-title {
    font-size: 1.3em;
    font-weight: 600;
    
}

.footer-title span {
    color:#FFD700;
}

.social-icons a 
{
    color: rgb(255, 255, 255);
    font-size: 1.7em;
    padding-right: 30px;
     display: inline-block;
    align-items: center;
    transition: transform 0.3s ease;

}


.social-icons a i:hover {
    color: #FFD700;
    transform: scale(1.2); 
}

.ProAdv-icon {
    height: 35px;
    width: auto;
    vertical-align: middle;
    margin-right: 0 px;
    margin-left: -15xx;
    margin-bottom: 7px;
    transition: transform 0.3s ease;
    display: inline-flex;
}

.ProAdv-icon:hover {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(77%) sepia(90%) saturate(620%) hue-rotate(1deg) brightness(105%) contrast(101%);
}

.menu-toggle {
    display: none;
    font-size: 2em;
    color: #FFD700;
    cursor: pointer;
}
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
}

/*Responsive page*/

@media (max-width: 1480px) {
    .logo {
    width: 65%;
    height: auto;
}
}

@media (max-width: 1200px) {
    header {
        padding: 20px 40px;
    }

    .menu-toggle {
        display: block;
    }

   .navigation {
        display: none;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        padding: 15px;
        border-bottom: 1px solid #444;
    }
}

    .projectname
    
    {
        margin: 80px;
    }
    .main {
        flex-direction: column;
        padding: 130px 40px;
    }

    .main-content {
        flex-direction: column;
        gap: 30px;
    }

    section {
        padding: 80px 70px;
    }

    
       @media (min-width: 300px) and (max-width: 800px) 
{
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .projectname
    
    {
        display: flex;
        justify-content: center;
        margin: 40px;
        font-size: 30px;
    }
}

 @media (min-width: 0px) and (max-width: 740px) 
{
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .projectname
    
    {
        display: flex;
    justify-content: center;
       margin: 40px 10px;
    }
}
