
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9f9f9;
  color: #333;
}
.header {
  background-color: #222;
  color: white;
  padding: 1rem 0;
}
.header .logo span {
  color: #e67e22;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: right;
  text-align: right;
}
.nav a {
  color: white;
  text-decoration: none;
}
.hero {
  background: url('Interior Work/2024_10_28_18_41_IMG_7503.JPG') no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  color: white;
  text-align: center;
  padding: 100px 100px;
}
.hero-content {
  font-size: larger;
}
.btn {
  background: #e67e22;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.container1 {
  display: flex;
    align-items: left;
    justify-content: left;
    padding: 5px 5px;
    gap: 30px; 
    background-color: #ffffff;
    border: 1px;
    border-radius: 5px;
}
.container_3 {
  text-align: center;
  font-family: var("Raleway");
  font-weight: 600;
  color: #000;
  
}
.how-we-work {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.how-we-work h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.steps {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.steps:hover {
  transform: translateY(-5px);
}

.steps img {
  width: 90px;
  height: 70px;
  margin-bottom: 20px;
}

.steps h3 {
  font-size: 1.2rem;
  color: #e67e22;
  margin-bottom: 10px;
}
.steps p {
  font-size: 0.95rem;
  color: #555;
}
.container-5 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 300;
}
.gallery-page {
  padding: 60px 20px;
  background-color: #f3f3f3;
  text-align: center;
}
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 15px;
  transition: transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.linton {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px
}
.linton img {
  
}
.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  transition: background 0.5s ease-in-out;
}
.container1 {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e67e22;
  box-shadow: 0 0 8px rgba(255, 154, 118, 0.5);
  outline: none;
}

button {
  padding: 15px;
  border: none;
  background: #e67e22;
  color: white;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e67e22;
}
.intro-text {
  color: #666;
  margin-bottom: 50px;
  font-size: 18px;
}

.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.service-card h3 {
  font-size: 22px;
  margin: 20px 0 10px;
  color: #e67e22;
}

.service-card p {
  padding: 0 20px 30px;
  font-size: 15px;
  color: #444;
}
.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fffdfd, #f5f5f5);
  transition: background 0.4s ease;
}

.container2 {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.container9 {
      max-width: 700px;
      margin: 2rem auto;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

.container8 {
      max-width: 900px;
      margin: 1rem auto;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }    

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}



.page-header {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./images/32.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .page-header h1 {
            font-size: 48px;
        }
        
        .contact-container {
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .contact-info {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .contact-info h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #e67e22;
        }
        
        .contact-method {
            display: flex;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #f8f8f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #e67e22;
            font-size: 20px;
        }
        
        .contact-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: #666;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .contact-form h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #e67e22;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        .submit-btn {
            text-align: right;
        }