/* General Body */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-image: url('https://media.istockphoto.com/id/1292475809/photo/kitchen-blueprint-drawing-gradating-into-finished-build.jpg?s=612x612&w=0&k=20&c=CZ_xEd5NsaQklF2PH6rxBMoIiQ-qiGoP_CixIOqoREo=');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

/* Header */
header {
  background: rgba(31,40,51,0.85);
  color: #66fcf1;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: bold;
}

header nav a {
  color: #66fcf1;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ffde59;
}

/* Login Button in Header */
header .login-btn {
  background: #ffcb6b;
  color: #0b0c10;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin-left: 20px;
}

header .login-btn:hover {
  background: #ffde59;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: rgba(0,0,0,0.5); 
  border-radius: 0 0 25px 25px;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ffcb6b;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ffcb6b;
  color: #0b0c10;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s;
}

.btn:hover {
  background: #ffde59;
}

/* Sections */
section {
  padding: 60px 20px;
  margin: 30px auto;
  max-width: 1000px;
  background: rgba(31,40,51,0.9);
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffcb6b;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Projects/Services Boxes */
.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.project {
  background: rgba(31, 40, 51, 0.85); /* glass effect */
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 25px 20px;
  width: 280px;
  text-align: center;
  color: #e0e0e0;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: transform 0.4s, box-shadow 0.4s, border 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.project img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.4s;
}

.project:hover img {
  transform: scale(1.05);
}

.project:hover {
  transform: translateY(-10px);
  background: rgba(31, 40, 51, 0.9);
  box-shadow: 0 15px 40px rgba(255,203,107,0.6);
  border: 2px solid #ffde59;
}

/* Optional gradient shimmer overlay */
.project::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,203,107,0.2), rgba(102,252,241,0.2), rgba(255,203,107,0.2));
  transition: 0.6s;
  pointer-events: none;
}

.project:hover::before {
  left: 0;
}

/* Contact */
#contact p, #contact a {
  text-align: center;
  font-size: 1.2rem;
  margin: 10px 0;
}

#contact a {
  color: #ffcb6b;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

#contact a:hover {
  color: #66fcf1;
}

.phone {
  font-weight: bold;
  font-size: 1.3rem;
  color: #ffde59;
}

.map-container {
  margin: 20px auto;
  max-width: 800px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 25px 20px;
  background: rgba(31,40,51,0.9);
  color: #ffcb6b;
  font-weight: bold;
  margin-top: 30px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.6);
  border-radius: 10px 10px 0 0;
}

/* Responsive */
@media (max-width: 700px) {
  .projects {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  section {
    padding: 40px 15px;
  }

  #about ul {
    grid-template-columns: 1fr;
  }
}

/* --- About Us List (No Boxes) --- */
#about ul {
  list-style: disc inside;
  padding: 0;
  margin: 20px 0;
  display: block;
  color: #dcdcdc;
}

#about ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: #dcdcdc;
}

#about ul li strong {
  color: #ffcb6b;
}
/* For service/project boxes hover & styling */
.project {
  background: rgba(31, 40, 51, 0.85);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 25px 20px;
  width: 280px;
  text-align: center;
  color: #e0e0e0;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: transform 0.4s, box-shadow 0.4s, border 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.project:hover {
  transform: translateY(-10px);
  background: rgba(31, 40, 51, 0.9);
  box-shadow: 0 15px 40px rgba(255, 203, 107, 0.6);
  border: 2px solid #ffde59;
}

.project::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,203,107,0.2), rgba(102,252,241,0.2), rgba(255,203,107,0.2));
  transition: 0.6s;
  pointer-events: none;
}

.project:hover::before {
  left: 0;
}

/* Services */
 /* Hero Section Services List */
.hero ul {
  list-style: none; /* remove default bullets */
  margin: 30px auto 0;
  padding: 0;
  max-width: 900px;
  color: #dcdcdc;
}

.hero ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: color 0.3s;
}

/* Custom bullet using star */
.hero ul li::before {
  content: '★';
  color: #ffcb6b;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

/* Hover effect for li */
.hero ul li:hover {
  color: #ffde59;
}

/* Optional: add subtle fade-in for hero list */
.hero ul li {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s forwards;
}

.hero ul li:nth-child(1) { animation-delay: 0.1s; }
.hero ul li:nth-child(2) { animation-delay: 0.2s; }
.hero ul li:nth-child(3) { animation-delay: 0.3s; }
.hero ul li:nth-child(4) { animation-delay: 0.4s; }
.hero ul li:nth-child(5) { animation-delay: 0.5s; }
.hero ul li:nth-child(6) { animation-delay: 0.6s; }
.hero ul li:nth-child(7) { animation-delay: 0.7s; }
.hero ul li:nth-child(8) { animation-delay: 0.8s; }
.hero ul li:nth-child(9) { animation-delay: 0.9s; }
.hero ul li:nth-child(10) { animation-delay: 1s; }
.hero ul li:nth-child(11) { animation-delay: 1.1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: increase readability */
.hero {
  background: rgba(0,0,0,0.6); 
  padding: 100px 20px 50px;
  border-radius: 0 0 25px 25px;
}

.hero h2 {
  color: #ffcb6b;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.hero p {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Terms */

/* --- Hero Section Services List --- */
.hero ul {
  list-style: none; /* remove default bullets */
  margin: 30px auto 0;
  padding: 0;
  max-width: 900px;
  color: #dcdcdc;
}

.hero ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: color 0.3s;
}

/* Custom star bullet */
.hero ul li::before {
  content: '★';
  color: #ffcb6b;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

/* Hover effect for li */
.hero ul li:hover {
  color: #ffde59;
}

/* Fade-in animation for services */
.hero ul li {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s forwards;
}

.hero ul li:nth-child(1) { animation-delay: 0.1s; }
.hero ul li:nth-child(2) { animation-delay: 0.2s; }
.hero ul li:nth-child(3) { animation-delay: 0.3s; }
.hero ul li:nth-child(4) { animation-delay: 0.4s; }
.hero ul li:nth-child(5) { animation-delay: 0.5s; }
.hero ul li:nth-child(6) { animation-delay: 0.6s; }
.hero ul li:nth-child(7) { animation-delay: 0.7s; }
.hero ul li:nth-child(8) { animation-delay: 0.8s; }
.hero ul li:nth-child(9) { animation-delay: 0.9s; }
.hero ul li:nth-child(10) { animation-delay: 1s; }
.hero ul li:nth-child(11) { animation-delay: 1.1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Terms and Conditions Styling --- */
#terms {
  background: rgba(31,40,51,0.9);
  padding: 50px 20px;
  margin: 30px auto;
  max-width: 1000px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  color: #dcdcdc;
}

#terms h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcb6b;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  margin-bottom: 30px;
}

#terms ol {
  padding-left: 20px;
  list-style-position: inside;
}

#terms ol li {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 1.05rem;
  transition: color 0.3s;
}

#terms ol li strong {
  color: #ffcb6b; /* highlight strong text */
}

#terms ol li:hover {
  color: #ffde59;
}
