body {
    margin: 0;
    font-family: cinzel serif ;
    background-color: #f2f2f2;
    overflow-x: hidden;
  }
  
  .service-card:hover {
    transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 35px 60px rgba(0,0,0,0.15);
  }
  .header, .about, .services, .contact, .footer {
    padding: 40px;
    perspective: 1000px;
    animation: fadeInRotate 1s ease-in-out;
    transform-style: preserve-3d;
  }
  .header {
    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%; }
  }
 
  .header h1{
    font-size: 48px;
    animation: bounceInDown 1.5s both;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.13), rgb(0, 0, 0));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
   
    transition: all 0.3s ease;
    font-family: cinzel serif;
    font-weight: 900;
  }  
  @keyframes bounceInDown {
    0% { opacity: 0; transform: translateY(-2000px); }
    60% { opacity: 1; transform: translateY(30px); }
    80% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
    
    .home-link {
      position: absolute;
      top: 20px;
      left: 20px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      align-self: flex-end;
      background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #00000075, #a1a1a1);
      border: px solid #c1c4c7ef;
    color: #2a2a2a;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
                  
    text-shadow: 1px 1px 0 #fff;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .home-link:hover {
    background: linear-gradient(145deg, #f1f1f1, #bfc2c5); 
    box-shadow:
      inset 0 2px 4px rgba(255, 255, 255, 0.8),
      0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
  }
  .about, .services, .contact {
    background: white;
    font-family: cinzel serif;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #00000075, #a1a1a1);
    animation: steelGloss 15s linear infinite;
  } 
  @keyframes steelGloss {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .services-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .services h2{
    font-size:30px;
    overflow: hidden;
     font-weight:800;
     background: linear-gradient(90deg, #000000, #252525, #8b8989, #180e0e);  
     -webkit-background-clip: text;
     background-clip: text; /* For Firefox compatibility */
     color: transparent;
     margin-bottom: 30px;
  }
  .about h2{
    font-size:30px;
    overflow: hidden;
     font-weight:800;
     background: linear-gradient(90deg, #000000, #252525, #8b8989, #180e0e);  
     -webkit-background-clip: text;
     background-clip: text; /* For Firefox compatibility */
     color: transparent;
     margin-bottom: 30px;
  }
  .about p{
    margin-top: 15px;
    font-size:20px;
    overflow: hidden;
 
  }
  .services p{
    margin-top: 15px;
    font-size:20px;
    overflow: hidden;
 
  }
  .services img {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
     
  }
  .services-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services-content img {
    max-width: 90%;
  }

  .services-content div {
    width: 100%;
  }

  .services-content ul {
    padding-left: 20px;
    text-align: left;
  }
  .gallery {
    padding: 40px;
    background: #ffffff;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .gallery h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #000000, #252525, #8b8989, #180e0e);  
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  

   