* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transition: 0.3s;
}

.navbar.scrolled {
  background: rgba(55, 53, 58, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color:  #b5651d;
}

.logo span {
  color:whitesmoke;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: whitesmoke;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #b5651d;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background:rgb(1, 1, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

/* Overlay for text visibility */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: white;
  padding-top: 60px;
}

.hero-tag {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  margin: 15px 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #b5651d;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #b5651d;
}

.btn-primary:hover {
  background: #9a5315;
  border-color: #9a5315;
}

.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: #111;
}

.full {
  width: 100%;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-text {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.8;
}

.center {
  text-align: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.stat {
  background: #f7f7f7;
  padding: 18px;
  border-radius: 14px;
  min-width: 130px;
}

.stat h3 {
  font-size: 1.6rem;
  color: #b5651d;
}

.about-card {
  background: #111;
  color: white;
  padding: 25px;
  border-radius: 18px;
}

.about-card h3 {
  margin-bottom: 12px;
}

.about-card ul {
  list-style: none;
  line-height: 2;
}

/* Services */
.services-section {
  background: #fafafa;
}

.services-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Projects */
.projects-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  background: white;
}

.project-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.p1 { background-image: url("hero-bg.jpg"); }
.p2 { background-image: url("hero-bg.jpg"); }
.p3 { background-image: url("hero-bg.jpg"); }
.p4 { background-image: url("hero-bg.jpg"); }

.project-info {
  padding: 16px;
}

.project-info h3 {
  margin-bottom: 6px;
}

/* Testimonials */
.testimonials-section {
  background: #fafafa;
}

.testimonials-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.testimonial-card h4 {
  margin-top: 14px;
  color: #b5651d;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
}

.contact-details p {
  margin-top: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b5651d;
}

.form-msg {
  margin-top: 8px;
  font-size: 0.95rem;
  color: green;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #ddd;
  margin-top: 8px;
}

.footer a:hover {
  color: #b5651d;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 5%;
    background: white;
    flex-direction: column;
    width: 220px;
    padding: 18px;
    border-radius: 14px;
    display: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}