* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fae8ac;
    color: #333;
  }
  
  /* ===== Header ===== */
  header {
    background: #d0ac77;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #fff;
  }
  
  header img {
    max-width: 60px;
    margin-right: 16px;
  }
  
  header h1 {
    font-size: 26px;
    margin: 0;
  }
  
  header p {
    font-size: 16px;
    margin-top: 4px;
    opacity: 0.9;
  }
  
  /* ===== Containers & Sections ===== */
  .container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #fae6a3;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .section {
    margin-bottom: 50px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #444;
    text-align: center;
  }
  
  p {
    margin-bottom: 15px;
    color: #444;
  }
  
  /* ===== Why Choose Us Section ===== */
  .why-choose-us {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #ffeeb4;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .why-choose-us img {
    max-width: 300px;
    border-radius: 10px;
    flex: 1;
  }
  
  .why-choose-us div {
    flex: 2;
  }
  
  /* ===== Buttons ===== */
  .button {
    display: inline-block;
    background: #d0ac77;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .button:hover {
    background: #b8915f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  
  /* ===== Contact Section ===== */
  .contact-section {
    background: #ffeeb4;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .contact-section h2 {
    margin-bottom: 10px;
  }
  
  .contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .contact-details div {
    flex: 1;
    min-width: 200px;
  }
  
  .contact-details img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  
  /* ===== Footer ===== */
  footer {
    text-align: center;
    padding: 20px;
    background: #f4f5f6;
    color: #777;
    font-size: 14px;
    border-top: 3px solid #ddd;
    margin-top: 40px;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .why-choose-us {
      flex-direction: column;
      text-align: center;
    }
    .why-choose-us img {
      max-width: 100%;
    }
  
    .contact-details {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  /* ===== Contact Form Styles ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
  }
  
  .contact-form .form-group {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 2px solid #d0ac77;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    background: #fff;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #b8915f;
  }
  
  .contact-form label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 16px;
    color: #777;
    pointer-events: none;
    transition: all 0.2s ease-out;
  }
  
  .contact-form input:focus + label,
  .contact-form input:not(:placeholder-shown) + label,
  .contact-form textarea:focus + label,
  .contact-form textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #b8915f;
    background: #ffeeb4;
    padding: 0 4px;
  }
  
  .contact-form button {
    align-self: center;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
  }

.work {
    text-align: center;          /* centers the heading */
    padding: 30px;
    background: #ffeeb4;
    border-radius: 10px;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
    margin-bottom: 30px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;            
    justify-content: center;    
    gap: 20px;                  
    margin-top: 20px;
}

.video-gallery video {
    width: 200px;                
    border-radius: 10px;       
}

.why-choose-us div {
  flex-wrap: wrap;          
}

.video-gallery video {
  width: 100%;             
  max-width: 180px;         
  height: auto;             
  border-radius: 8px;
}

@media (max-width: 600px) {
  .video-gallery {
    gap: 12px;
  }
  .video-gallery video {
    max-width: 140px;       
  }
  .work {
    padding: 20px;         
  }
}

