body{
    height: 100%;
    min-height: 100vh;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    background: #FAF8EE !important;
}

/* Navbar styles */
  .navbar{
   width: 100%;
  max-width: 100%;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar-brand{
    color: #fff;
  }
  .navbar a{
    color: #4e54c8;
  }

 .navbar a:hover{
    text-decoration: underline #4e54c8 !important;
    color: #4e54c8;
    transition: all 0.3s ease;

  }
 


.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 20px auto;
    padding:20px;

}

.card {
    width: 30%; /* 3 ta card ek row-te initially */
    min-width: 250px;
    box-shadow:
    0.3em 0.3em 1em rgba(19, 19, 19, 0.6);
}

.card:hover{
    transform: scale(1.1);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-family: "Qwigley", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: #8f94fb;
}

.card-title{
    font-weight: 800;
}
.btn{
    background-color: #4e54c8;
}


/* Footer section */
  .footer {
    width: 100%;
    max-width: 100%;
    background-color:#fff;
    color: #8f94fb !important;
    padding: 20px 0;
    text-align: center;

    
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content p {
    margin: 0 0 10px;
    font-size: 0.95em;
  }
  
  .footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-icons i {
    color: #8f94fb !important;;
    font-size: 1.3em;
    transition: color 0.3s ease;
  }
  
  .footer-icons i:hover {
    color: #ffd700 !important;
    font-size: 1.4em;
  }

@media (max-width: 768px){
    .card {
        width: 100%; /* 1 ta card ek row-te */
    }
    .projects{
        border-radius: 0%;
        box-shadow: none;
    }
    h1{
        font-size: 50px;
    }
}


/* 📱 Mobile devices (width <= 600px)
@media (max-width: 600px) {
    .card {
        width: 100%; /* 1 ta card ek row-te */
    /* }
    .projects{
        border-radius: 0%;
        box-shadow: none;
    }
    h1{
        font-size: 50px;
    }
} */

/* 📱 Tablets (width between 600px and 900px)
@media (min-width: 601px) and (max-width: 900px) {
    .card {
        width: 45%; /* 2 ta card ek row-te */
    /* }
    .projects{
        border-radius: 0%;
        box-shadow: none;
    }
     h1{
        font-size: 60px;
    }
} */ */

/* 💻 Desktops (width > 900px) */
/* @media (min-width: 901px) {
    .card {
        width: 30%; /* 3 ta card ek row-te */

