@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  background: #8769ac;
}
nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}


nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative  ;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  
  color: #7715fe;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1140px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.space{
  margin: 10px 0;
}
nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.content .space{
  margin: 10px 0;
}

.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: 170px;
  padding: 10px ;
}

.dropdown-menu {
  display: none;
  background: #f6f0ff;
  color: #7489C6;
  border: .5px solid grey ;
  border-radius: 5px;
}


nav label{
  line-height: 85px;
  padding: 0 80px;
  font-size: 50px;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
}
nav span{
  color: red;
}
/* nav{
  background: #f6f0ff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 100px;



  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid silver;
}
nav .logo{
  color: #b383ff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}
nav .nav-items{
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}




nav .nav-items li{
  list-style: none;
  padding: 0 15px;
  position: relative;
}
nav .nav-items li a{
  color: #471e7c;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
nav .nav-items li a:hover{
  color: #7715fe;
}
nav form{
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18%!important;
  border-radius: 2px;
  border: 1px solid rgba(155,155,155,0.2);
}
nav form .search-data{
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}
nav form button{
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #471e7c;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
nav form button:hover{
  background: #7715fe;
}
nav .menu-icon,
nav .cancel-icon,
nav .search-icon{
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
}
nav .menu-icon span,
nav .cancel-icon,
nav .search-icon{
  display: none;
}
@media (max-width: 1245px) {
  nav{
    padding: 0 50px;
  }
}
@media (max-width: 1440px){
  nav{
    padding: 0px;
  }
  nav .logo{
    flex: 2;
    text-align: center;
  }
  nav .nav-items{
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 100%;
    left: -100%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
  }
  nav .nav-items.active{
    left: 0px;
  }
  nav .nav-items li{
    line-height: 40px;
    margin: 30px 0;
  }
  nav .nav-items li a{
    font-size: 20px;
  }
  nav form{
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }
  nav form.active{
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }
  nav form:before{
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }
  nav form:after{
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  nav .menu-icon{
    display: block;
  }
  nav .search-icon,
  nav .menu-icon span{
    display: block;
  }
  nav .menu-icon span.hide,
  nav .search-icon.hide{
    display: none;
  }
  nav .cancel-icon.show{
    display: block;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.space{
  margin: 10px 0;
}
nav .logo.space{
  color: red;
  padding: 0 5px 0 0;
}
@media (max-width: 980px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 20px;
  }
  nav form{
    right: 30px;
  }
}
@media (max-width: 350px){
  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon{
    margin: 0 10px;
    font-size: 16px;
  }
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}
.content .space{
  margin: 10px 0;
}

.nav-items li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0px;
  top: 100%;
  
}

.nav-items li:hover .dropdown-menu ul {
  display: block !important;
  margin: 20px 10px ;
  padding: 0 !important;
  text-align: center;
}

.dropdown-menu ul li {
  width: fit-content;
  padding: 10px ;
}


@media only screen and (max-width: 320px)
{
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
}

@media only screen and (max-width: 375px){
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
}


@media only screen and (max-width: 425px){
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
}

@media only screen and (max-width: 768px) {
  .dropdown-menu ul li {
    width: fit-content;
  padding: 0px 80px ;
  }

  .dropdown-menu{
    position: absolute;
    left: 300px;
  }

  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 150px;
    top: 100%;
    
  }
}
@media only screen and (max-width: 1024px)
{
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 361px;
    top: 100%;
    
  }

}



@media only screen and (max-width: 1440px)
{
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 570px;
    top: 100%;
    
  }

}

/* 320px and below */
@media (max-width: 320px) {
    .nav-items li:hover .dropdown-menu {
      display: block;
      position: absolute;
      left: 1px;
      top: 100%;
      
    }
}

/* 321px to 375px */
@media (min-width: 321px) and (max-width: 375px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 1px;
    top: 100%;
    
  }
}

/* 376px to 425px */
@media (min-width: 376px) and (max-width: 425px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 1px;
    top: 100%;
    
  }
}

/* 426px to 768px */
@media (min-width: 426px) and (max-width: 768px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 165px;
    top: 100%;
    
  }
}

/* 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 358px;
    top: 100%;
    
  }
}

/* 1025px to 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .nav-items li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 0px;
    top: 100%;
    
  }
}



.dropdown-menu {
  display: none;
}




nav span {
  color: #471e7c;
} */

#preloader {
  background: #1C273A url(media/ld.gif) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  background-size: 18%;
}
.dummy {
  display: none;
}
.wrapper {
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #4070f4;
  font-size: 32px;
}
header h2 {
  color: #4070f4;
  font-weight: 500;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #4070f4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #034bf1;
}
#declineBtn {
  border: 2px solid #4070f4;
  background-color: #fff;
  color: #4070f4;
}
#declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}














































   












.ri1 {
    width: 100%;
    margin: 0 auto;
    
}

