

  /* About Page */ 
  .about-hero p {
    font-size: 1.2rem;
    color: #ddd;
  }
  
  .about-content {
    padding: 50px 20px;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-box {
    margin-bottom: 40px;
  }
  
  .about-box h2 {
    color: #003366;
    margin-bottom: 10px;
  }
  
  .about-box p, 
  .about-box ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }
  
  .about-box ul {
    padding-left: 20px;
  }
  
  .about-wrapper {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
    padding: 0px;
    flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
  }
  
  .about-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
 .about-hero {
  flex: 1 1 35%;
  max-width: 350px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.about-logo {
  width: 100%;
  border-radius: 6px;
}

.about-hero a {
  display: block;
  padding: 6px;
  margin: 3px 0;
  color: white;
  background-color: #1a73e8;
  text-decoration: none;
  border-radius: 4px;
}

.about-hero h5 a {
  padding: 8px;
  text-align: center;
}

.about-hero p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.about-hero p.phone::before { content: "📞 "; }
.about-hero p.email::before { content: "✉️ "; }
.about-hero p.location::before { content: "📍 "; }

/* =========================
   Responsive Styles
========================= */

/* Tablet screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .about-wrapper {
    flex-direction: column;
    width: 90%;
    gap: 30px;
  }

  .about-content {
    gap: 15px;
  }

  .about-box {
    padding: 15px;
  }

  .about-hero {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-logo {
    width: 100%;
    height: auto;
  }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
  .about-wrapper {
    width: 95%;
    gap: 20px;
  }

  .about-content {
    gap: 10px;
  }

  .about-box {
    padding: 12px;
    font-size: 0.95rem;
  }

  .about-box h2 {
    font-size: 1.2rem;
  }
 
  .about-box p, 
  .about-box ul {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .about-hero h5 a {
    font-size: 15px;
    padding: 6px;
  }

  .about-hero a {
    font-size: 14px;
  }

  .sidebar p {
    font-size: 13px;
    background: none !important;
    color: #333 !important;
    white-space: normal;
    margin: 5px 0;
    padding: 0;
    display: block;
    text-align: left;
  }

  .sidebar p::before {
    margin-right: 5px;
  }

  .phone {
    background-color: none;
    white-space: normal;
  }

  .about-logo {
    max-width: 100%;
    height: auto;
  }
}

/* Extra small mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .about-wrapper {
    width: 100%;
    gap: 15px;
  }

  .about-box {
    padding: 10px;
    border-radius: 8px;
  }

  .about-box h2 {
    font-size: 1.1rem;
  }

  .about-hero {
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .about-hero h5 a {
    font-size: 14px;
  }

  .about-hero a {
    font-size: 13px;
  }

  .sidebar p {
    font-size: 12px;
    background: none !important;
    color: #333 !important;
    white-space: normal;
    margin: 5px 0;
    padding: 0;
    display: block;
    text-align: left;
  }

  .sidebar p::before {
    margin-right: 5px;
  }
}.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.9s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-left {
opacity: 0;
transform: translateX(-40px);
transition: all 0.9s ease;
}
.reveal-left.visible {
opacity: 1;
transform: translateX(0);
}
.reveal-right {
opacity: 0;
transform: translateX(40px);
transition: all 0.8s ease;
}
.reveal-right.visible {
opacity: 1;
transform: translateX(0);
}
