*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
#hh1{
    color: rgb(240, 7, 7);
    border-bottom: 4px solid rgb(240, 7, 7);
    padding-bottom: 10px;
    display: inline-block;
}
.nav1{
  position: sticky;  
  top: 0;            
  z-index: 1000;
  background-color: #fff;
}
#u1{
    float: right;
    display: flex;
}
#a1{
    margin-top: 10px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}
.join {
  padding: 12px 28px; 
  border-radius: 40px;    
  background: #dc3dc1;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease; 
  display: inline-block;
}
.join:hover {
  transform: translateY(4px);
  box-shadow: 0 10px 20px rgba(216, 30, 30, 0.4); 
  background-color: #2563eb;    
}
.s1{
    color: #fff;
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}
.imgbg{
    position: absolute;
    inset: 0;
    background-image: url(https://plus.unsplash.com/premium_photo-1661963603353-9176e99020d9?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDV8fHBhbm9yYW1pY3xlbnwwfHwwfHx8MA%3D%3D);
    background-repeat: no-repeat;
    z-index: 0;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 25px;
}
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}
.div1{
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.div1 h1{
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 28px;
    line-height: 1.2;
    max-width: 850px;
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 720px;
}
.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #555;
  pointer-events: none;
  cursor: pointer;
}
.search-box input {
  width: 100%;
  padding: 18px 26px 18px 52px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 1rem;
}
.tags{
     margin-top: 22px;
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: center;
}
.tags span{
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.22);
}
.image1 {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.image1 {
  margin-left: 80px;             
  justify-content: center;    
  gap: 20px;                 
}
.image1 .im {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.image1 .im :hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.15);
}

/* Headings zote */
.image1 .im h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111827;
  letter-spacing: -0.02em;
  position: relative;
}
/*decorating underline*/
.image1 .im h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  margin-top: 8px;
  border-radius: 2px;
}
.image1 .ig {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Image link pekee */
.image1 .ig a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
.image1 .ig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* Hover effects */
.image1 .ig a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.image1 .ig a:hover img {
  transform: scale(1.1);
}
.image1 img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image1 img:hover {
  transform: translateY(-10px) scale(1.05); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 
  filter: brightness(1.1);                  
}
.b1 {
  display: grid;
  gap: 20px; 
  max-width: 1200px;
  margin: 10px auto;
  grid-template-areas: 
    "portrait intro intro"
    "portrait detail links";
  grid-template-columns: 1fr 1fr 0.5fr; 
  grid-template-rows: auto auto;
}
.b1 {
  margin-top: 10px; 
  padding-bottom: 10px; 
  border-top: 1px solid #eee; 
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
}
#c2{
    margin: 40px;
}
#last{
    margin: 50px;
    float: right;
}
#c2 a{
    text-decoration: none;
    font-size: 20px;
    color: #b71a1a;
}
#bio{
    width: 50px;
}
.form-container {
  max-width: 500px;
  margin: 20px auto; /* Centers the form on the page */
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px; /* Adds rounded corners */
}

/* Style the form groups for spacing */
.form-group {
  margin-bottom: 15px;
}

/* Style labels */
label {
  display: block; /* Makes labels appear above inputs */
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}


input,
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; 
  font-size: 1em;
  resize: vertical; 
}

input:focus,
textarea:focus {
  border-color: #555;
  outline: none; 
}

button {
  background-color: #04AA6D; 
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer; 
  font-size: 1em;
  width: 100%;
}

button:hover {
  background-color: #45a049;
}
#intro h1{
    color: aqua;
    text-align: center;
}
#intro{
    background-color: deeppink;
    margin: 20px;
    border-radius: 10px;
}