@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@700&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Add SVG pattern background */
  background: #f4f9fc url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1.5" fill="%23b8d4ff" fill-opacity="0.18"/></svg>');
  background-repeat: repeat;
  background-size: 40px 40px;
  font-family: 'Inter', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #222;
  scroll-behavior: smooth;
  font-size: 18px;
}

/* Accent font for headings */
h1, h2, h3, h4, .site-name {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #0077b6;
}

/* Sticky Header */
header {
  background: linear-gradient(to right, #0a2f5c, #14477c);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  animation: headerPulseShadow 3s ease-in-out infinite;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

/* Logo image */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* Site name bigger */
.site-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0 1rem 0 0;
  color: #ffffff !important; /* Force white color with higher specificity */
  white-space: nowrap;
  animation-name: headerFadeIn;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
}

/* Tagline next to site name */
.tagline {
  font-size: 1.25rem;
  color: #b8d4ff;
  margin: 0;
  white-space: nowrap;
  animation-name: headerFadeIn;
  animation-duration: 0.6s;
  animation-delay: 0.6s;
  user-select: none;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -4px;
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

main {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(10,47,92,0.08);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #e3eefc 0%, #b8d4ff 100%);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
  animation: heroGradientMove 8s ease-in-out infinite alternate;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #0a2f5c;
  padding: 2.5rem 1.5rem;
  animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #14477c;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, #0077b6 0%, #90caf9 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 32px;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,119,182,0.12);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-shadow: 0 1px 8px rgba(10,47,92,0.08);
  animation: ctaPulse 2.5s infinite;
}
.hero-cta:hover {
  background: linear-gradient(90deg, #14477c 0%, #0077b6 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,119,182,0.18);
}
@keyframes heroGradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section separation */
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(10,47,92,0.04);
  padding: 2.2rem 1.5rem;
  margin-bottom: 2.5rem;
  transition: box-shadow 0.4s, background 0.4s;
}
section:not(:first-child) {
  margin-top: 1.5rem;
}
section:hover {
  box-shadow: 0 8px 32px rgba(10,47,92,0.10);
  transform: none;
}

/* Card hover for partners/services */
.partner, .accordion-title {
  box-shadow: 0 2px 8px rgba(0,119,182,0.07);
  transition: box-shadow 0.3s, transform 0.2s;
}
.partner:hover, .accordion-title:hover {
  box-shadow: 0 8px 24px rgba(0,119,182,0.13);
  transform: translateY(-3px) scale(1.03);
}

/* Micro-animations for images */
.partner-img, .founder-img img {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}
.partner-img:hover, .founder-img img:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(0,119,182,0.13);
}

/* Divider for section separation */
section + section::before {
  content: '';
  display: block;
  height: 32px;
  background: linear-gradient(90deg, #e3eefc 0%, #b8d4ff 100%);
  border-radius: 16px;
  margin: 0 auto 1.5rem auto;
  width: 60%;
  opacity: 0.18;
}

/* Section titles */
section h2 {
  color: #0a2f5c;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0a2f5c;
  padding-bottom: 0.3rem;
  font-size: 1.8rem;
  font-weight: 600;
}

/* Accordion styles */
.accordion-title {
  background-color: #e3eefc;
  color: #0a2f5c;
  padding: 0.8rem 1rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 0.7rem;
  transition: background 0.3s ease;
  position: relative;
  user-select: none;
}

.accordion-title::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-title.open::after {
  content: '-';
}

.accordion-title:hover {
  background-color: #d2e5f9;
}

/* Accordion content with smooth max-height and opacity transition */
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: #f0f8ff;
  border-left: 4px solid #0077b6;
  margin-bottom: 1rem;
  border-radius: 0 6px 6px 6px;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.accordion-content.active {
  max-height: 300px; /* enough for content */
  opacity: 1;
  padding: 0.75rem 1rem;
}

/* Extra info sections */
.extra-info h3 {
  color: #0a2f5c;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.extra-info ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Founder section flex for text left, image right */
.founder-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;;
  gap: 1.5rem;
  margin-top: 1rem;
}

.founder-text {
  flex: 1 1 400px;
  font-size: 1rem;
  color: #333;
  font-size: 1.1rem;      
  line-height: 1.6;
  margin-bottom: 10px;
}

.founder-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #e3eefc 60%, #f4f9fc 100%);
  border-radius: 18px;
  padding: 2rem 0;
}
.founder-img img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: none;
  background: none;
  padding: 0;
  display: block;
  margin: 0 auto 1.5rem auto;
  object-fit: contain;
}

