/* Top Banner Styles */
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .textbg {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 2rem; /* Reduced padding (1rem for top/bottom, 2rem for left/right) */
    background: rgba(113, 113, 113, 0.2); /* semi-transparent white */
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    color: rgb(255, 255, 255);
    text-align: center;
    max-width: 80%;
    overflow: hidden; /* Prevent content from spilling over */
  }
  
  .banner-text {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0;
  }
  
  .banner-subtext {
    font-weight: normal;
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }

  .contact-info-section {
    padding: 60px 40px;
  }
  
  .contact-header {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: left;
    color: #167400;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }
  
  .contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 0px 18px rgba(0, 186, 9, 0.87);
  }
  
  .contact-details {
    flex: 1;
    display: flex;  
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .icon {
    width: 32px;
    height: 32px;
    margin-top: 4px;
    cursor: pointer;
    transition: 0.3s ease;
  }
/* Glow effect on hover */  
.icon:hover {
    filter: drop-shadow(10px 10px 0px rgba(0, 190, 9, 0.712));    
    transform: scale(1.05);
    animation: float 2s ease-in-out infinite;
}

  .contact-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    color:#167400;
  }
  
  .contact-description {
    color: #666;
    font-size: 1rem;
    margin-top: 4px;
  }

  .contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
  }

  .highlight-section {
    background-color: #f7ffbb; /* Peach color */
    padding: 20px;
    padding-bottom: 60px;
    text-align: center;
  }
  
  .highlight-header {
    font-size: 2.2rem;
    margin-bottom: 30px; /* Slightly reduced spacing */
    font-weight: bold;
    color: rgb(0, 0, 0);
  }
  
  .highlight-image img {
    width: 100%;
    max-width: 1300px;
    height: 750px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  
  /* Simple Banner Section - Bottom Banner */
  .simple-banner {
    background-image: url('/Pictures/bannerbackground.jpg'); /* Add your banner background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start; /* Aligns text to the left */
    width: 100%; /* Ensure it spans the entire width */
    margin-top: 60px; /* Added margin-top to separate it from the previous content */
  }
  
  .simple-banner .banner-text {
    width: 100%;
    color: rgb(0, 0, 0);
    padding: 20px;
    border-top: 4px solid rgba(0, 0, 0, 0.8); /* Black border at the top */
    box-sizing: border-box; /* Ensures padding is included in width calculation */
  }
  
  .simple-banner .banner-header {
    padding-left: 100px;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
  }
  
  .simple-banner .banner-subtext {
    padding-left: 100px;
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  /* dialog box*/
 .container {
    position: relative;
    width: 100%;
    max-width: 600px; /* optional max width */
    margin: auto   ;
  }
  
  .container img,.dialog {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .text1,
  .text2 {
    position: absolute;
    left: 40%;
    transform: translateX(-50%);
    color: rgb(0, 0, 0);
    text-align: center;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7); /* makes text readable over image */
  }
  
  .text1 {
    top: 35%; /* adjust to position the title */
    font-size: 24px;
    font-weight: bold;
  }
  
  .text2 {
    top: 45%; /* adjust for the paragraph */
    font-size: 20px;
    width: 80%; /* optional width for readability */
  }
  
@media (max-width:768px){
    .textbg {
        width: 100%;
    }
    .text1 {
    top: 30%; /* adjust to position the title */
    font-size: 24px;
    font-weight: bold;
  }
  .text2 {
    top: 45%; /* adjust for the paragraph */
    font-size: 20px;
    width: 80%; /* optional width for readability */
  }
}