 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #000000;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }
    .topbar {
      background-color: #e80000;
      color: white;
      font-size: 14px;
      padding: 8px 0;
    }
    .topbar-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
    }
    .topbar .left span,
    .topbar .right span {
      margin-right: 15px;
    }
    .social-icons i {
      margin-left: 10px;
      cursor: pointer;
    }
    .topbar .social-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}
.topbar .left a,
.topbar .right span {
  margin-right: 20px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
    .navbar {
      background: rgb(0, 0, 0);
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 15px 0;
    }
    .logo img {
      height: 45px;
      align-items: center;
    }
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: white;
    }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    
    }
    .has-submenu {
  position: relative;
}
.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 180px;
  border-radius: 6px;
  z-index: 999;
}
.has-submenu:hover .submenu {
  display: flex;
}
.submenu li a {
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}
.submenu li a:hover {
  background: #e80000;
  color: #fff;
}

    .nav-links li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }
     .nav-links li,
  .nav-right a {
    text-decoration: none;
  }
    .nav-right i {
      font-size: 18px;
      color: #fff;
    }
    .cta {
      background: #e80000;
      color: white;
      padding: 8px 14px;
      border: none;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .phone {
      color: #e80000;
      font-weight: bold;
    }

.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-box {
  flex: 1 1 220px;
}
.footer-box h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #e80000;
  display: inline-block;
}
.footer-contact p,
.footer-links li,
.footer-box p {
  margin: 10px 0;
  font-size: 14px;
}
.footer-logo {
  width: 250px;
}
.btn-quote {
  background: #e80000;
  color: white;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}
.newsletter {
  display: flex;
  margin-top: 10px;
}
.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
}
.newsletter button {
  background: #e80000;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
}
.footer-socials {
  margin-top: 20px;
}
.footer-socials a {
  display: inline-block;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: #e80000;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
}
.footer-bottom a {
  color: #e80000;
  margin-left: 10px;
  text-decoration: none;
}
.footer-bottom .footer-nav {
  margin-top: 10px;
}
.footer-bottom .footer-nav a {
  margin: 0 5px;
}
.highlight {
  color: #e80000;
}
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading .tag {
  display: inline-block;
  color: #e80000;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-heading h2 {
  font-size: 34px;
  margin: 5px 0;
  font-weight: 700;
  color: #fff;
}

.faq-heading p {
  color: #ffffff;
  font-size: 13px;
}
.about-hero-devils {
  text-align: center;
  padding: 80px 20px 0;
  background: linear-gradient(to bottom right, #000000, #1a1a1a);
  color: #fff;
  position: relative;
}

.about-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content .highlight {
  background: linear-gradient(90deg, #ff1c1c, #ff7e5f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #ccc;
  line-height: 1.7;
}

.btn-meeting {
  display: inline-block;
  background-color: #ff1c1c;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-meeting:hover {
  background-color: #e60000;
}

.team-image {
  margin-top: 40px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  max-width: 100%;
  height: 60%;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}
.who-we-are {
  padding: 40px 20px;
  background: #000;
  color: #fff;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff1c1c;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.who-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
}

.who-left, .who-right {
  flex: 1;
  min-width: 320px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 20px;
  width: 100%;
  text-align: left;
}

.image-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ff1c1c;
}

.image-overlay p {
  font-size: 1rem;
  color: #ccc;
}

.info-box {
  background: #111;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 0 20px rgba(255,28,28,0.1);
  margin-bottom: 20px;
  text-align: left;
  border-left: 5px solid #ff1c1c;
}

.info-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.info-box p {
  font-size: 1rem;
  color: #aaa;
}

.info-box.red {
  background: #1a0000;
  border-left-color: #ff1c1c;
}

.info-box.dark {
  background: #111;
  border-left-color: #ff1c1c;
}

.info-box i {
  margin-right: 8px;
  color: #ff1c1c;
}
.what-we-do {
  background-color: #000;
  padding: 40px 20px;
  color: #fff;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  color: #ff1c1c;
  margin-bottom: 60px;
}

.do-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.do-left {
  flex: 1;
  min-width: 320px;
}

.do-item {
  margin-bottom: 30px;
}

.do-item h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}

.do-item i {
  color: #ff1c1c;
  margin-right: 10px;
}

.do-item p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.do-right {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.image-slider {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.image-slider img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 28, 28, 0.2);
  transition: opacity 0.5s ease-in-out;
}
   body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #000;
      color: #fff;
    }

    .core-values-devils {
      padding: 40px 20px;
      text-align: center;
    }

    .core-values-devils .section-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .core-values-devils .section-heading span {
      color: #ff1c1c;
    }

    .core-values-devils .section-subtext {
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 50px;
      max-width: 800px;
      margin: 0 auto 50px;
      line-height: 1.6;
    }

    .value-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .value-card {
      background-color: #000;
      border-top: 5px solid #ff1c1c;
      border-radius: 12px;
      padding: 25px 20px;
      width: 180px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 25px rgba(255, 28, 28, 0.3);
    }

    .value-card h3 {
      font-size: 2.8rem;
      color: #ff1c1c;
      margin-bottom: 10px;
    }

    .value-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #fff;
    }

    .value-card p {
      font-size: 0.95rem;
      color: #aaa;
      line-height: 1.5;
    }
   .impact-numbers {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 30px;
    max-width: 1200px;
    margin: 30px auto;
  }

  .impact-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .impact-numbers h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .impact-numbers h2 span {
    color: #ff1c1c;
  }

  .impact-numbers p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .impact-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-box {
    background: #121212;
    padding: 30px 20px;
    flex: 1 1 200px;
    border-radius: 15px;
    border: 1px solid #2c2c2c;
    transition: all 0.3s ease;
  }

  .stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 28, 28, 0.4);
  }

  .stat-box h3 {
    font-size: 2.2rem;
    color: #ff1c1c;
    margin-bottom: 8px;
  }

  .stat-box p {
    font-size: 1rem;
    color: #aaa;
  }
  .footer-links li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links li a:hover {
  color: #e80000;
}

    @media (max-width: 768px) {
      .menu-toggle {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

  .nav-links,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.show,
  .nav-right.show {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row;
    font-size: 15px;
    flex-wrap: nowrap;
  }

  .nav-links li,
  .nav-right a {
    width: 100%;
    text-align: center;
  }

  .has-submenu .submenu {
    position: static;
    background: none;
    display: none;
  }

  .has-submenu:hover .submenu {
    display: flex;
  }

      .container{
        padding: 10px;
      }
      .navbar-inner {
        flex-direction: row;
        align-items: flex-start;
      }
      .topbar{
        display: none;
      }
    
  .faq-title {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 14px;
  }
   
    .value-card {
        width: 80%;
    
    }
   .impact-stats {
      flex-direction: column;
      gap: 15px;
    }

    .impact-numbers {
      padding: 60px 15px;
      margin: 40px 10px;
    }
    
}