/*
Theme Name: Pakala Tax Pro Link
Theme URI: https://pakalataxpro.com/
Author: Pakala Tax Pro & IkonHR Solutions
Author URI: https://pakalataxpro.com/
Description: Professional tax and accounting services theme.
Version: 1.1.0
License: Proprietary
Text Domain: pakala-taxpro
*/

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #2563eb;
  --light-accent: #eff6ff;
  --accent-hover: #1d4ed8;
  --gold: #d97706;
  --text-main: #334155;
  --text-light: #64748b;
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-main: 'Outfit', sans-serif;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav ul li {
  list-style: none;
  position: relative;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-actions .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Sections General */
section {
  padding: 5rem 0;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.software-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.software-item {
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--primary);
  border: 1px solid #e2e8f0;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-col h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin: 0.5rem 0 0;
}

.footer-col p {
  color: #94a3b8;
  line-height: 1.6;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .header-actions {
    order: 2;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .grid-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Logo Grids */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.client-logo-placeholder {
  background: white;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* Software Logos */
.software-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
}

.software-logo {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  border: 1px solid transparent;
  /* For hover effect */
  transition: all 0.3s ease;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #e2e8f0;
}

.software-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gray-200);
  /* Default sidebar color */
  transition: background 0.3s ease;
}

.software-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Software Item Card (used in front-page.php) */
.software-item-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Brand Colors for Software */
.sw-xero {
  color: #00b7e2;
}

.sw-xero::before {
  background: #00b7e2;
}

.sw-qb {
  color: #2ca01c;
}

.sw-qb::before {
  background: #2ca01c;
}

.sw-myob {
  color: #6100a5;
}

.sw-myob::before {
  background: #6100a5;
}

.sw-netsuite {
  color: #000000;
}

.sw-netsuite::before {
  background: #0075c9;
}

.sw-wave {
  color: #1c2d3c;
}

.sw-wave::before {
  background: #0095ff;
}

.sw-odoo {
  color: #714b67;
}

.sw-odoo::before {
  background: #714b67;
}

.sw-zoho {
  color: #e42526;
}

.sw-zoho::before {
  background: #f0bc00;
}

/* Zoho yellow/red mix */

/* Testimonials */
.testimonial-card {
  text-align: left;
  background: white;
  border: 1px solid #f1f5f9;
}

.testimonial-card p {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Stat Cards */
.stat-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-card h3 {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-card p {
  font-weight: 600;
  color: #64748b;
}

/* Mission Vision Cards */
.mv-card {
  padding: 3rem;
}

.mv-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.mv-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* Badge Styles */
.badge {
  background: #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  display: inline-block;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

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

  100% {
    transform: translateX(100vw);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Anti-Gravity Hero */
.gravity-hero {
  position: relative;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 6rem 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gravity-center {
  z-index: 10;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(37, 99, 235, 0.2);
}

.floating-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

/* Floating positions (static for now, scattered) */
.bubble-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 2s;
}

.bubble-4 {
  bottom: 25%;
  right: 10%;
  animation-delay: 3s;
}

.bubble-5 {
  top: 15%;
  left: 50%;
  margin-left: -200px;
  animation-delay: 4s;
}

.drifting-text {
  position: absolute;
  top: 50%;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  animation: drift 30s linear infinite;
}

/* Scrolling Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 0;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  padding-left: 100%;
  /* Start off-screen */
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Bordered Service Cards */
.bordered-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  text-align: left;
}

.bordered-card.blue {
  border-top: 4px solid #3b82f6;
}

.bordered-card.orange {
  border-top: 4px solid #f97316;
}

.bordered-card.green {
  border-top: 4px solid #10b981;
}

.bordered-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.bordered-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.bordered-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.bordered-card .card-icon svg {
  width: 28px;
  height: 28px;
}

.bordered-card.blue .card-icon {
  background: #3b82f6;
}

.bordered-card.orange .card-icon {
  background: #f97316;
}

.bordered-card.green .card-icon {
  background: #10b981;
}

.bordered-card .know-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.bordered-card.blue .know-more {
  color: #3b82f6;
}

.bordered-card.orange .know-more {
  color: #f97316;
}

.bordered-card.green .know-more {
  color: #10b981;
}

/* Accordion Styles */
.team-accordion {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #f1f5f9;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 1.5rem;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f8fafc;
}

.accordion-header h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.icon-toggle {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  display: none;
  border-top: 1px solid #f1f5f9;
  background: white;
}

.accordion-item.active .accordion-content {
  display: block;
}

.check-list-styled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list-styled li {
  margin-bottom: 0.75rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-list-styled .arrow {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Feature Boxes */
.feature-box {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-box h3 {
  margin: 1rem 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #64748b;
}

/* Abstract Blob Graphic */
.blob-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.5;
  z-index: 1;
}

/* Scatter Icons Animation */
.scatter-icons span {
  transition: transform 0.5s ease, opacity 0.3s ease;
  display: inline-block;
}

.scatter-icons.active span:nth-child(1) {
  transform: translate(-100px, -50px) rotate(-15deg);
  opacity: 0.5;
}

.scatter-icons.active span:nth-child(2) {
  transform: translate(-50px, -80px) rotate(-30deg);
  opacity: 0.5;
}

.scatter-icons.active span:nth-child(3) {
  transform: translate(50px, -80px) rotate(15deg);
  opacity: 0.5;
}

.scatter-icons.active span:nth-child(4) {
  transform: translate(100px, -50px) rotate(30deg);
  opacity: 0.5;
}

.scatter-icons.active span:nth-child(5) {
  transform: translate(-80px, 40px) rotate(-10deg);
  opacity: 0.5;
}

.scatter-icons.active span:nth-child(6) {
  transform: translate(80px, 40px) rotate(10deg);
  opacity: 0.5;
}

/* Industry Expertise Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ind-category h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

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

.ind-category li {
  margin-bottom: 0.5rem;
  color: var(--text-main);
  padding-left: 1rem;
  position: relative;
}

.ind-category li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.process-card .step-icon {
  width: 60px;
  height: 60px;
  background: var(--light-accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.process-card h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.process-card p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Promo Stickers */
.promo-stickers-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.promo-sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
}

.green-hex {
  width: 140px;
  height: 140px;
  background: #10b981;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.yellow-tag {
  width: 140px;
  height: 100px;
  background: #f59e0b;
  border-radius: 10px;
  position: relative;
}

.yellow-tag::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #f59e0b;
  border-radius: 50%;
  border: 4px solid white;
}

.circle-badge {
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
  border: 4px solid #cbd5e1;
}

.promo-sticker strong {
  font-size: 1.5rem;
  display: block;
  margin: 0.2rem 0;
}

/* Simulated Medals */
.medal {
  position: absolute;
  width: 100px;
  text-align: center;
}

.medal-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  border: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.medal-circle .dashicons {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.medal-ribbon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

/* Positioning Medals */
.m-1 {
  top: 0;
  left: 10%;
}

.m-2 {
  top: 20%;
  right: 10%;
}

.m-3 {
  top: 40%;
  left: 30%;
}

.m-4 {
  top: 10%;
  right: 30%;
}

.m-5 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* Software Item Styling */
.software-item {
  padding: 0.75rem 1rem;
  background: white;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.software-item:hover {
  transform: translateX(5px);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* Office Cards */
.office-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: height 0.3s ease;
}

.office-card:hover::before {
  height: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
.country-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important; }

/* Software Brand Colors */
.software-logo {
  border-top: 4px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.sw-xero { border-color: #13b5ea; }
.sw-qb { border-color: #2CA01C; }
.sw-myob { border-color: #6100a5; }
.sw-netsuite { border-color: #00448C; }
.sw-wave { border-color: #1c2738; }
.sw-odoo { border-color: #714B67; }
.sw-zoho { border-color: #0f172a; }

.software-logo strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