/* Partners grid */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.partner {
  flex: 1 1 30%;
  background: #ffffff;
  border: 1px solid #d1e7ff;
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.partner-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  transition: none;
  /* Remove cursor: zoom-in */
  cursor: default !important;
  pointer-events: none !important;
  border-top: none !important;
  box-shadow: none !important;
}

.partner-img:hover {
  transform: scale(1.05);
}

/* Partner description with smooth transition */
.partner-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #f9fafe;
  padding: 0 0.6rem;
  border-radius: 6px;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  text-align: left;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  word-break: break-word;
  white-space: normal;
}

.partner-desc.show {
  max-height: 900px;
  opacity: 1;
  padding: 0.75rem 0.6rem 1.5rem 0.6rem;
}

/* Contact section */
#contact p {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

#contact i {
  color: #0077b6;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background: linear-gradient(120deg, #0a2f5c 60%, #14477c 100%);
  color: #d3e4ff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 24px rgba(10,47,92,0.08);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-left: 0;
  margin-right: 0;
  background: none;
  margin-bottom: 2rem;
}

.footer-top div {
  flex: 1 1 250px;
}

.footer-top h4 {
  margin-bottom: 0.8rem;
}

.footer-top ul {
  list-style: none;
  padding-left: 0;
}

.footer-top ul li a {
  color: #d3e4ff;
}

.footer-top ul li a:hover {
  color: #90caf9;
}

.social-icons a {
  color: #d3e4ff;
  margin-right: 1rem;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #90caf9;
}

.social-icon-fa i {
  font-size: 2.1rem;
  color: #0077b6;
  margin-right: 1.2rem;
  transition: color 0.3s;
  vertical-align: middle;
}
.social-icon-fa i:hover {
  color: #14477c;
}
.social-icon-fa {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.2rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
@keyframes headerPulseShadow {
  0%, 100% {
    box-shadow: 0 0 15px 3px rgba(255,255,255,0.4);
  }
  50% {
    box-shadow: 0 0 25px 6px rgba(255,255,255,0.75);
  }
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin-bottom: 0.5rem;
  }

  .founder-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-text, .founder-img {
    flex: none;
    width: 100%;
  }

  .partner-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .partner {
    flex: none;
    width: 100%;
  }
}

/* Responsive hero */
@media (max-width: 700px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-section { min-height: 220px; }
}

/* Prepare for floating contact button */
.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
  background: linear-gradient(90deg, #0077b6 0%, #90caf9 100%);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,119,182,0.18);
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.floating-contact:hover {
  background: linear-gradient(90deg, #14477c 0%, #0077b6 100%);
  transform: scale(1.08);
}

/* Professional full-width section backgrounds */
.section-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #e3eefc;
  padding: 0;
  z-index: 0;
}
.section-band.alt {
  background: #f4f9fc;
}

/* Section container for content alignment */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 3.5rem 3.5rem 3.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .section-container {
    padding: 2rem 1rem 2rem 1rem;
  }
}

/* Remove hover scaling on main sections for a steadier, professional feel */
section {
  transition: box-shadow 0.4s, background 0.4s;
  box-shadow: 0 2px 12px rgba(10,47,92,0.04);
  background: #fff;
  border-radius: 18px;
  margin-bottom: 2.5rem;
}
section:hover {
  box-shadow: 0 8px 32px rgba(10,47,92,0.10);
  transform: none;
}

/* Elegant headings */
h1, h2, h3, h4, .site-name {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #0a2f5c;
  margin-bottom: 1.2rem;
}
section h2 {
  border-bottom: none;
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
}

/* Card refinement */
.partner, .accordion-title {
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,119,182,0.06);
  border: 1px solid #e3eefc;
  background: #f9fbfd;
}
.partner:hover, .accordion-title:hover {
  box-shadow: 0 8px 24px rgba(0,119,182,0.10);
}

/* More whitespace for professional look */
.partner, .accordion-title {
  margin-bottom: 1.5rem;
}

/* Remove divider between sections for a cleaner look */
section + section::before {
  display: none;
}

/* Hero logo styling */
.hero-logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 120px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(10,47,92,0.10);
  background: #fff;
  padding: 8px;
}