.ci2 img {
    height: 500px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.ci1 p {
    color: #f6f0ff;
    width: auto;
    display: block;
    margin-left: 0 ;
    margin-right: auto;
    
}



 .hero-section {
     height: 900px !important;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    padding: 0 20px;
    align-items: center;
    background-image: url(media/hb1.jpg) !important;
    padding-top: 150px !important;
 }


  .hero-section .content {
    max-width: 1280px;
    margin: 0 auto 40px;
    width: 100%;
  }
  .hero-section .content h1 {
    color: #f6f0ff;
    font-size: 3rem;
    max-width: 630px;
    text-align: left;
  }
  .hero-section .search-form {
    height: 48px;
    display: flex;
    max-width: 630px;
    margin-top: 30px;
  }
  .hero-section .search-form input {
    height: 100%;
    width: 70%;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 1rem;
    border-radius: 4px 0 0 4px;
  }
  .hero-section .search-form button {
    height: 100%;
    width: 30% !important;
    border: none;
    outline: none;
    cursor: pointer;
    background: #471e7c !important;
    color: #f6f0ff;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s ease;
    padding: 5px;
    
  }
  .hero-section .search-form button:hover {
    background: #1a0e35 !important;
  }
  .hero-section .popular-tags {
    display: flex;
    color: #fff;
    gap: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 25px;
  }
  .hero-section .popular-tags .tags {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
  }

  .hero-section p 
  {
    width: 50%;
    text-align: left;
  }
  .hero-section .tags li a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px 12px;
    border-radius: 50px;
    transition: 0.2s ease;
  }
  .hero-section .tags li a:hover {
    color: #000;
    background: #fff;
  }
  .navbar #hamburger-btn {
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 1.7rem;
  }
  .navbar #close-menu-btn {
    position: absolute;
    display: none;
    color: #000;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.7rem;
  }
  @media screen and (max-width: 900px) {


    .hero-section {
      background: none;
      width: 100% !important;
    }

    .content {
      padding: 0px 2rem;
    }
 
    .hero-section .content {
      margin: 0 auto 80px;
    }
    .hero-section .content :is(h1, .search-form) {
      max-width: 100%;
    }
    .hero-section .content h1 {
      text-align: center;
      font-size: 2.5rem;
      line-height: 55px;
    }

    .hero-section .content p {
      text-align: center !important;
      font-size: 1.5rem;
      margin: 0 auto;
      min-width: 80% !important;
    }
    .hero-section .search-form {
      display: block;
      margin-top: 20px;
    }
    .hero-section .search-form input {
      border-radius: 4px;
    }
    
    .hero-section .search-form button {
      margin-top: 10px;
      border-radius: 4px;
      width: 100%;
    }
    .hero-section .popular-tags {
      display: none;
    }
  }

  @media screen and (min-width:900px) and (max-width: 1370px) {
  .content {
    padding-left: 2rem;
    text-align: center !important;
    margin: 0 auto;
  }



  .hero-section {
    background: none !important;
    width: 100% !important;
  }
  .hero-section .content h1 {
    text-align: center !important;
    font-size: 2.5rem;
    line-height: 55px;
    margin: 0 auto;
    min-width: 80% !important;
  }

  .hero-section .content p{
    text-align: center !important;
    margin: 0 auto;
    margin-top: 30px;
    min-width: 80% !important;
  }

  .hero-section .content form {
    text-align: center !important;
    margin: 0 auto;
    min-width: 80% !important;
    margin-top: 30px;
  }
  }


















  .card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1250px;
    margin: 150px auto;
    margin-top: 50px !important;
    padding: 20px;
    gap: 20px;
}
.card-list .card-item {
    background: #fff;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}
.card-list .card-item:hover {
    border: 2px solid #000;
}
.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}
.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}
.card-list .developer {
    background-color: #F7DFF5; 
    color: #B22485;
}   
.card-list .designer {
    background-color: #d1e8ff;
    color: #2968a8;
}
.card-list .editor {
    background-color: #d6f8d6; 
    color: #205c20;
}
.card-item h3 {
    color: #000;
    font-size: 1.438rem;
    margin-top: 28px;
    font-weight: 600;
}
.card-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
    height: 40px;
    width: 40px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}
.card-list .card-item:hover .arrow  {
    background: #000;
    color: #fff; 
}
@media (max-width: 1200px) {
    .card-list .card-item {
        padding: 15px;
    }
}
@media screen and (max-width: 980px) {
    .card-list {
        margin: 0 auto;
    }
}
.n1 {
  margin: 0 auto;
  color: #f6f0ff;
  text-align: center;
  padding: 20px 20px 40px 20px;
}

.n1 button {
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none !important;
  color: #f6f0ff;
  border: none;
}

.n1 button a {
  text-decoration: none !important; 
  color: black;
  font-weight: 500;
}

.n1 button:hover {
  background: #471e7c;
  color: #f6f0ff !important;
}

.n1 button:hover a {
  color: #f6f0ff !important;
}












































   












