:root {
  --navy-blue: #004d66;
  --light-navy: #004d66;
  --accent-blue: #004d66;
  --off-white: #ffffff;
  --eco-green: #4caf50;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: var(--off-white);
}


.hero-section {
  background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
  color: white;
  padding: 100px 0;
  margin-bottom: 50px;
}

.section-title {
  color: var(--navy-blue);
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
left: 50%;
 
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-blue);
}

.stats-item {
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.stats-item:hover {
  transform: scale(1.05);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 10px;
}

.stats-label {
  color: var(--light-navy);
  font-weight: 600;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--accent-blue);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: white;
  border: 4px solid var(--accent-blue);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: var(--navy-blue);
  color: rgb(255, 255, 255);
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent-blue);
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
  opacity: 1;
}

.slide-up {
  transform: translateY(20px);
}

.slide-up.animate {
  transform: translateY(0);
}

.slide-left {
  transform: translateX(-20px);
}

.slide-left.animate {
  transform: translateX(0);
}

.slide-right {
  transform: translateX(20px);
}

.slide-right.animate {
  transform: translateX(0);
}

/* Products Section Styles */
.products-section {
  background-color: var(--navy-blue);
  color: white;
  padding: 80px 0;
}

.product-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.product-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.product-title {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-text {
  color: rgba(255, 255, 255, 0.8);
}

.eco-badge {
  display: inline-block;
  background-color: var(--eco-green);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .timeline::after {
      left: 31px;
  }
  
  .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
  }
  
  .timeline-item::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
  }
  
  .left::after, .right::after {
      left: 18px;
  }
  
  .right {
      left: 0%;
  }
}



footer a:hover {
color: #ffa726 !important;
text-decoration: underline;
}

footer .btn:hover {
background-color: #ff8a00 !important;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
transform: translateY(-2px);
transition: all 0.3s ease;
}

footer a:hover {
color: #ffa726 !important;
text-decoration: underline;
}

footer .btn:hover {
background: #ff8a00;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
transform: translateY(-2px);
transition: all 0.3s ease;
}

footer .form-control:focus {
outline: none;
box-shadow: 0 0 10px rgba(255, 167, 38, 0.7);
border: none;
}

footer a i:hover {
transform: scale(1.2);
transition: transform 0.3s ease;
}

footer a:hover {
color: #ffa726 !important;
text-decoration: underline;
}

footer button:hover {
background-color: #ff8a00;
color: #fff;
transition: 0.3s ease;
}


.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0.5rem 0;
  z-index: 1;
  top: 100%;
  left: 0;
  }
  
  .dropdown:hover .dropdown-menu {
  display: block;
  }
  
  .dropdown-menu li {
  margin: 0;
  padding: 0;
  }
  
  .dropdown-menu a {
  color: #333;
  padding: 0.75rem 1rem;
  display: block;
  transition: background-color 0.3s ease;
  }
  
  .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #004d66;
  }

  .enquire-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #004d66;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquire-btn:hover {
    background-color: #ffa726;
}