
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
}


@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 109999900;
    padding: 10px 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.5s ease-in-out, background-color 0.3s ease;
}

.navbar.hidden {
    top: -100px; 
    transition: top 0.5s ease-in-out;
}

.logo img {
    height: 80px;
    margin: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #FFD700; 
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease, transform 0.3s ease, border-bottom 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #FFD700; 
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}


.nav-links li a:hover::before {
    visibility: visible;
    width: 100%;
}

.nav-links li a:hover {
    color: #FFD700; 
    transform: scale(1.05); 
    text-decoration: none;
}

.nav-links li a.active {
    color: #FFD700; 
    font-weight: bold;
}

.nav-links li a.active::before {
    visibility: visible;
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: #FFD700; 
    cursor: pointer;
    transition: transform 0.3s ease; 
}

.hamburger.active i {
    transform: rotate(90deg); 
    transition: transform 0.5s ease;
}


@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #000000;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        display: none;
        border-radius: 0 0 10px 10px;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .navbar.active .nav-links {
        display: flex;
        opacity: 1; 
        transform: translateY(0);
    }

    .hamburger {
        display: block;
    }
}

/* Footer Starting */
.footer {
    background: #000; 
    color: #fff; 
    padding: 20px 10px; 
    position: relative;
    font-family: 'Roboto', sans-serif; 
    overflow: hidden; 
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    align-items: flex-start;
    justify-content: space-around;
}

.footer-logo {
    flex: 1;
    max-width: 180px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 80px;
    height: auto; 
}

.footer-desc {
    flex: 2;
    max-width: 186px;
    margin-top: 5px;
}

.footer-desc p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
    width: 320px;
}

.footer-heading {
    font-size: 1.5rem; 
    margin-bottom: 15px;
    position: relative;
    color: #fff;  
}

.footer-heading::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d4af37;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37; 
}

.footer-newsletter {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.footer-newsletter input {
    width: calc(100% - 20px);
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #d4af37; 
    color: #000; 
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #f0c14b; 
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc; 
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-desc p {
        margin: 0;
        font-size: 0.85rem;
        line-height: 1.4;
        color: #ccc;
        width: auto;
    }
    
    .footer-logo, .footer-desc, .footer-newsletter {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin-left: 0; 
    }

    .footer-newsletter input {
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 1.2rem; 
    }

    .footer-desc p {
        font-size: 0.8rem; 
    }
}
/* Footer Ending */

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
    backdrop-filter: blur(12px); 
    transition: opacity 0.5s ease-in-out; 
}

/* Spinner  */
.spinner {
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid gold;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 470px;
    z-index: 99999999999;
    left: 713px;
    opacity: 1;
}

/* Spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body.no-scroll {
    overflow: hidden;
}

.merriweather-light {
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .merriweather-regular {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .merriweather-bold {
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .merriweather-black {
    font-family: "Merriweather", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .merriweather-light-italic {
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .merriweather-regular-italic {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .merriweather-bold-italic {
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .merriweather-black-italic {
    font-family: "Merriweather", serif;
    font-weight: 900;
    font-style: italic;
  }
  
.montserrat-bold> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  

  /* Social Links  */
.social-links {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
}


.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: black; 
    color: white;
    text-decoration: none;
    padding: 10px;
    width: 50px; 
    height: 50px;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 0 10px 10px 0;
    border: 2px solid #FFD700; 
    overflow: hidden; 
    position: relative;
}

.social-icon i {
    font-size: 24px;
    color: #FFD700; 
    transition: transform 0.3s ease;
    position: relative; 
    z-index: 1; 
}

.social-icon span {
    white-space: nowrap;
    opacity: 0; 
    margin-left: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1; 
    color: #FFD700; 
}


.social-icon:hover {
    width: 250px;
}

.social-icon:hover span {
    opacity: 1; 
    transform: translateX(0); 
}

.social-icon:hover i {
    transform: scale(1.1); 
}


.twitter {
    background-color: black;
}

.youtube {
    background-color: black;
}

.linkedin {
    background-color: black;
}


.social-icon:hover {
    overflow: visible; 
}


@media (max-width: 768px) {
    .social-icon {
        width: 50px;
        height: 50px;
    }

}
#button {
    display: inline-block;
    background-color: #ffd700;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1999000;
  }
  #button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  #button:hover {
    cursor: pointer;
    background-color: #333;
  }
  #button:active {
    background-color: #555;
  }
  #button.show {
    opacity: 1;
    visibility: visible;
  }
  
  
  
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


