/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: skyblue;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}



/* ===== Design Expertise Section ===== */
.expertise-design-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.design-container {
  max-width: 1200px;
  margin: 0 auto;
}

.design-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0 auto 50px auto; /* centers heading horizontally */
  text-align: center;       /* centers text */
  display: block;           /* block-level for proper centering */
  max-width: 900px;         /* optional: limit width for better look */
}

.design-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto; /* perfectly centered underline */
  border-radius: 2px;
}


.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.design-item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.design-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.design-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .design-title {
    font-size: 2.2rem;
  }

  .design-item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .design-title {
    font-size: 2rem;
  }

  .design-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .design-title {
    font-size: 1.7rem;
  }
}



/* ===== Site Execution Excellence Section ===== */
.execution-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.execution-container {
  max-width: 1200px;
  margin: 0 auto;
}

.execution-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;          /* Center heading */
  display: block;              /* Ensure block-level for proper centering */
  margin: 0 auto 50px auto;    /* Centers heading horizontally */
  max-width: 900px;
}

.execution-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;   /* Centers underline */
  border-radius: 2px;
}

.execution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.execution-item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.execution-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.execution-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .execution-title {
    font-size: 2.2rem;
  }

  .execution-item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .execution-title {
    font-size: 2rem;
  }

  .execution-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .execution-title {
    font-size: 1.7rem;
  }
}



/* ===== Value Delivered Section ===== */
.value-section {
  padding: 80px 20px;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

.value-container {
  max-width: 1000px;
  margin: 0 auto;
}

.value-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;          /* Center the heading */
  display: block;
  margin: 0 auto 50px auto;    /* Center horizontally */
  max-width: 900px;
}

.value-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;   /* Center underline */
  border-radius: 2px;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .value-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .value-title {
    font-size: 2rem;
  }

  .value-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .value-title {
    font-size: 1.7rem;
  }

  .value-item {
    font-size: 0.9rem;
  }
}



/* ===== Documentation & Deliverables Section ===== */
.documentation-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.documentation-container {
  max-width: 1000px;
  margin: 0 auto;
}

.documentation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;            /* Center heading */
  display: block;
  margin: 0 auto 50px auto;      /* Center horizontally */
  max-width: 900px;
}

.documentation-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: skyblue;
  margin: 10px auto 0 auto;     /* Center underline */
  border-radius: 2px;
}

.documentation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.documentation-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .documentation-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .documentation-title {
    font-size: 2rem;
  }

  .documentation-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .documentation-title {
    font-size: 1.7rem;
  }

  .documentation-item {
    font-size: 0.9rem;
  }
}
