/* ========== Base ========== */
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #b3001e; /* Bootstrap danger red */
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ========== Hero Section ========== */
.hero-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-team {
  /* use path relative to this CSS file so it works locally and in production */
  background-image: url("../images/team.png");
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* slightly more transparent so the background image is clearly visible */
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
}

.hero-bg > .container {
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.highlight {
  color: #e7002e;
  font-weight: 600;
}

/* ========== Image Grid (Staggered Layout) ========== */
.image-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.image-grid img {
  width: 250px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  filter: grayscale(100%);
  background-color: #fdfdfd;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hover animation */
.image-grid img:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Staggered positioning: down–up–up–down pattern */
.image-grid img:nth-child(1) {
  transform: translateY(40px);
}

.image-grid img:nth-child(2) {
  transform: translateY(10px);
}

.image-grid img:nth-child(3) {
  transform: translateY(-20px);
}

.image-grid img:nth-child(4) {
  transform: translateY(10px);
}

/* Responsive fix */
@media (max-width: 992px) {
  .image-grid {
    justify-content: center;
  }
  .image-grid img {
    width: 45%;
    height: auto;
    transform: none !important; /* disable stagger on small screens */
  }
}

@media (max-width: 576px) {
  .image-grid img {
    width: 100%;
    height: auto;
  }
}

/* ========== WHAT WE DO Section ========== */
.what-we-do {
  background-color: #111;
  color: #fff;
  padding: 100px 0;
}

.section-subtitle {
  color: #b3b3b3;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
}

.section-text2 {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-left: auto;
}

/* Expertise grid */
.expertise-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 10px;
}

.category h6 {
  color: #b3b3b3;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

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

.category li {
  margin-bottom: 10px;
}

.category a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0;
  transition: color 0.3s ease;
}

.category a:hover {
  color: #b3001e;
}

/* SEE ALL button */
.btn-see-all {
  background-color: #e7002e;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  padding: 10px 20px;
  text-transform: uppercase;
}

.btn-see-all:hover {
  background-color: #b3001e;
}

/* Responsive layout */
@media (max-width: 992px) {
  .expertise-grid {
    flex-direction: column;
  }
}

.recent-work {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  border: none;
  background: #f1f1f1;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #b3001e;
  color: #fff;
}

.work-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.work-carousel::-webkit-scrollbar {
  display: none;
}

.work-card {
  position: relative;
  flex: 0 0 350px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.work-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.work-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1rem;
  font-weight: 600;
}

.overlay p {
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 4px;
}

.happy-customers {
  text-align: center;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.happy-customers h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.happy-customers span {
  color: #e7002e;
  font-weight: 600;
}

.customer-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.customer-carousel {
  display: flex;
  align-items: center;
  gap: 60px;
  scroll-behavior: smooth;
}

.customer-card {
  flex: 0 0 150px;
  transition: transform 0.4s ease;
}

.customer-card:hover {
  transform: scale(1.1);
}

.customer-card img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.customer-card:hover img {
  filter: grayscale(0%);
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Arrows */
.carousel-controls {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .customer-carousel {
    gap: 40px;
  }

  .customer-card {
    flex: 0 0 120px;
  }

  .happy-customers h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .customer-carousel {
    gap: 30px;
  }

  .customer-card {
    flex: 0 0 100px;
  }

  .happy-customers h2 {
    font-size: 1.6rem;
  }

  .sched-right-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }
  
  .calendar-wrapper,
  .times-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .customer-carousel {
    gap: 20px;
  }

  .customer-card {
    flex: 0 0 80px;
  }

  .happy-customers h2 {
    font-size: 1.4rem;
  }
}

/* ======================
   WHY DIGIMARKET SECTION
   ====================== */
.why-digimarket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background: #fef7f6;
  padding: 100px 10%;
  flex-wrap: wrap;
}

.why-left img {
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: floatImage 4s ease-in-out infinite;
}

.hero-image{
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: floatImage 4s ease-in-out infinite;
}

.why-right {
  flex: 1;
  max-width: 550px;
}

.why-right h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-right span {
  color: #e7002e;
}

.why-right p {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.why-list li {
  font-weight: 500;
  margin-bottom: 12px;
  color: #333;
}

.why-list i {
  color: #e7002e;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Button Styling */
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  display: inline-block;
  border-color:transparent;
}

.btn-primary:hover {
  background: #b3001e;
  transform: translateY(-3px);
  border-color:transparent;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible {
  background: #b3001e !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Floating animation for the image */
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive Layout */
@media (max-width: 992px) {
  .why-digimarket {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .why-left img {
    width: 100%;
    max-width: 380px;
  }

  .why-right {
    max-width: 100%;
  }

  .why-list {
    text-align: left;
    display: inline-block;
  }
}


/* Our Process Section */
.our-process {
  text-align: center;
  background: #fff;
  padding: 100px 10%;
}
.process-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}
.process-card {
  border: 2px solid #e7002e;
  color: #e7002e;
  padding: 30px 50px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.process-card:hover {
  background: #b3001e;
  color: #fff;
  transform: scale(1.05);
}

/* ========== Agency ========== */
.agency-hero h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.agency-hero p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
.process-box {
  border: 2px solid #e7002e;
  padding: 30px 50px;
  border-radius: 12px;
  font-weight: 600;
  color: #e7002e;
  transition: all 0.3s ease;
}
.process-box:hover {
  background: #b3001e;
  color: #fff;
  transform: scale(1.05);
}
.client-logo {
  width: 120px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.award-card {
  background-color: rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
.award-card:hover {
  transform: translateY(-5px);
}

:root {
  --brand-red: #e7002e;   /* DIGIMarket primary */
  --brand-dark: #0D1A2D;  /* headings */
  --muted: #6f7e86;
  --bg-light: #F3F5F7;
  --card-bg: #ffffff;
  --radius: 12px;
  --shadow-strong: 0 18px 50px rgba(13,26,45,0.14);
}

/* Base */
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg-light);
  color: var(--brand-dark);
  margin: 0;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Brand */
.site-brand { color: var(--brand-red); font-weight:800; letter-spacing:.4px; }

/* Book button */
.btn-outline-brand {
  border:1px solid var(--brand-red);
  color: var(--brand-red);
  background: transparent;
  border-radius: 8px;
  padding: 8px 16px;
}
.btn-outline-brand:hover { background: var(--brand-red); color: #fff; }

.modal-close {
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-close:hover {
  background: #b3001e;
  transform: scale(1.1);
}

.btn-back {
  padding: 8px 16px;
  border-radius: 24px;
  border: none;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: white;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
}

.btn-back:hover {
  transform: translateX(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.arrow-left {
  font-size: 16px;
}

/* Scheduler overlay & modal (Calendly-like large popup) */
.sched-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,26,45,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

/* Main modal */
.sched-modal {
  width: 980px;
  max-width: calc(100% - 40px);
  height: 640px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  display: flex;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .2s;
}

/* LEFT PANEL: brand red background with subtle decorative image (low-opacity) */
.sched-left {
  width: 560px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(212,56,63,1) 0%, rgba(212,56,63,0.92) 100%);
  position: relative;
}
.sched-left::after {
  /* decorative overlay using uploaded file - low opacity, subtle */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/images/team.png");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 12px 0 0 12px;
}
.left-content { position: relative; z-index: 2; }
.host-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);

  /* Add these for image */
  background-size: cover;       /* Fill circle completely */
  background-position: center;  /* Center the image */
  background-repeat: no-repeat; /* Avoid tiling */
}
.host-name { color: rgba(255,255,255,0.9); font-size:13px; margin-top:6px; }
.left-title { margin: 8px 0 0; font-size:22px; font-weight:800; color: #fff; }
.duration { color: rgba(255,255,255,0.9); font-size:13px; margin-top:6px; }
.left-desc { color: rgba(255,255,255,0.92); margin-top:12px; line-height:1.45; font-size:14px; }
.left-footer { margin-top:auto; color: rgba(255,255,255,0.85); font-size:13px; }

/* RIGHT PANEL */
.sched-right {
  flex: 1; padding: 18px 26px; background: var(--card-bg);
}

.sched-right-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Calendar wider than times */
  gap: 20px;
  margin-top: 12px;
}

/* Header */
.sched-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.sched-title { font-size:20px; font-weight:700; color:var(--brand-dark); }

/* Calendar controls */
.cal-controls {
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cal-controls .btn {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cal-controls .btn:hover {
  background-color: #fde2e2;
  border-color: #b3001e;
}

.cal-month {
  font-size: 1rem;
  color: #e7002e;
  min-width: 130px;
  text-align: center;
}

#tzSearch {
  max-width: 120px;
  padding: 2px 8px;
  font-size: 0.85rem;
}

#tzTime {
  font-size: 0.85rem;
  color: #6c757d;
}
.timezone-row {
  white-space: nowrap;
}
.month-nav { display:flex; align-items:center; gap:10px; }
.tz-label { color:var(--muted); font-size:13px; }

/* Grid: weekday headers + days */
.cal-grid {
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:10px;
  margin-top:10px;
}
.cal-grid > div { font-size:13px; text-align:center; }
.cal-cell {
  height:48px; display:flex; align-items:center; justify-content:center;
  border-radius:10px; cursor:pointer; color:var(--brand-dark);
  background: transparent; transition: background .14s, transform .12s;
}
.cal-cell.inactive { color:#c5d0d9; cursor:default; background:transparent; }
.cal-cell:hover:not(.inactive) { transform: translateY(-3px); }
.cal-cell.selected {
  background: #e7002e;
  color: #fff;
  box-shadow: 0 8px 26px rgba(11,102,255,0.12);
}

.calendar-wrapper {
    width: 100%
}
.times-wrapper {
    width: 250px;
}

/* Time list */
.times-section { margin-top:14px; }
.time-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two equal columns */
  gap: 10px;
  max-height: 400px;
  overflow-y: auto; /* vertical scroll */
  padding-right: 6px;
}
.time-slot {
  border:1px solid rgba(11,102,255,0.12);
  padding:12px 14px; border-radius:10px; cursor:pointer; font-weight:700; color:#e7002e;
  background:#fff;
}
.time-slot:hover { background:#f1f7ff; transform: translateY(-2px); }
.time-slot.selected { background:#b3001e; color:#fff; border-color:transparent; }

/* Form */
.details-form { margin-top:12px; }
.form-control { border-radius:8px; height:44px; box-shadow:none; border:1px solid #eef6fb; }
.back-link { color:#e7002e; cursor:pointer; font-weight:700; }

/* Confirmation */
.step-confirm img { border-radius:10px; box-shadow: 0 10px 30px rgba(13,26,45,0.06); }

/* Responsive */
@media (max-width: 980px) {
  .sched-right-grid {
    grid-template-columns: 1fr !important;  /* Calendar + times stack */
  }

  .time-list {
    grid-template-columns: 1fr;             /* Only 1 column of times */
    max-height: 220px;
  }

  .times-wrapper {
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
  }
}

/* @media (max-width: 600px) {
  .sched-right-grid {
    grid-template-columns: 1fr !important;
  }

  .time-list {
    grid-template-columns: 1fr;
  }
} */

@media (max-width: 600px) {

  .sched-modal {
    height: 100vh !important;        /* full screen */
    max-height: 100vh !important;
    overflow-y: auto !important;     /* scroll inside */
    display: flex;
    flex-direction: column;
  }

.sched-right {
    order: 2;
  }
  .calendar-wrapper {
    order: 2;
  }
  .times-wrapper {
    order: 3;
  }
  .sched-left {
    order: 1;
    margin-top: 20px;
  }
}

/* ========== Footer ========== */
/* FOOTER MAIN */
.footer-main {
  background: #ffffff;
  margin-top: 60px;
  padding: 40px 0 20px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.07);
}

/* TOP SECTION */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SECTION */
.footer-left {
  flex: 1;
  min-width: 260px;
}

.footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.footer-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-item a {
  color: inherit;
  text-decoration: none;
}

.footer-item a:hover {
  text-decoration: underline;
}

.footer-social a {
  margin-right: 12px;
  font-size: 22px;
  color: #000;
  transition: color .2s ease;
}

.footer-social a:hover {
  color: #b3001e; /* or your brand color */
}

.footer-icon {
  font-size: 18px;
}

.footer-social a img {
  width: 28px;
  margin-right: 18px;
  opacity: 0.9;
  transition: 0.2s;
}

.footer-social a img:hover {
  opacity: 1;
}

.footer-copy .fa-linkedin {
    color: black;           /* icon color */
    text-decoration: none;  /* remove underline */
}

.footer-copy .fa-linkedin:hover {
    color: black;           /* keep black on hover */
    text-decoration: none;  /* ensure no underline on hover */
}

/* RIGHT SECTION */
.footer-right {
  text-align: center;
}

.footer-cta {
  background: #e7002e;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 24px;
  cursor: pointer;
}

.partner-logos img {
  width: 120px;
  margin: 8px;
  border-radius: 6px;
  background: #fff;
  padding: 6px 10px;
  border: 1px solid #eee;
}

/* BOTTOM ROW */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links a {
  margin-right: 14px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.footer-links span {
  margin-right: 14px;
  color: #aaa;
}

.footer-copy {
  font-size: 14px;
  color: #888;
}


/* --- WA Widget (WhatsApp classic look) --- */
#wa-widget { position: fixed; bottom: 20px; right: 20px; z-index: 12000; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }

/* Launcher */
#wa-launcher {
  width: 64px; height: 64px; border-radius: 50%; border: none;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(180deg,#25d366,#128c7e); box-shadow: 0 10px 30px rgba(0,0,0,.18);
  cursor:pointer; transition: transform .18s ease;
}
#wa-launcher img { width:34px; height:34px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.12)); }

/* Panel */
#wa-panel {
  width: 360px; max-width: calc(100vw - 40px); height: 480px;
  background: #ffffff; border-radius: 12px; box-shadow: 0 12px 36px rgba(0,0,0,.20);
  position: absolute; bottom: 78px; right: 0; display: none; flex-direction: column; overflow: hidden;
}

/* Header */
.wa-header { background: #075e54; color: #fff; display:flex; align-items:center; gap:12px; padding:12px 14px; }
.wa-dp { width:38px; height:38px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,.06); }
.wa-head-text { display:flex; flex-direction:column; }
.wa-name { font-weight:700; font-size:15px; }
.wa-status { font-size:12px; opacity:.95; }
#wa-close { margin-left:auto; background:transparent; border:none; color:#fff; font-weight:700; font-size:18px; cursor:pointer; }

/* Body (messages area) */
.wa-body { background:#ece5dd; padding:14px; overflow-y:auto; flex:1; display:flex; flex-direction:column; gap:10px; }

/* message bubbles */
.wa-bot { align-self:flex-start; background:#ffffff; padding:10px 12px; border-radius:12px 12px 12px 4px; max-width:82%; box-shadow: 0 2px 6px rgba(0,0,0,.06); font-size:14px; }
.wa-user { align-self:flex-end; background:#dcf8c6; padding:10px 12px; border-radius:12px 12px 4px 12px; max-width:82%; font-weight:600; font-size:14px; }

/* quick reply buttons (services + FAQs) */
.wa-quick-wrap { display:flex; flex-direction:column; gap:8px; margin-top:6px; }
.wa-quick { display:inline-flex; align-items:center; justify-content:center; background:#fff; border:1px solid rgba(0,0,0,.06); padding:8px 12px; border-radius:18px; min-height:38px; cursor:pointer; font-weight:600; font-size:13px; box-shadow: 0 1px 0 rgba(0,0,0,.03); }

/* small bot hint */
.wa-small { font-size:12px; opacity:.85; color:#333; }

/* Input bar (WhatsApp like) */
.wa-input-bar { display:flex; gap:8px; padding:10px; border-top: 1px solid rgba(0,0,0,.06); background:#f8f9fa; }
.wa-input-bar input { flex:1; border-radius:20px; padding:10px 14px; border:1px solid rgba(0,0,0,.06); font-size:14px; outline:none; background:#fff; }
.wa-input-bar button { width:44px; height:44px; border-radius:50%; border:none; background:linear-gradient(180deg,#25d366,#128c7e); display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; }

/* WhatsApp CTA */
.wa-open-btn { display:flex; align-items:center; gap:10px; justify-content:center; padding:12px; border:none; background:#25d366; color:#fff; font-weight:700; font-size:15px; cursor:pointer; border-radius:8px; margin:10px; }
.wa-open-btn img { width:18px; height:18px; }

/* responsive tweaks */
@media (max-width:420px){ #wa-panel{ width:320px; right: -16px; bottom: 86px; } #wa-launcher{ right:16px; bottom:16px; } }


.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.team-block {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}

.team-block:last-child {
  border-bottom: none;
}

.team-block:hover {
  transform: translateY(-2px);
}

.team-photo {
  text-align: center;
}

.team-photo img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-photo img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(231, 0, 46, 0.2);
}

.team-name {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: #e7002e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.team-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.team-expertise .badge {
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.blog-link {
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #e7002e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #b3001e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  
  .team-block {
    padding: 30px 0;
  }
  
  .team-name {
    font-size: 24px;
  }
  
  .team-photo img {
    max-width: 280px;
  }
}