:root {
  --bg-navy: #0c1b5b;
  --accent-yellow: #ffc938;
  --accent-red: #e3412d;
  --text-white: #ffffff;
  --page-top: #eef3ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--page-top);
  color: var(--text-white);
}

/* ---------- Header Section ---------- */
.logo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px 100px;
  background: var(--bg-navy);
  position: relative;
}

.logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- Main Card ---------- */
.card {
  background: var(--bg-navy);
  padding: 72px 0 40px;
}

.container {
  max-width: 380px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- Titles ---------- */
.title {
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.3;
}

.intro {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  gap: 12px;
}

.line {
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.star {
  font-size: 16px;
  color: var(--text-white);
}

/* ---------- Services ---------- */
.services-title {
  text-align: center;
  color: var(--accent-red);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-list {
  list-style: none;
  text-align: center;
}

.services-list li {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 10px 0;
}

/* ---------- Consultants ---------- */
.consultants {
  margin-top: 20px;
}

.consultants-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-yellow);
}

.consultant-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.consultant-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.consultant-details {
  margin-top: 16px;
}

.consultant-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 6px;
}

.consultant-role {
  font-weight: 600;
  font-size: 15px;
  color: #d2d6ff;
  margin-bottom: 10px;
}

.consultant-details p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
  opacity: 0.95;
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .container { max-width: 900px; }
  .title { font-size: 42px; }
  .intro { font-size: 18px; max-width: 700px; margin: 0 auto; }
  .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
  }
  .consultant-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* ---------- Appointment Section ---------- */
.appointment-section {
  text-align: center;
  margin-top: 10px;
}

.appointment-section .section-title {
  font-size: 22px;
  color: var(--accent-yellow);
  font-weight: 700;
}

.whatsapp-btn {
  margin: 14px auto;
  display: inline-block;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* Make WhatsApp icon green and natural */
.whatsapp-icon path {
  fill: #25D366; /* WhatsApp brand green */
}

/* ---------- Departments Section ---------- */
.departments {
  margin-top: 20px;
  text-align: center;
}

.departments-title {
  font-size: 24px;
  color: var(--accent-yellow);
  font-weight: 700;
}

.department {
  margin: 28px 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.dept-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
}

.dept-name {
  color: var(--accent-yellow);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.department p {
  font-size: 14px;
  line-height: 1.6;
  color: #f8f8f8;
  opacity: 0.95;
}

/* ---------- Responsive Adjustments ---------- */
@media (min-width: 768px) {
  .departments-title { font-size: 28px; }
  .department {
    max-width: 500px;
    margin: 30px auto;
  }
  .dept-icon {
    width: 90px;
    height: 90px;
  }
  .dept-name {
    font-size: 18px;
  }
  .department p {
    font-size: 15px;
  }
}
/* ---------- Info Panels (Social/Eqpt/Contact/Address) ---------- */
.panel {
  margin-top: 18px;
}

.panel-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}

/* Social Media */
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 10px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  font-size: 16px;
}
.social-label { font-size: 14px; }

.social-link.youtube { background: #e3412d; }
.social-link.website { background: #7ddc6f; color: #08350b; }
.social-link.instagram { background: #ff2b74; }
.social-link.facebook { background: #1d4ed8; }

/* Equipments */
.equipment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  min-height: 350px;
  display: flex;
  flex-direction: column;
}
.equipment-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}
.equipment-content { 
  padding: 14px; 
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.equipment-title {
  font-size: 16px;
  font-weight: 700;
  color: #bcd3ff;
  margin-bottom: 6px;
}
.equipment-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}
/* ---------- Equipments: horizontal scroll ---------- */
.equipment-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.equipment-scroll::-webkit-scrollbar { display: none; }
.equipment-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* keep card visuals; add snapping */
.equipment-card { scroll-snap-align: center; }

/* Dots */
.equipment-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}
.equipment-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}
.equipment-dots button.active {
  background: var(--accent-yellow);
  transform: scale(1.2);
}

/* ---------- Address styling ---------- */
.address-panel { text-align: center; }

.map-card {
  margin-top: 10px;
  border-radius: 12px;
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }

.address-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  background: #4053b9;
  color: #fff;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.4;
}
.address-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .map-card { height: 220px; }
}


.map-card {
  margin-top: 10px;
  border-radius: 12px;
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.address-text {
  font-size: 13.5px;
  margin-top: 10px;
  line-height: 1.6;
  text-align: center;
  opacity: 0.95;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .panel-title { font-size: 22px; }
  .map-card { height: 220px; }
  .equipment-card { min-height: 400px; }
  .equipment-image { height: 250px; }
}

/* Mobile equipment adjustments */
@media (max-width: 767px) {
  .equipment-scroll {
    grid-auto-columns: 85%;
    gap: 12px;
    padding: 0 20px;
  }
  .equipment-card {
    min-height: 320px;
  }
  .equipment-image {
    height: 180px;
  }
  .equipment-content {
    padding: 12px;
  }
  .equipment-title {
    font-size: 15px;
  }
  .equipment-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}



.contact-panel { text-align: left; }

.contact-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-red);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  justify-content: flex-start;
}
.contact-button:hover { filter: brightness(1.05); box-shadow: 0 12px 24px rgba(0,0,0,0.35); }

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
}
.phone-note {
  font-size: 13.5px;
  margin-top: 10px;
  opacity: 0.9;
}