body { 
    margin: 0; 
    font-family: Arial, sans-serif; 
    color: #fff; 
    background: #000; 
}
a { 
    color: #0077cc; 
    text-decoration: none; 
}

section { 
    padding: 60px 20px; 
}
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
}
img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background: #1a1a1a;
  text-align: center;
  padding: 0 1rem;
}
.hero2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background: #1a1a1a;
  text-align: center;
  padding: 0 1rem;
  background-image: url(../css/pictures/DaGang.jpeg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}
.hero h1 { 
  font-size: 2rem; 
  max-width: 900px;
}

.process { 
  background: linear-gradient(rgb(0, 0, 0), rgba(142, 62, 62, 0.6));
  color: #fff; 
}
.process .grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); 
  gap: 30px; 
}
.process-card { 
    padding: 20px; 
    background: #fff; 
    color: #000; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.services { 
    background: linear-gradient(rgba(142, 62, 62, 0.6), rgb(0, 0, 0)); 
    color: #fff; 
}
.services .grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); 
    gap: 30px; 
}
.service-card { 
    padding: 20px; 
    background: #fff; 
    color: #000; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.portfolio { 
    background: #000; 
    color: #fff; 
}
.portfolio .gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); 
    gap: 20px; 
}

.testimonials { 
    background: #1a1a1a; 
    color: #fff; 
}
.testimonials blockquote { 
    margin: 20px auto; 
    padding: 20px; 
    max-width: 800px; 
    font-style: italic; 
    background: #fff; 
    color: #000; 
    border-left: 5px solid #0077cc; 
}

.cta { 
    text-align: center; 
    background: #000; 
    color: #fff; 
    padding: 40px 20px; 
}
.cta a {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 24px;
  background: #005fa3;
  color: #fff;
  border-radius: 4px;
}


footer { 
    background: #000; 
    color: #fff; 
    padding: 40px 20px; 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
}
.footer-content { 
    display: flex; 
    gap: 40px; 
    flex-wrap: wrap; 
}
.footer-content a { 
    color: #fff; 
    font-size: small; 
    display: block; 
    margin: 4px 0; }
.logo { 
    font-size: 1.4rem; 
    font-weight: bold; 
    color: red; 
}
.footer-line { 
    width: 1px; 
    background: #555; 
    margin: 0 20px; }
.footer-vertical-text { 
    display: flex; 
    flex-direction: column; 
}
.footer-right { 
    text-align: right; 
}
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.header {
  background-color: #01010a;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

 h1 {
    font-size: 1.8rem;
  }

.nav{
    display: flex;
    gap: 1rem;
  }
  
.nav a {
    color: #fff;
    text-decoration: none;
  }
  
nav a:hover {
    text-decoration: underline;
  }
.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

  
@media (max-width: 768px) {
    .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: rgba(30, 30, 30, 0.95);
    padding: 1rem;
    border-radius: 10px;
    gap: 10rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
    .nav.show {
      display: flex;
    }
  
    .burger {
      display: block;
    }
  }
.dropdown {
    position: relative;
  }
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #333;
    min-width: 150px;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
  }
  
.dropdown-content a {
    color: #333;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
  }
  
.dropdown-content a:hover {
    background-color: #f0f0f0;
  }
  
.dropdown:hover .dropdown-content {
    display: block;
    }

button{
    background: #fff;
    color: black;
    cursor: pointer;
}
button:hover{
    background: transparent;
    color: white;
    outline: 1px solid #fff;
}

.glass-container {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: white;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .glass-container {
    padding: 1rem;
    margin: 1rem auto;
    width: 95%;
  }
}
@media (max-width: 768px) {
      .burger {
        display: block;
      }

      .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 4rem; /* just under header */
        right: 1.5rem;
        background: rgba(30, 30, 30, 0.95);
        padding: 1rem;
        border-radius: 10px;
        gap: 0.5rem;
        z-index: 999;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      }

      .nav.active {
        display: flex;
      }

      .glass-container {
        padding: 1rem;
        width: 95%;
      }
    }

    @media (max-width: 480px) {
      .logo {
        font-size: 1.2rem;
      }

      .nav a,
      .nav input[type="submit"] {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
      }
    }