
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0; padding: 0;
  background: #fff; color: #222;
}
header {
  background: #fff;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid #eee;
  position: sticky; top: 0; left: 0;  z-index: 1000;
}
/* --- Dropdown Services Menu --- */
.desktop-menu .dropdown {
  position: relative;
  display: inline-block;
}
.desktop-menu .dropbtn {
  cursor: pointer;
}
.desktop-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.11);
  z-index: 1000;
  border-radius: 8px;
  padding: 8px 0;
  top: 38px;
  left: 0;
}
.desktop-menu .dropdown:hover .dropdown-content,
.desktop-menu .dropdown:focus-within .dropdown-content {
  display: block;
}
.desktop-menu .dropdown-content a {
  color: #333;
  padding: 10px 18px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f3f3f3;
  transition: background 0.2s;
  font-size: 16px;
}
.desktop-menu .dropdown-content a:last-child {
  border-bottom: none;
}
.desktop-menu .dropdown-content a:hover {
  background: #f7f7f7;
  color: #ff6600;
}

/* --- Mobile Menu Dropdown for Services --- */
.mobile-menu details summary {
  font-size: 17px;
  font-weight: 500;
  color: #222;
  margin: 12px 0 4px 0;
  cursor: pointer;
  outline: none;
}
.mobile-menu details[open] summary:after {
  content: "▲";
  float: right;
  margin-left: 10px;
  font-size: 14px;
}
.mobile-menu details summary:after {
  content: "▼";
  float: right;
  margin-left: 10px;
  font-size: 14px;
}
.mobile-menu details[open] a {
  padding-left: 22px;
  font-size: 15px;
}
.mobile-menu details a {
  display: block;
  padding: 4px 0;
  color: #222;
  text-decoration: none;
}
.mobile-menu details a:hover {
  color: #ff6600;
}
.logo img { height: 90px; max-width: 320px; }
.desktop-menu a, .mobile-menu a {
  margin: 0 16px; color: #222;
  text-decoration: none; font-weight: 500; font-size: 17px;
}
.desktop-menu a:hover, .mobile-menu a:hover { color: #ff6600; }
.mobile-menu-icon {
  display: none; font-size: 30px; cursor: pointer;
}
.mobile-menu { display: none; }
.hero {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  padding: 64px 48px 40px 48px; background: #fff;
}
.hero-text { flex: 1 1 45%; }
.hero-text h1 { font-size: 46px; font-weight: 800; margin-bottom: 14px; }
.hero-text p { font-size: 23px; margin-bottom: 22px; }
.highlight-orange { color: #ff6600; }
.cta {
  background: #ff6600; color: #fff; border-radius: 7px;
  padding: 14px 36px; text-decoration: none; font-weight: bold; font-size: 18px;
  transition: background 0.2s;
}
.cta:hover { background: #d65200; }
.hero-image { flex: 1 1 45%; text-align: right; }
.hero-image img { width: 100%; max-width: 510px; border-radius: 18px; box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.overview { padding: 56px 22px; background: #f8f9fa; text-align: center; }
.overview-box {
  background: #fff; padding: 32px; border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  text-align: justify; font-size: 18px; color: #444; max-width: 900px; margin: 0 auto;
}
.services-block { padding: 64px 24px 56px 24px; background: #fff; text-align: center; }
.services-block h2 { font-size: 36px; margin-bottom: 38px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  justify-items: center;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 18px 28px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: #111;
  min-height: 320px; max-width: 330px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255,102,0,0.13);
}
.service-card img {
  width: 120px; height: 120px; margin-bottom: 20px; object-fit: contain;
}
.service-card h3 {
  color: #ff6600; font-size: 20px; font-weight: 700; margin: 10px 0 7px 0;
}
.service-card p { color: #555; font-size: 15px; margin: 0 0 6px 0; }
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 32px 16px;
  font-size: 15px;
  margin-top: 40px;
}
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  header { flex-direction: row; align-items: center; justify-content: space-between; padding: 13px 14px; }
  .logo { width: auto; text-align: left; margin-bottom: 0; }
  .hero { flex-direction: column; padding: 32px 10px 32px 10px; }
  .hero-text, .hero-image { flex: 1 1 100%; text-align: center; }
  .desktop-menu { display: none; }
  .mobile-menu-icon { display: block; font-size: 36px; cursor: pointer; margin-left: 10px }
  .mobile-menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 67px; left: 0; right: 0;
    z-index: 1200;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    padding: 12px 0 8px 0;
  }
  .mobile-menu a {
    font-size: 18px; margin: 10px 0;
  }
  .overview { padding: 24px 7px; }
  .overview-box { padding: 18px; font-size: 16px; }
  .services-block { padding: 28px 3px 26px 3px; }
  .services-block h2 { font-size: 26px; margin-bottom: 22px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 4px; }
  .service-card { padding: 18px 5px; min-height: 250px; }
  .service-card img { width: 120px; height: 120px; }
}
@media (max-width: 780px) {
  .hero-text .cta {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  .hero-image {
    margin-top: 60px;
  }
  .hero-image img {
    width: 90vw;
    max-width: 320px;
    height: auto;
    border-radius: 14px;
    margin-bottom: 0;
  }
}
/* About Us Page Styles */
.about-hero {
  background: linear-gradient(120deg, #fff7f0 0%, #f4faff 100%);
  padding: 64px 12px 40px 12px;
  display: flex; align-items: center; justify-content: center;
}
.about-hero-content {
  max-width: 1100px; width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 50px;
}
.about-hero-text h1 {
  font-size: 40px; font-weight: 800; color: #ff6600; margin-bottom: 18px;
}
.about-hero-text p {
  font-size: 22px; color: #333;
}
.about-hero-img img {
  width: 330px; max-width: 80vw; border-radius: 22px; box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
@media (max-width: 800px) {
  .about-hero-content { flex-direction: column; text-align: center; gap: 28px; }
  .about-hero-img img { width: 70vw; }
}

.about-story {
  background: #fff;
  text-align: center;
  padding: 48px 10px 28px 10px;
}
.about-story h2 {
  font-size: 32px; color: #ff6600; margin-bottom: 22px;
}
.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  background: #fafafa;
  border-radius: 14px;
  padding: 26px 20px 16px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
@media (max-width: 700px) {
  .about-story h2 { font-size: 24px; }
  .story-content { font-size: 16px; padding: 15px 6px 8px 6px; }
}

.about-story p {
  font-size: 19px; color: #444; max-width: 800px; margin: 0 auto;
}

.about-mission-vision {
  background: #fff8f4;
  padding: 36px 8px 32px 8px;
}
.mv-box {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.mv-block {
  background: #fff; border-radius: 14px; box-shadow: 0 2px 14px rgba(255,102,0,0.05);
  flex: 1 1 300px; padding: 22px; margin: 10px;
  min-width: 250px; max-width: 400px;
}
.mv-block h3 { color: #ff6600; font-size: 22px; margin-bottom: 8px; }
.mv-block p { font-size: 17px; color: #444; margin: 0; }
@media (max-width: 800px) {
  .mv-box { flex-direction: column; gap: 18px; }
  .mv-block { min-width: 0; }
}

.about-values-grid {
  padding: 38px 6px 22px 6px;
  background: #f9f9f9;
  text-align: center;
}
.values-grid {
  display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; margin-top: 12px;
}
.value-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 26px 18px;
  width: 180px; min-width: 150px; max-width: 220px;
  display: flex; flex-direction: column; align-items: center;
}
.value-card span {
  font-size: 36px; margin-bottom: 6px;
}
.value-card strong {
  color: #ff6600; font-size: 18px; margin-bottom: 6px; font-weight: bold;
}
.value-card p {
  font-size: 14px; color: #555; margin: 0;
}
@media (max-width: 700px) {
  .values-grid { flex-direction: column; gap: 12px; }
  .value-card { width: 100%; }
}
.about-timeline {
  background: #fff;
  padding: 44px 0 38px 0;
  text-align: center;
}
.about-timeline h2 {
  font-size: 28px; color: #ff6600; margin-bottom: 32px;
}
.timeline {
  display: flex; flex-direction: column; align-items: center;
  max-width: 520px; margin: 0 auto;
}
.timeline-event {
  display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px;
  position: relative;
  width: 100%;
}
.timeline-dot {
  width: 16px; height: 16px;
  background: #ff6600;
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 2px 10px rgba(255,102,0,0.08);
  flex-shrink: 0;
}
.timeline-content {
  background: #fff6ef;
  border-radius: 10px;
  padding: 12px 18px;
  text-align: left;
  flex: 1;
  box-shadow: 0 2px 10px rgba(255,102,0,0.03);
}
.timeline-content strong {
  color: #ff6600; font-size: 17px;
}
.timeline-content p {
  font-size: 15px; color: #444; margin: 6px 0 0 0;
}
@media (max-width: 600px) {
  .timeline { padding: 0 8px; }
  .timeline-content { padding: 10px 8px; }
}
.about-testimonials {
  background: #f9f9f9;
  padding: 42px 0 34px 0;
  text-align: center;
}
.about-testimonials h2 {
  font-size: 28px; color: #ff6600; margin-bottom: 20px;
}
.testimonials-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin-bottom: 22px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 22px 16px;
  max-width: 330px; min-width: 180px;
  font-size: 15px;
  color: #444;
  text-align: left;
}
.testimonial-name {
  color: #ff6600; font-size: 14px; margin-top: 12px; font-style: italic;
}


.about-whyus {
  padding: 46px 0 38px 0;
  background: #fff;
  text-align: center;
}
.about-whyus h2 {
  color: #ff6600; font-size: 28px; margin-bottom: 22px;
}
.whyus-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
  margin-bottom: 24px;
}
.whyus-card {
  background: #fff6ef;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(255,102,0,0.04);
  width: 200px; min-width: 150px; max-width: 240px;
  padding: 20px 10px 16px 10px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.whyus-card span {
  font-size: 32px; margin-bottom: 8px;
}
.whyus-card strong {
  color: #ff6600; font-size: 17px; margin-bottom: 6px; font-weight: 700;
}
.whyus-card p { color: #444; font-size: 14px; margin: 0; }
.about-cta { margin-top: 16px; }
.about-cta .cta {
  padding: 16px 40px; font-size: 19px; border-radius: 9px; background: #ff6600; color: #fff; font-weight: bold;
  transition: background 0.2s;
}
.about-cta .cta:hover { background: #d65200; }
@media (max-width: 600px) {
  .whyus-grid { flex-direction: column; gap: 10px; }
  .whyus-card { width: 100%; }
}

.contact-hero {
  background: linear-gradient(120deg, #fff7f0 0%, #f4faff 100%);
  text-align: center;
  padding: 60px 10px 28px 10px;
}
.contact-hero h1 {
  color: #ff6600; font-size: 36px; font-weight: 800; margin-bottom: 12px;
}
.contact-hero p { font-size: 18px; color: #444; }

.contact-main {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 50px; max-width: 1100px; margin: 0 auto; padding: 50px 10px 34px 10px;
  flex-wrap: wrap;
}
.contact-form-box, .contact-details-box {
  background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 34px 28px 28px 28px; min-width: 300px; max-width: 420px; flex: 1 1 340px;
}
.contact-form-box form {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form-box label { font-size: 16px; color: #222; font-weight: 500; margin-bottom: 3px; }
.contact-form-box input,
.contact-form-box textarea {
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 11px;
  font-size: 16px;
  background: #f8f8f8;
  margin-bottom: 7px;
}
.contact-form-box button.cta {
  margin-top: 7px;
  padding: 15px 0;
  font-size: 17px;
  border-radius: 8px;
  font-weight: bold;
}
.contact-success { color: #219a42; font-weight: 600; margin-bottom: 16px; }
.contact-error { color: #c00; font-weight: 600; margin-bottom: 16px; }
.contact-details-box h2 { color: #ff6600; margin-bottom: 12px; }
.contact-details-box p { font-size: 16px; color: #333; margin-bottom: 18px; }

@media (max-width: 900px) {
  .contact-main { flex-direction: column; gap: 30px; align-items: stretch; }
  .contact-form-box, .contact-details-box { max-width: 100%; }
}
/* ---- About Section Centering Fixes ---- */
.about-rich,
.about-box {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.about-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  /* For best looks, keep mission/vision content left-aligned INSIDE their card for readability: */
  text-align: left;
}

.about-block {
  flex: 1 1 260px;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(255,102,0,0.07);
  padding: 18px 16px 13px 16px;
  margin: 0 10px;
}

/* Center the Innovation, Transparency, Results-Driven values and stats */
.about-values,
.about-stats {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.about-values > div,
.about-stats > div {
  text-align: center;
}

/* Center "Why Choose" section and keep the list readable */
.about-why {
  text-align: center;
  margin-top: 22px;
}
.about-why ul {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 0;
}
.about-why ul li {
  list-style: none;
  margin: 8px 0;
  font-size: 16px;
}

/* Optional: If you want Mission & Vision card text centered, uncomment this:
.about-block p {
  text-align: center;
}
*/
/* --- About Section Agency Styling --- */
.about-rich {
  background: #fff;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
}

.about-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(255,102,0,0.05), 0 1.5px 12px rgba(0,0,0,0.07);
  padding: 38px 36px 26px 36px;
  text-align: center;
}

.about-lead {
  font-size: 19px;
  color: #444;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

.about-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.about-block {
  flex: 1 1 270px;
  min-width: 220px;
  background: #fff9f6;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(255,102,0,0.06);
  padding: 18px 16px 13px 16px;
  margin: 0 7px;
  text-align: left;
}
.about-block h3 {
  color: #ff6600;
  margin-bottom: 9px;
  font-size: 22px;
}
.about-block p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.about-values {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 22px 0 24px 0;
}
.about-values > div {
  background: #fff6ef;
  border-radius: 10px;
  padding: 16px 16px 10px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  min-width: 120px;
  box-shadow: 0 1.5px 6px rgba(255,102,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-values span {
  font-size: 30px;
  margin-bottom: 5px;
  color: #ff6600;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.about-stats > div {
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 13px 20px 9px 20px;
  font-size: 18px;
  color: #222;
  min-width: 80px;
  text-align: center;
}
.about-stats strong {
  font-size: 25px;
  color: #ff6600;
}

.about-why {
  text-align: center;
  margin-top: 26px;
}
.about-why h4 {
  color: #ff6600;
  margin-bottom: 12px;
  font-size: 22px;
}
.about-why ul {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 0;
}
.about-why ul li {
  list-style: none;
  margin: 9px 0;
  font-size: 16px;
}

@media (max-width: 800px) {
  .about-box { padding: 18px 7px 14px 7px; }
  .about-row { flex-direction: column; gap: 18px; }
  .about-block { margin: 0 auto; text-align: center; }
  .about-values, .about-stats { gap: 13px; flex-direction: column; }
}
.services-hero {
  background: linear-gradient(120deg, #fff7f0 0%, #f4faff 100%);
  text-align: center;
  padding: 60px 10px 30px 10px;
}
.services-hero h1 {
  color: #ff6600; font-size: 36px; font-weight: 800; margin-bottom: 10px;
}
.services-hero p {
  font-size: 19px; color: #333;
}
.services-cta {
  text-align: center;
  margin: 28px 0 40px 0;
}
.services-cta .cta {
  padding: 18px 44px;
  font-size: 20px;
  border-radius: 10px;
  background: #ff6600;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.services-cta .cta:hover {
  background: #d65200;
}
.service-hero {
  background: linear-gradient(120deg, #fff7f0 0%, #f4faff 100%);
  text-align: center;
  padding: 56px 10px 22px 10px;
  margin-bottom: 8px;
}
.service-hero .service-icon {
  width: 82px; height: 82px; margin-bottom: 16px;
}
.service-hero h1 {
  color: #ff6600; font-size: 32px; font-weight: 800; margin-bottom: 6px;
}
.service-tagline {
  color: #222; font-size: 18px; font-style: italic; margin-bottom: 0;
}

.service-details {
  background: #fff;
  max-width: 700px;
  margin: 0 auto 34px auto;
  padding: 36px 22px 28px 22px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.service-details h2 {
  font-size: 23px; color: #ff6600; margin-bottom: 12px;
}
.service-details h3 {
  color: #222; font-size: 19px; margin-top: 28px; margin-bottom: 8px;
}
.service-details p {
  color: #444; font-size: 17px; line-height: 1.7; margin-bottom: 18px;
}
.service-features {
  margin-left: 0; padding-left: 24px; font-size: 16px; color: #333;
  margin-bottom: 22px;
}
.service-features li { margin-bottom: 9px; }
.service-actions {
  display: flex; gap: 16px; margin-top: 22px; justify-content: flex-start; flex-wrap: wrap;
}
.cta.secondary {
  background: #fff; color: #ff6600; border: 2px solid #ff6600;
  font-weight: bold; padding: 12px 24px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta.secondary:hover {
  background: #ff6600; color: #fff;
}
@media (max-width: 700px) {
  .service-details { padding: 18px 5px 16px 5px; }
  .service-hero { padding: 28px 4px 14px 4px; }
  .service-actions { flex-direction: column; gap: 10px; }
}
.client-logo-section {
  margin: 36px auto 24px auto;
  max-width: 1050px;
  width: 100%;
  background: none;
  padding: 0;
}
.client-logo-swiper {
  width: 100%;
  min-height: 220px;
  margin: 0 auto;
}
.client-logo-swiper .swiper-slide img {
  width: 120px;         /* set a fixed width */
  height: 60px;         /* set a fixed height */
  object-fit: contain;  /* ensures image keeps aspect ratio and fits inside box */
  margin: 0 14px;
  opacity: 0.88;
  transition: opacity 0.2s;
  background: #fff;
  border-radius: 8px;   /* optional, for softer look */
  box-shadow: 0 1.5px 7px rgba(0,0,0,0.04); /* optional, for depth */
}


.client-logo-swiper .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}
.client-logo-swiper .swiper-slide {
  background: none !important;
  /* Do not use flex/grid/align-items here! */
  padding: 8px 0;
}

}
@media (max-width: 900px) {
  .client-logo-swiper .swiper-slide img { max-height: 40px; max-width: 90px; }
}
.media-mentions-home img {
  height: 48px;      /* Increase or decrease as needed */
  width: auto;       /* Keeps the aspect ratio natural */
  margin: 0 18px;    /* Adds horizontal space between logos */
  opacity: 0.96;     /* Optional: slightly more visible */
  vertical-align: middle; /* Keeps logos aligned nicely in a row */
}
.media-mentions-home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Extra spacing if needed */
  margin: 14px 0 26px 0;
}
/* Force all sliding logos to be the same size on all devices */
.client-logo-swiper .swiper-slide img {
  width: 90px;    /* Adjust as needed for your design */
  height: 48px;   /* Adjust as needed for your design */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* On mobile, make them even smaller if needed */
@media (max-width: 700px) {
  .client-logo-swiper .swiper-slide img {
    width: 60px;
    height: 32px;
    margin: 4px 0;
  }
  .client-logo-swiper .swiper-slide {
    padding: 4px 0;
  }
}

/* --- PATCH: Prevent horizontal scroll/shake on mobile homepage --- */

/* Clamp key containers */
html, body,
.hero,
.overview,
.services-block,
.about-section-home,
.client-logo-section,
.client-logo-swiper {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  box-sizing: border-box;
}
.meet-link.linkedin {
  background: linear-gradient(90deg, #0077b5, #0a66c2 98%);
  color: #fff !important;
  border: 2px solid #fff;
  margin-left: 16px;
  margin-top: 10px;
  box-shadow: 0 4px 16px rgba(10,102,194,0.13);
  transition: background 0.16s, color 0.16s;
}
.meet-link.linkedin:hover {
  background: #fff;
  color: #0a66c2 !important;
  border-color: #0a66c2;
}

