/* ========================================
  AlbaServ India - MAIN STYLESHEET
   ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap");

:root {
  --blue: #0057a8;
  --blue-dark: #003f7f;
  --blue-light: #e8f1fb;
  --accent: #1a73e8;
  --orange: #ff6b00;
  --text: #1a1a2e;
  --text-muted: #5a6a7e;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 87, 168, 0.1);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a {
  color: #cde;
}
.topbar a:hover {
  color: #fff;
}
.topbar-left,
.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-right .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  transition: background 0.2s;
}
.topbar-right .social a:hover {
  background: var(--accent);
}

/* ---- HEADER ---- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 87, 168, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 54px;
  height: 54px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: -1px;
}
.logo-text strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
}
.logo-text span {
  font-size: 12px;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}
nav a:hover,
nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}
nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.has-dropdown > a::before {
  content: " ▾";
  font-size: 10px;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  z-index: 100;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 0;
}
.dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.btn-consult {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.btn-consult:hover {
  background: var(--blue-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(
    100deg,
    #14142a99 0%,
    #000000d6 40%,
    #14142aa1 100%
  );
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/alba-banner.jpeg") center/cover;
  opacity: 0.25;
}

.header-inner a img {
  width: 120px;
}

.logo img {
  width: 124px;
  border-radius: 10px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 20px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #7ec8ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero h1 span {
  color: #4db8ff;
}
.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #fff;
  color: var(--blue);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 26px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---- SECTION COMMON ---- */
section {
  padding: 70px 0;
}
.section-label {
  text-align: center;
  margin-bottom: 44px;
}
.section-label .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-label h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text);
}
.section-label h2 span {
  color: var(--blue);
}
.section-label p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 10px auto 0;
}

/* ---- SOLUTIONS GRID ---- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}
.solution-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.solution-card .icon {
  width: 58px;
  height: 58px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: var(--blue);
  transition: all 0.25s;
}
.solution-card:hover .icon {
  background: var(--blue);
  color: #fff;
}
.solution-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}

/* ---- WHY CHOOSE ---- */
.why-section {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 20px 10px;
}
.why-card .icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  color: var(--blue);
}
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- INDUSTRIES ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 160px;
  cursor: pointer;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.industry-card:hover img {
  transform: scale(1.08);
}
.industry-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 31, 77, 0.85),
    rgba(0, 87, 168, 0.3)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 10px;
  color: #fff;
}
.industry-card .overlay .icon {
  font-size: 22px;
  margin-bottom: 6px;
}
.industry-card .overlay span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- STATS ---- */
.stats-bar {
  background: linear-gradient(90deg, #001f4d, #0057a8);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-num span {
  color: #4db8ff;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* ---- CLIENTS ---- */
.clients-section {
  background: var(--bg);
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.client-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 22px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.client-logo:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(100deg, #0057a8, #003580);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  font-size: 16px;
}
.cta-banner .btn-white {
  background: #fff;
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: all 0.2s;
}
.cta-banner .btn-white:hover {
  background: #e8f1fb;
}

/* ---- FOOTER ---- */
footer {
  background: #0a1628;
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo-text strong {
  color: #fff;
}
.footer-brand p {
  font-size: 13px;
  color: #8899aa;
  margin: 14px 0 18px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: #fff;
}
footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer ul li {
  margin-bottom: 9px;
}
footer ul li a {
  font-size: 13px;
  color: #8899aa;
  transition: color 0.2s;
}
footer ul li a:hover {
  color: #4db8ff;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #8899aa;
  margin-bottom: 10px;
}
.footer-contact li .icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #556;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(100deg, #001f4d, #0057a8);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}
.page-hero .eyebrow {
  color: #7ec8ff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.page-hero h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a {
  color: #7ec8ff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ---- CARD GRID ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.card .icon-lg {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.card ul {
  margin-top: 14px;
}
.card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.faq-q.open {
  background: var(--blue);
  color: #fff;
}
.faq-a {
  display: none;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg);
  line-height: 1.7;
}
.faq-a.open {
  display: block;
}

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 168, 0.08);
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-item .icon-box {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
}
.contact-info-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-info-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- TEAM/ABOUT ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}
.team-card:hover {
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin: 0 auto 14px;
}
.team-card h3 {
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card span {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}
.team-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- PROJECTS ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}
.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.project-img {
  height: 180px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--blue);
}
.project-body {
  padding: 20px;
}
.project-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.project-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.project-body p {
  font-size: 13px;
  color: var(--text-muted);
}
.project-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- AMC PLANS ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.plan-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.plan-card.featured {
  border-color: var(--blue);
}
.plan-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.plan-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.plan-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.plan-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.plan-features {
  text-align: left;
  margin-bottom: 24px;
}
.plan-features li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.plan-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 12px 20px;
  }
  .hamburger {
    display: flex;
  }
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-bottom a {
  color: #ccc;
}
.footer-bottom span {
  color: #ccc;
}


.client-logo img{
    width: 100px;
}