body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile improvements */
@media (max-width: 576px) {
  .floating-whatsapp {
    left: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-enquire {
    right: 10px;
    bottom: 10px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .top-phone-bar {
    padding: 6px 0;
    font-size: 14px;
  }

  .about-hero {
    padding: 2rem 0;
  }

  .about-content {
    padding: 2rem 0;
  }

  .team-section {
    padding: 2rem 0;
  }

  .cta-section {
    padding: 2rem 0;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
.cta-btn:focus,
.floating-whatsapp:focus,
.floating-enquire:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .floating-whatsapp,
  .floating-enquire,
  .top-phone-bar {
    display: none !important;
  }
}


/* Top Phone Bar */
.top-phone-bar {
  background: var(--primary-yellow);
  color: var(--black);
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-phone-bar a {
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-phone-bar a:hover {
  color: var(--white);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #20b358;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

.floating-enquire {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: bounce-enquire 3s infinite;
  cursor: pointer;
}

.floating-enquire:hover {
  background:  var(--white);
  color:var(--black);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

@keyframes bounce-enquire {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
  color: var(--black);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: slideInDown 1s ease-out;
}

.about-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.3s both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  background: var(--white);
  padding: 4rem 0;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 2px;
}

.about-section h3 {
  color: var(--black);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.about-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 3px solid var(--primary-yellow);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
font-size: 1.8rem;
font-weight: 700;
color: #ffc107;
display: block;
font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
letter-spacing: 0.5px;
}


.stat-label {
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 1rem;
}

.value-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.team-section {
  background: var(--light-gray);
  padding: 4rem 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  background: var(--primary-yellow);
  color: var(--black);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 191, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section h3 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
