.navbar{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-image: linear-gradient(to right, #e6a3a4 0%, #8d1416 30%, #2e3f8b 50%, #033fbb 100%);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;

}
.navbar_container{
  display:flex;
 
  justify-content:space-between;
  height:80px;
  z-index:1;
  width:100%;
  max-width: 1300px;
  margin:0 ;
  padding: 0 0px;
}
#navbar__logo{
  background-color:rgb(245, 246, 248) ;
  background-image:linear-gradient(to top, rgb(232, 235, 239) 0%,rgb(243, 245, 247) 100%);
  background-size:100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color:transparent ;
  -moz-text-fill-color:transparent;
  display:flex;
  align-items: center;
  cursor:pointer;
  text-decoration: none;
  font-size:2rem;
  margin-left:-90px;
}

.fa-gem{
 
  width:100px;
  height:auto;
 
  
}
.navbar__menu{
  display:flex;
  align-items:center;
  list-style:none;
  text-align:center;
}
.navbar__item{
  height:80px;

}
.navbar__links{
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:0 1rem;
  height:100%;

}
.navbar__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:0.5rem;
  margin-top:1.3rem;
  padding:0;
  width:auto;
  margin-right:-70px;
  
}
.button{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding: 10px 20px;
  height:100%;
  width: 100%;
  border:none;
  outline:none;
  border-radius:4px;
  background-image:linear-gradient(to top,#8d1416 0%,#f9b0b1 100%);
  color:white;
  gap:8px;
}
.button:hover{
  background:#8d1416;
  transition:all 0.3s ease;
}
.navbar__links:hover{
  color:skyblue;
  transition: all 0.3s ease;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 80px; 
  left: 0;
  background-color: rgba(18, 17, 17, 0.95);
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1000;
  text-align: left;
  overflow: hidden;
}

.dropdown-content a {
  color: rgb(252, 248, 248);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f88c8e;
}


.dropdown:hover .dropdown-content {
  display: block;
}


.navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background: white;
}

@media screen and (max-width:960px){
  .navbar_container{
    display:flex;
    justify-content: space-between;
    height:80px;
    z-index:1;
    width:100%;
    max-width:1300px;
    margin: 0;
    padding:0;
  }
  .navbar__menu{
    display:grid;
    grid-template-columns:auto;
    margin:0;
    width:100%;
    position:absolute;
    top:-1000px;
    opacity:0;
    transition:all 0.5s ease;
    height:50vh;
    z-index:-1;
    
  }
  .navbar__menu.active{
    background:black;
    top:100%;
    opacity:1;
    transition: all 0.5s ease;
    z-index:99;
    height:70vh;
    font-size:1.6rem;
  }
  #navbar__logo{
    padding-left:90px;
  }
  .navbar__item{
    width:100%;

  }
  .navbar__links{
    text-align:center;
    padding:2rem;
    width:100%;
    display:table;
  }
  .navbar__toggle {
    display: flex;
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }
  .navbar__btn{
    padding-bottom: 2rem;
  }
  .button{
    display:flex;
    justify-content: center;
    align-items:center;
    font-size: 1.5rem;
    width:80%;
    height:80px;
    margin:0;
    gap: 8px;

  }

  .button .fas  {
    margin-right: 80px; 
}

  
  .dropdown-toggle {
  color: white;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
  display: none; 
  z-index: 1000;
}

.dropdown-toggle:hover {
  color: skyblue;
}

.dropdown-toggle.rotated {
  transform: rotate(180deg);
}


@media screen and (max-width: 960px) {
  .dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
  }
  
  .dropdown .navbar__links {
    padding: 2rem 0;
    width: auto;
    flex-grow: 1;
    text-align: left;
  }
  
  .dropdown-toggle {
    display: inline-block;
    padding: 2rem 0;
    margin-left: auto;
  }
  
  .dropdown-content {
    position: static;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-content a {
    color: rgb(200, 200, 200);
    padding: 1rem 2rem;
    padding-left: 3rem; 
    font-size: 0.9rem;
  }

  .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}


  
  
  .navbar__toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar__toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar__toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 1rem 1rem;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}

.footer-left,
.footer-right {
  /* padding-top: 1rem; */
  position: absolute;
  top: 1rem;
}

.footer-left {
  left: 1rem;
  display: flex;

}

.footer-right {
  right: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-right a,
.footer-left p {
  color: #f0f0f0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.footer-right a:hover {
  color: #00bfff;
}

.icon {
  width: 18px;
  height: 18px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer-center a {
  font-weight: 500;
  color: #f0f0f0;
  text-decoration: none;
}

.footer-center a:hover {
  color: #00bfff;
}

.footer-center p {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 0;
}


@media (max-width: 768px) {
  .footer-left,
  .footer-right {
    position: static;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  

  .footer-container {
    padding: 1rem;
  }

  .footer-right {
    flex-direction: column;
  }
}