.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: #32888b;;
}

/* Header container */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 40px;
}

/* Navigation bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1550px;
    position: fixed;
    background-color: white;
    z-index: 1;
}

.nav-right {
    display: flex;
    gap: 10px;
    margin-right: 61px;
    margin-left: 300px;

}

/* 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;
    border-radius: 8px;
    text-decoration:none; background-color: #32888b;;
}

/* Logo styling */
.logo img {
    width: 150px;
    height: 80px;
    margin-left: 43px;
}

/* Centering the logo */
.logo {
    display: flex;
    justify-content: left;
    flex: 1;
}
.content {
max-width: 1000px;
margin: 50px auto;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 10px rgb(0,0,0,0.1);
}
/* Styling for the about-content section */
.about-content {
display: flex;
justify-content: space-between; /* Distribute space between the two sets of h5 elements */
gap: 15px;
}

/* Each h5 item */
.about-content h5 {
margin: 5px 10px;
font-size: 16px;
font-weight: bold;
color: #333;
margin-top: 10px; 
font-size: larger;

}
/* For Left-aligned h5 group */
.about-content .left-group {
width: 50%;
display: flex;
justify-content: flex-start;
gap: 15px;
}


/* For Right-aligned h5 group */    
.about-content .right-group {
width: 50%;
display: flex;
justify-content: flex-end;
gap: 15px;

}

.dropbtn {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
background-color: #32888b;;
}

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: #32888b;}

.dropdown:hover .dropdown-content {
display: block;
}
  



body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image with Overlay Text */
.image-container {
    position: relative;
    width: 100%;
    z-index: -1;
}

.image-container img {
    width: 100%;
    height: 500px;
    opacity: 0.8;
}

.image-container .center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    color: rgb(251, 250, 250);
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    /* background: rgba(255, 255, 255, 0.6); */
    padding: 10px 20px;
    border-radius: 10px;
}



div.polaroid {
    width: 400px;
    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: 460px;
  
  }
  
  /* div.container {
    padding: 10px;
  } */
  
    /* Polaroid Container */
    .polaroid-container {
      display: flex;
      justify-content: center; /* Center align the cards */
      gap: 85px; /* 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: 450px; /* Set a fixed width */
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      border-radius: 10px;
      overflow: hidden;
      height: 600px;
     
  } 
  
  /* Image Styling */
  .polaroid img {
      width: 100%;
      height: 100px;
      /* transition: transform 0.3s ease; */
  
  } 
  
  /* Hover Effect for Polaroid Card */
  .polaroid:hover {
      transform: scale(1.01); /* Slight zoom in effect */
      box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
      
  }
  
  /* Hover Effect for Image */
  .polaroid:hover img {
      transform: scale(1.03); /* 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 */
      }
  }
  
  img{
    width: 100%;
    height: 300px;
  }
  .center{
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  

 

  footer {
    background-color: #32888b;;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.footer-section h3 {
    color: #ecf0f1;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
    text-decoration: underline;
}

.footer-section .social-media ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.footer-section .social-media ul li a:hover {
    transform: scale(1.1);
}

.footer-section .logo {
    width: 150px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-section .logo:hover {
    transform: scale(1.05);
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
}

.newsletter button {
    padding: 10px;
    background-color: #064749; 
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color:  #086265;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #bdc3c7;
  
}
.social-links a:hover {
    transform: scale(1.2);
} 
.social-links {
display: flex; /* Makes icons appear in one line */
gap: 10px; /* Adds space between icons */
align-items: center; /* Aligns icons vertically */
}

.social-links img {
width: 40px; /* Adjust icon size */
height: auto;
transition: transform 0.3s;
}
     /* Button styling */
     #scrollBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color:#81bcbe;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#scrollBtn:hover {
    background-color:#0b5a5d;
}
li a:hover, .dropdown:hover .dropbtn {
background-color:#32888b;
}




