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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #333;
  border-bottom:0px solid #eee;
  padding: 20px 0;
}
.site-header .logo img {
  height: 65px;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 15px;
  justify-content: center;
}
.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
  text-align: center;
}
.navbar a:hover,
.navbar a.active {
  color: #f15a22;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hero Section */
.hero {
  height: 90vh;
  background: url('../images/firefighter-c68yetjztdnru9f9.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero h1 span {
    color: #ff4b2b;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
/* ---------- Introduction Section Styling ---------- */

.intro-section {
  padding: 70px 10%;
  background-color: #fafafa;
  text-align: left;
}

.intro-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d92323;
}

.intro-section h2 span {
  color: #000;
}

.intro-section p {
  font-size: 1.3rem;
  line-height: 1.35;
  color: #333;
  margin-bottom: 15px;
}

.intro-projects {
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: 5px;
  margin-right: auto;
}

.intro-projects h3 {
  font-size: 1.44rem;
  color: #d92323;
  margin-bottom: 4px;
}

.intro-projects ul {
  list-style: calc();
  padding-left: 1.5px;
  color: #444;
}

.intro-projects li {
  margin-bottom: 7px;
  font-size: 1.45rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-section {
    padding: 50px 5%;
  }

  .intro-section h2 {
    font-size: 2rem;
  }

  .intro-section p,
  .intro-projects li {
    font-size: 1rem;
  }
}
.btn-primary {
  background-color: #f15a22;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background-color: #d94c1a;
}

/* Highlights */
.highlights {
  padding: 60px 0;
  background-color: #fafafa;
}
.highlight-box {
  text-align: center;
  padding: 20px;
}
.highlight-box h3 {
  color: #f15a22;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.highlight-box p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
    .design-hero h1 {
        font-size: 2rem;
    }

    .design-content {
        padding: 40px 8%;
    }
}


.segments {
  padding: 50px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.segments h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.segment-item {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.segment-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.segment-item p {
  margin-top: 10px;
  font-weight: 600;
  color: #444;
}

.segment-item:hover {
  transform: translateY(-5px);
}

/* Footer */
.site-footer {
  background-color: #444;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
