* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav{
  cursor: pointer;
  position: fixed;
  background-color: #ea580c;
  z-index: 999;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.549);
}
.navbar{
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
}

.nav-items ul{
  list-style-type: none;
  display: flex;
  gap: 1rem;
}
.nav-hamburger{
  display: none;
}
.nav-items ul a{
  text-decoration: none;
  color: #000;
}
.nav-logo a{
text-decoration: none;
color: #000;
font-weight: 500;
}

.back-to-top{
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 80px;
  transform: rotate(-90deg);
  height: 40px;
  width: 40px;
  background-color: #f97316;
  border-radius: 999px;
  box-shadow: 0 3px 6px #ea580c;
}
.back-to-top:hover{
  transition: all ease 0.4;
  box-shadow: 0 6px 18px #ea580c;
}
.hero {
  background-image: url('https://www.livehome3d.com/assets/img/articles/home-decor-ideas/living-room-in-green-and-gray-tones@2x.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  z-index: 3;
}

.hero::after {
  content: "";
  position: absolute;
  top:0;  
  z-index: 2;
  width: 100%;
  height: 100vh;
  background-color: #0000003f;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 4;
  padding: 2rem;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #f97316; /* Orange */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ea580c;
}



.portfolio {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.portfolio-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  /* height: 100px;
  width: 100px; */
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  padding: 1rem 1.25rem;
}

.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.project-info p {
  color: #666;
  font-size: 0.95rem;
}



.usp-section {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.usp-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.usp-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.usp-card {
  flex: 1 1 200px;
  max-width: 220px;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.usp-card:hover {
  transform: translateY(-5px);
}

.usp-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.usp-card h3 {
  font-size: 1.1rem;
  color: #333;
}


.testimonials {
  background-color: #f9fafb;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #111827;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.25rem;
}

.testimonial-client {
  color: #6b7280;
  font-size: 0.95rem;
}

.testimonial-client strong {
  display: block;
  color: #111827;
  font-weight: 600;
}


.form-section {
  background-color: #fff7ed;
  padding: 4rem 2rem;
  text-align: center;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.form-subtext {
  color: #f97316;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  width: 100%;
  background-color: #f97316;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #ea580c;
}


.cta-banner {
  background-color: #1e3a8a; /* Deep blue */
  color: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #facc15; /* Yellow highlight */
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background-color: #f97316;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #ea580c;
}


.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f97316;
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.5);
  transition: background-color 0.3s;
  z-index: 1000;
}

.sticky-cta:hover {
  background-color: #ea580c;
  box-shadow: 0 8px 16px rgba(234, 88, 12, 0.7);
}


.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 3rem 2rem 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3 {
  color: #f97316;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section address {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-section a:hover {
  color: #f97316;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.5rem;
}

.social-icon {
  display: inline-block;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #f97316;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

@media screen and (max-width:600px) {
  .navbar{
  padding: .5rem 1.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.nav-items ul{
 display: none;
}
.nav-hamburger{
  display: block;
}
.nav-hamburger img{
  height: 30px;
  width: 20px;
}
}