/* Partner logos bar */
.partner-logos {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,119,182,0.08);
  background: #fff;
  padding: 6px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.partner-logos img:hover {
  box-shadow: 0 8px 24px rgba(0,119,182,0.13);
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .partner-logos img {
    height: 40px;
    padding: 3px;
  }
  .hero-logo {
    max-width: 80px;
    padding: 4px;
  }
}

/* Modern About Us section */
.about-modern {
  background: linear-gradient(120deg, #f4f9fc 60%, #e3eefc 100%);
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(10,47,92,0.07);
  padding: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
  min-height: 340px;
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}
.about-modern::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle at 40% 40%, #b8d4ff 0%, #e3eefc 100%);
  opacity: 0.18;
  z-index: 0;
  border-radius: 50%;
  animation: aboutShapeMove 8s ease-in-out infinite alternate;
}
@keyframes aboutShapeMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(30px) scale(1.05); }
}
.about-grid {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 3.5rem 2.5rem;
  position: relative;
  z-index: 1;
}
.about-img-col {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img-modern {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,119,182,0.10);
  background: #fff;
  padding: 1.5rem;
  animation: fadeInLeft 1.2s cubic-bezier(.4,0,.2,1);
}
.about-text-col {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInRight 1.2s cubic-bezier(.4,0,.2,1);
}
.about-modern h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #0a2f5c;
  letter-spacing: 1px;
}
.about-highlight {
  color: #0077b6;
  background: #e3eefc;
  border-radius: 12px;
  padding: 0.2em 0.7em;
  font-weight: 700;
}
.about-lead {
  font-size: 1.18rem;
  font-weight: 600;
  color: #14477c;
}
.about-bullets {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  list-style: disc inside;
  color: #14477c;
  font-size: 1.13rem;
  line-height: 1.8;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .about-img-modern {
    width: 140px;
    height: 140px;
    padding: 0.7rem;
  }
  .about-modern h2 {
    font-size: 1.6rem;
  }
}

/* Modern Services section */
.services-modern {
  background: linear-gradient(120deg, #e3eefc 60%, #f4f9fc 100%);
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(10,47,92,0.07);
  padding: 0;
  overflow: visible;
  margin-bottom: 3rem;
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}
.services-modern h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  color: #0a2f5c;
  letter-spacing: 1px;
  text-align: left;
  padding-left: 2rem;
  padding-top: 2rem;
}
.services-grid {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  padding: 2rem 2rem 2.5rem 2rem;
  scroll-snap-type: x mandatory;
}
.service-card {
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,119,182,0.07);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
  transition: box-shadow 0.3s, transform 0.2s;
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,119,182,0.13);
  transform: translateY(-4px) scale(1.03);
}
.service-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,119,182,0.10);
  background: #e3eefc;
}
.service-card h3 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 1rem;
  text-align: center;
}
.service-card ul {
  font-size: 1.05rem;
  color: #14477c;
  margin: 0;
  padding-left: 1.1rem;
  text-align: left;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem 0.5rem 2rem 0.5rem;
  }
  .service-card {
    min-width: 0;
    max-width: 100%;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .services-modern h2 {
    padding-left: 1rem;
    padding-top: 1rem;
    font-size: 1.3rem;
  }
}

.staffs-modern {
  background: linear-gradient(120deg, #f4f9fc 60%, #e3eefc 100%);
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(0,119,182,0.07);
  padding: 0;
  overflow: visible;
  margin-bottom: 3rem;
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1);
}
.staffs-modern h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  color: #0a2f5c;
  letter-spacing: 1px;
  text-align: left;
  padding-left: 2rem;
  padding-top: 2rem;
}
.staffs-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 2rem 2.5rem 2rem;
}
.staff-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,119,182,0.07);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 260px;
  transition: box-shadow 0.3s, transform 0.2s;
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}
.staff-card:hover {
  box-shadow: 0 8px 32px rgba(0,119,182,0.13);
  transform: translateY(-4px) scale(1.03);
}
.staff-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,119,182,0.10);
  background: #e3eefc;
}
.staff-card h3 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 0.5rem;
  text-align: center;
}
.staff-title {
  font-size: 1rem;
  color: #14477c;
  font-weight: 600;
  margin-bottom: 0.7rem;
  text-align: center;
}
.staff-note {
  font-size: 0.98rem;
  color: #333;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .staffs-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem 0.5rem 2rem 0.5rem;
  }
  .staff-card {
    min-width: 0;
    max-width: 100%;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .staffs-modern h2 {
    padding-left: 1rem;
    padding-top: 1rem;
    font-size: 1.3rem;
  }
}
