/* ===============================
   Hero Section (Dumpken Construction Theme)
   =============================== */

   .hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(-45deg, #5c3300, #e28a00, #c47100, #3d2200);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    text-align: center;
  }
  
  .hero .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
  }
  
  .hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out both;
  }
  
  .hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
  }
  
  .hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f8f8f8;
  }
  
  .hero .btn {
    background-color: #fff;
    color: #b35c00;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .hero .btn:hover {
    background-color: #ffe5b4;
    color: #3d2200;
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  
  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Construction Yellow for Highlights */
  :root {
    --primary-color: #b35c00;
    --accent-color: #ffae00;
    --text-dark: #222;
    --text-light: #fff;
    --gray-bg: #f9f9f9;
    --card-bg: #fff7ec;
  }
  
  /* ===============================
     Who We Are Section (Dumpken)
     =============================== */
  
  .who-we-are {
    padding: 5rem 1rem;
    background-color: var(--gray-bg);
  }
  
  .who-we-are .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .text-content {
    flex: 1 1 500px;
  }
  
  .text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
  }
  
  .text-content h2.underline::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
  }
  
  .text-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
  }
  
  .values-list {
    margin-top: 2rem;
  }
  
  .values-list h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .values-list ul {
    list-style: none;
    padding-left: 0;
  }
  
  .values-list ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-dark);
  }
  
  .values-list ul li i {
    margin-right: 0.7rem;
    font-size: 1.2rem;
    color: var(--primary-color);
  }
  
  .media-content {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .media-content img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }
  
  .media-content img.zoom-hover:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .who-we-are .container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content,
    .media-content {
      flex: 1 1 100%;
    }
  
    .text-content h2 {
      font-size: 1.8rem;
    }
  
    .values-list ul li {
      justify-content: center;
    }
  }
  
  
  /* ===============================
     Services Section (Dumpken)
     =============================== */
  
  .services {
    padding: 5rem 1rem;
    background-color: #fff;
    text-align: center;
  }
  
  .services .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .services h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }
  
  .services .underline::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  .btn-mini {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
  }
  
  .btn-mini:hover {
    background-color: #3d2200;
  }
  
  @media (max-width: 768px) {
    .services h2 {
      font-size: 1.6rem;
    }
  
    .service-card p {
      font-size: 0.9rem;
    }
  }
  
  /* ===============================
     Blog Preview Section (Dumpken)
     =============================== */
  
  .blog-preview {
    background: #2c1f12;
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
  }
  
  .blog-preview h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: var(--accent-color);
  }
  
  .blog-preview h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .carousel-container {
    overflow: hidden;
    padding: 20px 0;
  }
  
  .carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
  }
  
  .blog-post {
    background: #3a2a1a;
    border-radius: 10px;
    overflow: hidden;
    min-width: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .blog-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .blog-post-content {
    padding: 15px;
    text-align: left;
  }
  
  .blog-post h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
  }
  
  .blog-post p {
    font-size: 0.95rem;
    color: #ddd;
  }
  
  .blog-post:hover {
    transform: scale(1.04);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .carousel-nav button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 16px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .carousel-nav button:hover {
    background: #3d2200;
  }
  
  @media (max-width: 768px) {
    .who-we-are .container,
    .service-list,
    .carousel {
      flex-direction: column;
      align-items: center;
    }
  
    .service-item,
    .blog-post {
      width: 90%;
    }
  
    .who-we-are h2::after,
    .services h2::after,
    .blog-preview h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }