* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }

  .hero {
    background-color: #511545;
    padding: 80px 40px; /* Adjusted padding instead of fixed height */
    text-align: center;
    color: #FBDBDE;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 700;
  }
  
  .hero h1 span {
    color: #00e6e6;
  }
  
  .hero p {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #FBDBDE;
  }
  
  
  .services {
    padding: 20px 20px;
    text-align: center;
    justify-content: center;
  }

  
  .cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    background: #511545;
    padding: 15px;
    border-radius: 10px;
    width: 355px;
    height: 370px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    color: white;
    
  }
  
  .card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .card h3 {
    margin-top: 10px;
    font-size: 18px;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }

  
  
  .contact {
    background: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
  }

  
  /* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #DFCAC3;
    padding: 15px 30px;
    color: black;
    position: sticky;
    top: 0;
    z-index: 999;
    height: 65px;
  }
  
  .logo img{
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1;
    width: 150px;
    position: relative;
    top: 4px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #CD5E78;
    border-bottom: 2px solid #00b4d8;
  }
  
  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 20px;
    
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide img {
    width: 100%;
    max-width: 800px;
    height: 500px;
    flex-shrink: 0;
  }
  
  .prev,
  .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }

  .carousel-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 1px;
  }
  

  .modal-image {
    max-width: 350px;
    max-height: 300px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
  }


@media(min-width:1000px){
  .bars{
    display: none;
  }
}


  @media(max-width:600px){
    body{
      padding: 0;
      overflow-x: hidden;
  }

  #entryModal{
    position: fixed;
    display: none;
    z-index: 1000;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.5);
    display:flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    transform: translate(-50%, -50%);
    overflow: auto;
  }

  #box{
    background: #fff;
      padding: 2rem;
      width: 320px;
      max-width: 320px;
      height: 400px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      animation: slideIn 0.3s ease;
      position: relative;
      overflow-y: hidden;
  }

  .modal-image {
    max-width: 200px;
    max-height: 100px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
  }

  #image-logo{
    float: left;
    position: relative;
    right: 60px;
  }

  #links{
    display: none;
  }

  .bars{
    width: 40px;
    height: 40px;
    position: relative;
    left: 10px;
    align-items: center;
    justify-content: center;

  }

    #dots{
      position: relative;
      left: 5px;
      top: 3px;
    }

    #links{
      background-color: white;
      position: absolute;
      top: 80px;
      right: 20px;
      float: right;
      max-width: 220px;
      width: 220px;
      height: 200px;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 50px;
      
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    #serve{
      padding-top: 10px;
      position: relative;
      bottom: 25px;
    }

    #career{
      text-align: center;
      justify-content: center;
      align-items: center;
    }

    #foot{
      position: relative;
      top: 30px;
    }
}




  