* {
      box-sizing: border-box;
    }
    body {
      margin: 0; 
      font-family: 'Poppins', sans-serif;
      background: #f9f9f9;
      color: #333;
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    
    .address p a {
	color: #fff;
	text-decoration: none;
}
.address p {
	margin: 0;
}
.address {
	background: #000;
	text-align: center;
	padding: 10px;
}
 
.address p a:hover {
	color: #8b3a3b;
}
 
    
    
     .social_butt a {
  color: #000;
  background: white;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 100px;
  align-items: center;
}
.social_butt a:first-child:hover{
  color: #fff;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.social_butt a:last-child:hover{
  color: #fff;
  background: linear-gradient(45deg, #1877f2, #3b5998);
}
header h2 {
  font-size: 30px;
  z-index: 999;
  margin: ;
  margin: 0;
  text-decoration: underline 3px;
}
      .social_butt a:hover{color:#000;transform: scale(1.1);transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease;}
.social_butt {
  position: relative;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.social_butt a img {
  height: 30px;
  width: auto;
}  
    
.container{
  width: 1170px;margin: 0 auto;
}
    /* Banner/Header */
    header {
      position: relative;
      height: 550px;
      background-image: url('../images/banner.jpg');
      background-size: cover;
      background-position: bottom;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      overflow: hidden;
      padding: 25px 20px 40px;
      gap: 18px;
      border-radius: 0 0 50px 50px;
      box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
    }
    header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 126, 95, 0.57), rgba(254, 180, 123, 0.44));
      z-index: 0;
      border-radius: 0 0 50px 50px;
      animation: zoomIn 25s ease-in-out infinite;
      transform-origin: center center;
      will-change: transform;
    }
    @keyframes zoomIn {
      0%, 100% {transform: scale(1);}
      50% {transform: scale(1.05);}
    }

    /* Logo */
    header img.logo {
      position: relative;
      z-index: 2;
      width: 160px;
      max-width: 90vw;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.35);
      background: white;
      padding: 10px 15px;
      transition: transform 0.3s ease;
    }
    header img.logo:hover {
      transform: scale(1.05);
      box-shadow: 0 9px 30px rgba(0,0,0,0.5);
    }

    /* Heading */
    header h1 {
      position: relative;
      z-index: 2;
      font-size: 3.5rem;
      font-weight: 700;
      margin: 0 10px 10px;
      text-shadow: 3px 5px 15px rgba(0,0,0,0.7);
      line-height: 1.1;
      max-width: 90vw;
    }
    header h1::after {
      content: "";
      display: block;
      width: 160px;
      height: 6px;
      background: #fff7f0;
      margin: 10px auto 0;
      border-radius: 6px;
      box-shadow: 0 3px 12px rgba(255,126,95,0.7);
    }

    /* Banner Button */
    .header-btn {
      position: relative;
      z-index: 2;
      background: white;
      color: #ff7e5f;
      font-weight: 700;
      padding: 16px 45px;
      font-size: 1.2rem;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(255,126,95,0.5);
      transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease;
      letter-spacing: 0.05em;
      user-select: none;
      max-width: 90vw;
      white-space: nowrap;
    }
    
/*     .header-btn:after {
  width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    content: '';
    bottom: -8px;
    left: 50%;
    margin-left: -5px;
}*/
    .header-btn:hover {
      background: #ff7e5f;
      color: white;
      transform: scale(1.1);
      box-shadow: 0 12px 30px rgba(255,126,95,0.75);
    }

.header-btn:hover:after{border-top: 10px solid #ff7e5f;}

.clear{
  width: 100%;float: left;clear: both;
}
    /* Intro text */
    .intro-text {
      font-size: 1.35rem;
      line-height: 1.75;
      margin-bottom: 50px;
      text-align: center;
      white-space: pre-line;
      color: #444;
      max-width: 850px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Gallery grid */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 65px;
  width: 100%;
  justify-content: space-between;
}
.gallery-flex {
  width: 48%;
}
.gallery img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 7px 26px rgba(0,0,0,0.11);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.94);
  user-select: none;
}
    .gallery img:hover {
      transform: scale(1.07);
      filter: brightness(1);
      box-shadow: 0 10px 34px rgba(255,126,95,0.45);
    }
.clear.form {
  background: #93c100;
  padding: 50px 0;
}
    /* Form styling */
    form {
      background: white;
      padding: 42px 40px;
      border-radius: 20px;
      box-shadow: 0 8px 35px rgba(0,0,0,0.14);
      max-width: 820px;
      margin: 0 auto;
      transition: box-shadow 0.35s ease;
    }
    form:hover {
      box-shadow: 0 12px 50px rgba(255,126,95,0.35);
    }
    form h2 {
      margin-bottom: 28px;
      font-weight: 700;
      color: #ff7e5f;
      text-align: center;
      font-size: 2rem;
      letter-spacing: 0.07em;
    }
    form label {
      display: block;
      margin-bottom: 9px;
      font-weight: 600;
      color: #666;
      font-size: 1.05rem;
    }
    form input, form textarea {
      width: 100%;
      padding: 16px 18px;
      margin-bottom: 28px;
      border: 2.5px solid #ddd;
      border-radius: 12px;
      font-size: 1.15rem;
      transition: border-color 0.35s ease, box-shadow 0.35s ease;
      resize: vertical;
      font-family: 'Poppins', sans-serif;
      color: #333;
      user-select: text;
    }
    form input:focus, form textarea:focus {
      border-color: #ff7e5f;
      box-shadow: 0 0 12px #ff7e5faa;
      outline: none;
    }
    form button {
      background: #ff7e5f;
      color: white;
      border: none;
      padding: 18px 38px;
      border-radius: 40px;
      font-size: 1.3rem;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      letter-spacing: 0.06em;
      transition: background 0.35s ease, box-shadow 0.35s ease;
      box-shadow: 0 8px 20px rgba(255,126,95,0.55);
      user-select: none;
    }
    form button:hover {
      background: #feb47b;
      box-shadow: 0 14px 38px rgba(254,180,123,0.85);
    }
    
   

    /* Responsive adjustments */
    
    @media(max-width: 1199px){
      .container{
        width: 96%;
      }
    }


    @media(max-width: 639px){
      .gallery-flex {
  width: 100%;margin-bottom: 20px;
}
      header h1 { font-size: 22px;}
      form h2 { font-size: 24px;}
    }

        @media(max-width: 479px){
          .social_butt { gap: 10px;}
          .social_butt a { padding: 10px 20px;
}
}