.hero-section {
  height: 100vh;
  background-image: url("media/hh.png");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  padding: 0 20px;
  align-items: center;
}
.hero-section .content {
  max-width: 1280px;
  margin: 0 auto 40px;
  width: 100%;
}
.hero-section .content h1 {
  color: #f6f0ff;
  font-size: 3rem;
  max-width: 630px;
  text-align: left;
}

.hero-section .content p {
  color: #f6f0ff;
  font-size: 1rem;
  max-width: 630px;
  text-align: left;
}

.hero-section .search-form {
  height: 48px;
  display: flex;
  max-width: 630px;
  margin-top: 30px;
}
.hero-section .search-form input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 15px;
  font-size: 1rem;
  border-radius: 4px 0 0 4px;
}
.hero-section .search-form button {
  height: 100%;
  width: 60px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #1dbf73;
  color: #fff;
  border-radius: 0 4px 4px 0;
  transition: background 0.2s ease;
}
.hero-section .search-form button:hover {
  background: #19a463;
}
.hero-section .popular-tags {
  display: flex;
  color: #fff;
  gap: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 25px;
}
.hero-section .popular-tags .tags {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}
.hero-section .tags li a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 4px 12px;
  border-radius: 50px;
  transition: 0.2s ease;
}
.hero-section .tags li a:hover {
  color: #000;
  background: #fff;
}
.navbar #hamburger-btn {
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 1.7rem;
}
.navbar #close-menu-btn {
  position: absolute;
  display: none;
  color: #000;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 1.7rem;
}
@media screen and (max-width: 900px) {
  header.show-mobile-menu::before {
    content: "";
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    backdrop-filter: blur(5px);
  }
  .navbar .menu-links {
    height: 100vh;
    max-width: 300px;
    width: 100%;
    background: #fff;
    position: fixed;
    left: -300px;
    top: 0;
    display: block;
    padding: 75px 40px 0;
    transition: left 0.2s ease;
  }
  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }
  .navbar .menu-links li {
    margin-bottom: 30px;
  }
  .navbar .menu-links li a {
    color: #000;
    font-size: 1.1rem;
  }
  .navbar .menu-links .join-btn a {
    padding: 0;
  }
  .navbar .menu-links .join-btn a:hover {
    color: #1dbf73;
    background: none;
  }
  .navbar :is(#close-menu-btn, #hamburger-btn) {
    display: block;
  }
  .hero-section {
    background: none;
  }
  .hero-section .content {
    margin: 0 auto 80px;
  }
  .hero-section .content :is(h1, .search-form) {
    max-width: 100%;
  }
  .hero-section .content h1 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 55px;
  }
  .hero-section .search-form {
    display: block;
    margin-top: 20px;
  }
  .hero-section .search-form input {
    border-radius: 4px;
  }
  
  .hero-section .search-form button {
    margin-top: 10px;
    border-radius: 4px;
    width: 100%;
  }
  .hero-section .popular-tags {
    display: none;
  }
}



















  .card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1250px;
    margin: 150px auto;
    padding: 20px;
    gap: 20px;
}
.card-list .card-item {
    background: #fff;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}
.card-list .card-item:hover {
    border: 2px solid #000;
}
.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}
.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}
.card-list .developer {
    background-color: #F7DFF5; 
    color: #B22485;
}   
.card-list .designer {
    background-color: #d1e8ff;
    color: #2968a8;
}
.card-list .editor {
    background-color: #d6f8d6; 
    color: #205c20;
}
.card-item h3 {
    color: #000;
    font-size: 1.438rem;
    margin-top: 28px;
    font-weight: 600;
}
.card-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
    height: 40px;
    width: 40px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}
.card-list .card-item:hover .arrow  {
    background: #000;
    color: #fff; 
}
@media (max-width: 1200px) {
    .card-list .card-item {
        padding: 15px;
    }
}
@media screen and (max-width: 980px) {
    .card-list {
        margin: 0 auto;
    }
}




































.footer {
    background: #10182F;
    border-radius: 6px;
  }
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 60px;
  }
  .footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer-col .links {
    margin-top: 20px;
    padding-left: 0 !important;
  }
  .footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
  }
  .footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
  }
  .footer-col .links li a:hover {
    color: #fff;
  }
  .footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
  }
  .footer-col form {
    display: flex;
    gap: 5px;
  }
  .footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6 ;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
  }
  .footer-col input::placeholder {
    color: #ccc;
  }
   .footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
  }
  .footer-col form button:hover {
    background: #cecccc;
  }
  .footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
  }
  .footer-col .icons i {
    color: #afb6c7;
  }
  .footer-col .icons i:hover  {
    color: #fff;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
    .footer .footer-row {
      padding: 20px;
      gap: 1rem;
    }
    .footer-col form {
      display: block;
    }
    .footer-col form :where(input, button) {
      width: 100%;
    }
  }
  .footer-row .footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
  }