div.polaroid {
    width: 250px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    height: 465px;
  }
  
  div.container {
    padding: 10px;
  }
  
    /* Polaroid Container */
    .polaroid-container {
      display: flex;
      justify-content: center; /* Center align the cards */
      gap: 100px; /* Space between cards */
      flex-wrap: wrap; /* Wrap cards to the next line if screen is too small */
      padding: 20px;
      
      
  }

  /* Polaroid Card Styling */
  .polaroid {
      background: white;
      width: 250px; /* Set a fixed width */
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for smooth animation */
  
  }

  /* Image Styling */
  .polaroid img {
      width: 100%;
      height: auto;
      border-bottom: 2px solid #ddd;
      transition: transform 0.3s ease; /* Smooth zoom effect on hover */
  }

  /* Text Container */
  .container {
      padding: 10px;
      font-size: 20px;
      font-weight: bold;
      color: #333;
      margin-top: 250px;
  }

  /* Hover Effect for Polaroid Card */
  .polaroid:hover {
      transform: scale(1.02); 
      box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.4); 
    
  }

  /* Hover Effect for Image */
  .polaroid:hover img {
      transform: scale(1.0); /* Zoom effect on the image */
    }

  /* Responsive Design */
  @media (max-width: 1024px) {
      .polaroid-container {
          justify-content: space-evenly; /* Adjust card spacing */
      }
  }

  @media (max-width: 768px) {
      .polaroid-container {
          justify-content: center;
      }
      .polaroid {
          width: 200px; /* Adjust card width for smaller screens */
      }
  }

  @media (max-width: 480px) {
      .polaroid-container {
          flex-direction: column; /* Stack cards vertically on very small screens */
          align-items: center;
      }
      .polaroid {
          width: 90%; /* Full width for cards on small screens */
      }
  }
  

     body {
      margin: 0;
      padding: 0;
  }

  /* Container for the content */
  .content-container {
      display: flex;
      justify-content: space-between; /* Aligns the paragraph and image on opposite sides */
      align-items: flex-start; /* Aligns them to the top */
      margin: 20px;
      width: 100px;
  }

img{
    float: left;
   height: 350px;
   width: 350px;
   margin-right:20px;

  
  }

/* Styling for the about-content section */
.about-content {
    display: flex;
    justify-content: space-between; /* Distribute space between the two sets of h5 elements */
    gap: 10px;
}


.navbar a {
  text-decoration: none;
  color: black;
  font-size: larger;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

/* Hover effect */
.navbar a:hover {
  color:white;
  /* border-radius: 8px; */
  text-decoration:none; background-color:#ae312f;
}




      /* Header container */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 40px;
}

/* Nav links styling */
.navbar a {
  text-decoration: none;
  color: black;
  font-size: larger;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

/* Hover effect */
.navbar a:hover {
  color:white;
  text-decoration:none; background-color: #ae312f;
}
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
   }

li a:hover, .dropdown:hover .dropbtn {
  background-color: #ae312f;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 9px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  
}

.dropdown-content a:hover {background-color: #ae312f;}

.dropdown:hover .dropdown-content {
  display: block;
}