* {
  text-decoration: none;
}


.meta-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 4% 0px 4%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
}
.meta-header.scrolled {
    background: linear-gradient(
        135deg, 
        rgb(0, 0, 0),rgb(0, 0, 0)
    );
}

.meta-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.meta-header::after {
    content: none;
    position: absolute;
    top: 0;
    left: -100;
    width: 100%;
    height: 100%;
}

.meta-header:hover::after { left: 100%;}

.meta-logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-family: Arial; 
    font-size: 20px;
    letter-spacing: 3px;
}

.meta-logo img { width: 75px; padding: 10px;}

.meta-navbar a {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}

#check {display: none;}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/*under the active one*/
.meta-navbar a.active {
    position: relative;
    padding: 10px;
    text-decoration: none;
}

.meta-navbar a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust the distance from the text */
    width: 100%;
    height: 4px; /* Adjust the thickness of the underline */
    background: linear-gradient(
      135deg, 
      rgb(235, 165, 165), 
      rgb(136, 47, 180), 
      rgb(84, 90, 89)
    );
    background-size: 400%;
    animation: my-animation 5s infinite alternate;
}
  
  @keyframes my-animation {
    from {
      background-position: 0%;
    }
    to {
      background-position: 100%;
    }
  }

/*end under the active one*/


@media (max-width: 990px) {
    .meta-header {
        padding: 0.8rem 3%; /*0.8rem top and bottom, 4% for left and right*/
    }
}
@media (max-width: 940px) {
    .meta-logo { font-size: 18px; letter-spacing: 2px; }    
}
@media (max-width: 950px) {
    .meta-header { background-color: black; }
    .meta-logo img { width: 50px;  }
    .icons { display: inline-flex; }
    #check:checked~.icons #menu-icon{ display: none; }
    .icons #close-icon { display: none; }
    #check:checked~.icons #close-icon{ display: block; }

    .meta-navbar a::after {
        content: ''; 
        position: absolute; 
        left: 10%; /* Center the underline */
        bottom: -10px; 
        width: 80%; 
        height: 1px; 
        background-color: #fff; 
    }
    
    .meta-navbar a.active::after { /* for acive nav*/
        left: 10%; 
        bottom: -2px;
        width: 80%; 
        height: 1px; 
        background: linear-gradient(
          135deg, 
          rgb(255, 255, 255),
          rgb(255, 255, 255), 
          rgb(255, 255, 255) 
        );
    }
    .meta-navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgb(0, 0, 0);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.meta-navbar {
        height: 800px;
    }

    .meta-navbar a {
        display: block;
        font-size: 22px;
        margin: 2rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }
    #check:checked~.meta-navbar a{
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s * var(--i));
    }
}

@media screen and (max-width: 430px){
    .meta-logo {font-size: 18px; }
}
@media screen and (max-width: 400px){
    .meta-logo { font-size: 16px;}
}
@media screen and (max-width: 340px){
    .meta-logo { font-size: 15px; }
}
@media screen and (max-width: 320px){
    .meta-logo { font-size: 12px; }
}

@media screen and (max-width: 300px){
    .meta-logo { font-size: 10px; }
}
















/*Footer*/
/* Footer styling */
.footer {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #333;
    color: #fff;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin-right: 20px;
}

/*first column*/
.footer-column:first-child {
    order: 1;
    padding: 20px;
    margin-top: 20px;
    text-align: justify;
}
.footer-column:first-child h4 {
    font-size: 18px;
}
.footer-column:first-child p {
    text-indent: 30px;
    font-size: 12px;
    line-height: 1.5;
}
.f1-additional-content .social-icons {
    margin-top: 10px; /* Adjust the margin as needed */
}
.f1-additional-content .social-icons a {
    display: inline-block;
    margin-right: 10px; /* Adjust the spacing between icons */
    color: #fff;
    font-size: 20px;
}
.f1-additional-content .social-icons a:hover {
    color: #00f; /* Change the color on hover as needed */
}

.f1-additional-content .social-icons a i {
    font-size: 30px; /* Adjust the size as needed */
}


/*Second column*/

.footer-column:nth-child(2) {
    order: 2;
    margin-left: 20px; /* Adjust the margin-left as needed */
    flex: 2; /* Set the second column to 50% width */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
}
.footerlogo img {
    max-width: 175px;
    height: auto;
}

.footer-navigator {
    text-align: center;
}

.footer-navigator ul {
    list-style: none;
    padding: 0;
}

.footer-navigator ul li {
    display: inline;
    margin: 0 10px;
}

.footer-navigator a {
    text-decoration: none;
    color: #fff;
}

.copyright{
    margin-top: 20px;
    font-size: 14px;
}

/* Third column */
.footer-column:nth-child(3) {
    order: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.footer-column:nth-child(3) p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

.footer-column:nth-child(3) p i {
    margin-right: 10px;
    font-size: 24px;
}

.footer-column:nth-child(3) p:last-child {
    margin-bottom: 0; /* Remove bottom margin for the last paragraph */
}


/* Responsive styling for small screens */
@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
    }

    .footer-column {
        margin-right: 0;
        margin-bottom: 20px;
        align-items: center; /* Center the contents horizontally */
    }
    .footer-column:first-child {
        order: 1;
        text-align: center;
    }
    
    .footer-column:nth-child(2) {
        order: 3;
    }
    
    .footer-column:nth-child(3) {
        order: 2;
    }
}