/* Smooth scroll for anchor navigation */
html {
  scroll-behavior: smooth;
}

/* Offset anchored sections so sticky header doesn't cover content */
/* Adjust this value to your header height if it changes */
#home,
#about,
#jobs,
#testimonials,
#contact {
  scroll-margin-top: 100px;
}

/* If some browsers ignore scroll-margin for non-block elements, ensure sections behave as blocks */
#home,
#about,
#jobs,
#testimonials,
#contact {
  display: block;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Tablet positioning */
@media (max-width: 991px) {
  .whatsapp-sticky {
    bottom: 50px !important;
    right: 20px !important;
  }
}

/* Mobile device positioning */
@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 100px !important;
    right: 20px !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .whatsapp-sticky {
    bottom: 80px !important;
    right: 15px !important;
  }
  
  .whatsapp-sticky a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.whatsapp-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 30px;
}

.whatsapp-sticky a:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-sticky a i {
  line-height: 1;
}

/* Animation for the button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-sticky a {
  animation: pulse 2s infinite;
}

/* Header Logo Visibility - Override existing styles */
header.style-3 .header-logo {
  display: block !important;
  visibility: visible !important;
  padding: 15px 0 !important;
}

header.style-3 .header-logo img {
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.mobile-logo-wrap img {
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Ensure logo is visible on all screen sizes */
@media (max-width: 1399px) {
  header.style-3 .header-logo a img {
    max-width: 120px !important;
    max-height: 80px !important;
  }
}

@media (max-width: 991px) {
  header.style-3 .header-logo {
    display: block !important;
    visibility: visible !important;
    padding: 15px 0 !important;
  }
  
  header.style-3 .header-logo img {
    max-height: 60px !important;
    max-width: 100px !important;
  }
}

/* Vision Mission Why Choose Us Section Styling */
.vision-mission-area {
  background: #F8F8F8;
}

.vision-mission-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.vision-mission-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00A7AC, #008B8B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 167, 172, 0.3);
}

.vision-mission-card .card-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.vision-mission-card .card-content h4 {
  color: #061421;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-exo2);
}

.vision-mission-card .card-content p {
  color: #595959;
  line-height: 1.7;
  font-size: 1rem;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  color: #595959;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
}

.mission-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00A7AC;
  font-weight: bold;
  font-size: 1.1rem;
}

.why-choose-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-choose-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00A7AC, #008B8B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 167, 172, 0.3);
}

.why-choose-card .card-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.why-choose-card .card-content h5 {
  color: #061421;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--font-exo2);
}

.why-choose-card .card-content p {
  color: #595959;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-mission-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .why-choose-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .vision-mission-card .card-content h4 {
    font-size: 1.3rem;
  }
  
  .why-choose-card .card-content h5 {
    font-size: 1.1rem;
  }
}

/* Telegram Sticky Button */
.telegram-sticky {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1000;
}

/* Tablet positioning */
@media (max-width: 991px) {
  .telegram-sticky {
    bottom: 120px !important;
    right: 20px !important;
  }
}

/* Mobile device positioning */
@media (max-width: 768px) {
  .telegram-sticky {
    bottom: 170px !important;
    right: 20px !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .telegram-sticky {
    bottom: 150px !important;
    right: 15px !important;
  }
  
  .telegram-sticky a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.telegram-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #229ED9;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(34, 158, 217, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 30px;
  animation: pulse 2s infinite;
}

.telegram-sticky a:hover {
  background-color: #1b88ba;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(34, 158, 217, 0.6);
}

.telegram-sticky a i {
  line-height: 1;
}


