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

    body {
      font-family: 'Montserrat', sans-serif;
    }

   a {
      color: #C8102E;
      text-decoration: none;
      transition: all 0.3s ease;
    }

   

  nav a {
 
  font-weight: bold;
   font-size: 1em; 
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #A00;
}

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
  background-color: rgba(0, 0, 0, 0.6); /* Transparent black */
  backdrop-filter: blur(4px); /* Optional: soft blur effect */
  transition: background-color 0.4s ease;
}

.fixed-header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Logo Styling */
.logo-diagonal {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.logo-diagonal img {
  width: 250px;
  height: 90px;
  display: block;
}

/* Navigation */
nav {
  display: flex;
  gap: 17px;
}

/* Hero Section */
header#dynamicHeader {
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text h1 {
  font-size: 2em;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}

    .hero-text a:hover {
      background-color: #ffffff;
    }


    section.section {
      padding: 60px 20px;
      background-color: #f9f9f9;
    }

    .grid-3, .grid-6 {
      display: grid;
      gap: 20px;
      margin-top: 20px;
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-6 {
      grid-template-columns: repeat(3, 1fr);
    }

    .box, .tile {
      background-color: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    section.cta {
      background-color: #c8102e;
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    section.cta a {
      background-color: white;
      color: #c8102e;
      padding: 10px 20px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      margin-top: 20px;
      display: inline-block;
    }

    section.clients {
      padding: 60px 20px;
      text-align: center;
    }

    section.clients img {
      height: 60px;
      margin: 10px;
    }

   
/* Services Scroll */
.services-scroll {
  padding: 100px 20px 60px;
  background: #fff;
  text-align: center;
}

.services-scroll h2 {
  font-size: 2em;
  color: #c8102e;
  margin-bottom: 30px;
}

.services-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;

  /* Hide scrollbar across browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.services-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.services-container {
  display: flex;
  gap: 20px;
}

.service-card {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: #c8102e;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.service-card p {
  font-size: 0.95em;
  margin-bottom: 15px;
  color: #333;
}

.service-card a {
  background: #c8102e;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.dot-nav {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot:hover,
.dot.active {
  background: #c8102e;
}
.clients-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-section h2 {
  font-size: 2em;
  color: #c8102e;
  margin-bottom: 30px;
}

.clients-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.client-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.client-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  height: 120px;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scrollLogos 60s linear infinite;
}

.carousel-track img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

.divider-line {
  width: 2px;
  background-color: #ccc;
  margin: 0 1rem;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Container Layout */
.values-achievements {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

/* Headings aligned horizontally */
.section-headings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0;
}

.section-headings h2 {
  flex: 1;
  font-size: 2.5em;
  color: #c8102e;
  margin: 0 20px;
  text-align: center;
}

/* Core Values Section */
.values-achievements {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

/* Horizontally aligned headings */
.section-headings {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

.section-headings h2 {
  flex: 1;
  font-size: 2.8em;
  color: #c8102e;
  margin: 0 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Core Values Section */
.core-values {
  position: relative;
  flex: 2 1 65%;
  background: url('assets/images/Weib river 3.jpg') no-repeat center center / cover;
  color: #fff;
  padding: 40px 20px 80px;
  text-align: left;
}

.core-values .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.core-values .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.value {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.value h3 {
  font-size: 1.5em;
  margin-bottom: 12px;
  color: #c8102e;
  font-weight: 600;
}


.value p {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Achievements Section */
.achievements {
  flex: 1 1 35%;
  background-color: #000;
  color: #fff;
  padding: 40px 20px 80px;
  text-align: left;
  display: flex;
  align-items: center;
}

.achievements .content {
  max-width: 400px;
  margin: auto;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat .icon {
  font-size: 2.8em;
  margin-bottom: 12px;
  color: #c8102e;
}

.stat h1 {
  font-size: 2.5em;
  margin: 0;
  color: #c8102e;
  font-weight: 700;
}

.stat p {
  font-size: 1em;
  margin-top: 10px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-achievements {
    flex-direction: column;
  }

  .section-headings {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px 20px 10px;
  }

  .section-headings h2 {
    font-size: 2em;
    margin: 0;
  }

  .core-values, .achievements {
    flex: 1 1 100%;
    padding: 40px 20px;
  }

  .core-values .content, .achievements .content {
    text-align: center;
  }

  .value h3 {
    font-size: 1.3em;
  }

  .value p, .stat p {
    font-size: 0.95em;
  }

  .stat h1 {
    font-size: 2em;
  }

  .stat .icon {
    font-size: 2.2em;
  }
} .slider-dots {
  text-align: center;
  margin-top: 8px;
}
.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.slider-dots .dot.active {
  background-color: #c8102e;
}

  .new-year-cta {
    height: 80vh;
    width: 100%;
    background-image: url('assets/images/1.jpg'); /* Replace with your chosen image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px;
  }

  .new-year-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Soft overlay for readability */
    z-index: 1;
  }

  .new-year-text {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Optional: adds contrast behind text */
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
  }

  .new-year-text h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .new-year-text p {
    font-size: 1.2em;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .new-year-text a {
    background-color: white;
    color: #C8102E;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .new-year-text a:hover {
    background-color: #f8b500;
    color: white;
  }
.stadia-footer {
  background-color: #000;
  color: white;
  padding: 60px 30px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #C8102E;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95em;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #C8102E;
}

.footer-center {
  flex: 1 1 400px;
  text-align: center;
}

.footer-logo {
  width: 160px;
  height: 60px;
  margin: 0 auto 20px;
  background-image: url('css/st.jpg'); /* Replace with your actual logo path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mission {
  font-size: 0.95em;
  line-height: 1.6;
  color: white;
  max-width: 500px;
  margin: auto;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #C8102E;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9em;
  color: white;
}


/* Sector Layout */
   .projects-section {
      padding: 60px 20px;
      background-color: #f9f9f9;
      text-align: center;
    }

    .projects-section h2 {
      font-size: 2.5em;
      color: #c8102e;
      margin-bottom: 10px;
      border-bottom: 3px solid #c8102e;
      display: inline-block;
      padding-bottom: 10px;
    }

    .intro-text {
      font-size: 1.1em;
      max-width: 700px;
      margin: 0 auto 40px;
      color: #555;
    }

    .sector {
      margin-bottom: 60px;
      text-align: left;
    }

    .sector h3 {
      font-size: 2em;
      color: #c8102e;
      margin-bottom: 20px;
      border-bottom: 2px solid #c8102e;
      padding-bottom: 5px;
    }

    .sector h4 {
      font-size: 1.4em;
      color: #333;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .project-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      text-align: left;
      padding-bottom: 15px;
    }

    .project-card:hover {
      transform: translateY(-5px);
    }

    .image-slider {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-bottom: 1px solid #eee;
    }

    .image-slider .slides {
      display: flex;
      transition: transform 0.5s ease;
    }

    .image-slider img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 10px;
    }

    .slider-nav span {
      background-color: rgba(0,0,0,0.5);
      color: white;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 3px;
      font-size: 18px;
    }

    .project-card h4 {
      font-size: 1.2em;
      margin: 15px;
      color: #c8102e;
    }

    .project-card p {
      font-size: 0.95em;
      margin: 0 15px 10px;
      color: #555;
    }

