 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:cinzel serif;
  background: url('   '), linear-gradient(135deg, #999494, #a1a1a1);
  color: #e0e0e0;
  background-repeat: no-repeat;
  background-size:cover ;
}

.hero {
  background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #000000e1, #a1a1a1);
  background-blend-mode: overlay;
  background-size: 200% 200%;
  animation: steelGloss 15s linear infinite;
  padding: 100px 20px 60px;
  text-align: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: inset 0 0 60px rgba(255,255,255,0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.897);
   
}


@keyframes steelGloss {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 48px;
  animation: bounceInDown 1.5s both;
  background: linear-gradient(to right, rgb(5, 5, 5), rgba(0, 0, 0, 0.164));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

}

.hero p {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 18px;
  color: #f0f0f0;
  animation: fadeInUp 2s both;
  animation-delay: 0.5s;
}

.hero .links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 2s both;
    animation-delay: 1s;
  }

  .hero .links a {
    text-decoration: none;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .hero .links a:hover {
    background: #000;
  }

  @keyframes bounceInDown {
    0% { opacity: 0; transform: translateY(-2000px); }
    60% { opacity: 1; transform: translateY(30px); }
    80% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @media (max-width: 600px) {
    .hero .links {
      flex-direction: column;
      align-items: center;
    }
  }
.about-section {
  padding: 60px 20px;
  max-width: 900px;
  align-items: center;
  margin: auto;
}

.section {
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #00000075, #a1a1a1);
    background-blend-mode: overlay;
    background-size: 200% 200%;
    animation: steelGloss 15s linear infinite;
    padding: 30px 20px;
    max-width: 1000px;
    width: 100%;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(800px) rotateY(5deg);
    transition: transform 0.5s ease;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    color: #111;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
      transform: none;
      padding: 20px 10px;
    }
  }
  
.section:nth-child(1) { animation-delay: 0.3s; }
.section:nth-child(2) { animation-delay: 0.6s; }
.section:nth-child(3) { animation-delay: 0.9s; }
.section:nth-child(4) { animation-delay: 1.2s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.section:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

h2 {
  color: #fff;
  margin-bottom: 10px;
   text-align:start  ;
}

p {
  line-height: 1.6;
}
.content-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 40px;
    align-items: start;
  }

  .content-section img {
     
    width: 200px;
    height: auto;
    border-radius: 12px;
    margin-left:500px ;
  } 
  

  .content-text {
    flex: 2;
  }

  .content-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
  }

  .content-text ul {
    padding-left: 20px;
  }

  .content-text li {
    margin-bottom: 10px;
    justify-self: start;
  }

  @media (max-width: 768px) {
    .content-section {
      flex-direction: column;
      text-align: center;
    }
  
    .content-section img {
      max-width: 100%;
    }
  }@media (max-width: 768px) {
    .content-section {
      flex-direction: column;
      text-align: center;
    }
  
    .content-section img {
      max-width: 100%;
    }
  }
   .section img {
    max-width: 150px;
    width: 50%;
    height: auto;
    border-radius: 12px;
  }