/* General Styles */
  
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
  
/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  overflow: hidden;
}

.hero-section.home-page {
  align-items: center;
}

.hero-content {
  width: 100%;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h1,
.section-heading h2 {
  font-size: 4.3rem;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 2px #000000;
}

.section-heading.dark-blue h2 {
  color: #10528c;
}

.section-heading.white h2{
  color: #ffffff;
}

.heading-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #175771, #ffe102);
  margin: 10px auto 1.5rem;
  border-radius: 2px;
  border: none;
}

.heading-line.top-heading-line {
  background-color: #ffffff;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.slider-nav i {
  font-size: 18px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background: white;
}

.hero-section h3 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 1px #242424;
}


/* Overview Section */
.overview-section {
  padding: 40px 0;
}

.overview-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}

/* Values Section */
.values-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px;
}

.card-container .card {
  background: #f0f0f0;
  border-radius: 15px;
  width: 370px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #10528c, #1a73e8);
  transition: all 0.9s ease;
  z-index: 1;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  height: 100%;
  opacity: 0.1;
}

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  z-index: 2;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #10528c;
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  color: #1a73e8;
  transform: scale(1.1);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #10528c;
  transition: all 0.4s ease;
  padding-top: 10px;
}

.card:hover h3 {
  color: #1a73e8;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #555;
  transition: all 0.4s ease;
  padding: 8px;
  font-style: italic;
}

.card:hover p {
  color: #333;
}

/* Capabilities Section */
.capabilities-section {
  padding: 80px 0;
  background: white;
}

.capabilities-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.capabilities-list li {
  background: #10528c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1rem;
}

.capability-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid #10528c;
  text-align: center;
}

.capability-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  color: #10528c;
  margin-bottom: 20px;
}

.capability-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.capability-card p {
  color: #4b5153;
  margin-bottom: 20px;
  line-height: 1.6;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.capability-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #34495e;
  background: none;
}

.capability-list li:last-child {
  border-bottom: none;
}

.vision-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-icon {
  font-size: 2.5rem;
  color: #10528c;
  margin-bottom: 20px;
}

.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #5c768e;
}

.vision-card p {
  color: #4b5153;
  line-height: 1.6;
}

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.values-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.values-list i {
  margin-right: 10px;
  color: #10528c;
}


/* Stats Counter Section  */
.stats-container {
  background: linear-gradient(rgba(185, 185, 185, 0.8), rgba(0,0,0,0.8)), url('../images/nice-house.png');
  padding: 80px 0;
}

.stats-container .stat-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}

.stat-card {
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 10px auto;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 3px;
  background: #10528c;
}

.stat-label {
  font-size: 1.1rem;
  color: #7f8c8d;
  font-weight: 600;
  margin-top: 1.5rem;
  line-height: 1.4;
}

.stat-description {
  font-size: 0.9rem;
  color: #3498db;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* Clients Section */
.clients-section {
  background: #f8f9fa;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.client-item {
  flex: 0 1 160px;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.client-item img {
  max-height: 100px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-item.vic-falls-logo img {
  width: 440px;
}

.client-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}