body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fffdf9;
  color: #333;
  scroll-behavior: smooth;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
.nav-bar {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
  font-size: 24px;
  font-weight:100;
  color: #000;
}
.logo span {
  color: #c5a049;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
nav a:hover {
  color: #c5a049;
}
.contact-btn {
  background: #c5a049;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
}

/* Hero */
/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* subtle dark overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: #c59d5f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #a9823f;
  transform: scale(1.05);
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 34px;
  margin: 0px 0 0px;
  color: #222;
  padding: 15px
}

/* Catalog */
.catalog {
  background: #fff;
  padding: 0 5% 80px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.catalog-item {
  text-align: center;
  background: #f9f7f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.catalog-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.catalog-item h3 {
  color: #c5a049;
  margin: 15px 0 5px;
}
.catalog-item p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #444;
}
.catalog-item:hover {
  transform: scale(1.03);
}

/* Portfolio */
.portfolio {
  background: #f7f5f0;
  padding-bottom: 60px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 90%;
  margin: auto;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  width: 100%;
  padding: 10px;
  text-align: center;
}

.contact-info p {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap; /* allows address to go to next line nicely */
  font-size: 0.95rem;
  gap: 6px;
  margin-bottom: 4px; /* reduce space between each paragraph */
  line-height: 1.4; /* makes text slightly tighter */
}

.contact-info i {
  color: #c19a6b;
  font-size: 1.8rem;
  
}

.contact-info strong {
  color: #000;
}

.contact-info a {
  color: #c5a049;
  text-decoration: none;
}



.contact-info i {
  color: #c19a6b; /* goldish tone for elegance */
  font-size: 1rem;
  width: 14px;
  text-align: center;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover {
  color: #c19a6b;
}


/* Contact */
.contact {
  background: #fff;
  padding-bottom: 60px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  margin: auto;
}
.contact-info {
  flex: 1;
}
.contact-info a {
  color: #c5a049;
  text-decoration: none;
}
form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
button {
  background: #c5a049;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
button:hover {
  background: #b08f38;
}
/* ===== Modal Popup ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  padding: 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease-out;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #c59d5f;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  padding: 10px;
  z-index: 1000;
}
.whatsapp-float img {
  width: 42px;
  height: 42px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  /* margin: 0 !important; */
  transform: translateY(0);
}

/* Responsive */
@media (max-width:768px) {
  .hero h1 { font-size: 32px; }
  nav { display: none; }
}

/* === FAQ Section === */
.faq {
  padding: 60px 10%;
  background: #faf9f6;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #c19a6b;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 5px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .fa-plus {
  transform: rotate(45deg);
  color: #c19a6b;
  transition: transform 0.3s ease;
}

/* === HOW WE WORK - ELEGANT ROADMAP === */
.process {
  background: #e4d1bb47;
  padding: 90px 20px;
  text-align: center;
  position: relative;
}

.process .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #201f20, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
}

.process-roadmap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  gap: 30px;
}

.process-roadmap::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #b993d6, #8ca6db);
  opacity: 0.3;
  z-index: 1;
}

.step {
  background: white;
  padding: 25px 20px;
  width: 190px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.step .icon {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  transition: all 0.3s ease;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}

.step p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Hover effects */
.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.3);
  background: #ffffff;
}

.step:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

/* Click/Active animation */
.step:active {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(80, 121, 255, 0.5);
}

/* Mobile View */
@media (max-width: 900px) {
  .process-roadmap {
    flex-direction: column;
    align-items: center;
  }

  .process-roadmap::before {
    display: none;
  }

  .step {
    width: 85%;
    margin-bottom: 40px;
  }
}
/* === Responsive Hamburger Menu === */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #c5a049;
}

/* Hide links initially in mobile view */
.nav-links {
  display: flex;
  gap: 20px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
  }

  .menu-icon {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }
}
/* RECENT PROJECTS */
.recent-projects {
  padding: 80px 10%;
  background: #f9f9f9;
}

.recent-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: #c59d5f;
}

.project-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.project-content p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.project-content button {
  background: #111;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.project-content button:hover {
  background: #c59d5f;
}


/* GALLERY POPUP */

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.gallery-content {
  max-width: 85%;
  max-height: 80%;
  border-radius: 15px;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 35px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
}

.gallery-prev {
  left: 30px;
}

.gallery-next {
  right: 30px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(255,255,255,0.5);
}
