* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}
html, body {
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1250px;
 margin: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #094fa5;
  color: #fff;
  font-size: 14px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.top-text {
  opacity: 0.95;
}

/* SOCIAL TEXT (NO ICONS) */
.top-social-text a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 500;
  font-size: 14px;
}

.top-social-text a:hover {
  text-decoration: underline;
}
.service-marquee {
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: marqueeScroll 12s linear infinite;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== HEADER ===== */
.main-header {
  background: #f3f2fb;
  padding:10px 10px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: nowrap;   
}

.logo-area img {
  height: 52px;   
  max-width: 100%;
}
/* Navigation text */
.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;   /* same visual weight */
  letter-spacing: 0.2px;
}

/* Top bar text */
.top-bar,
.top-social-text a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Button text */

.header-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-btn i {
  font-size: 16px;
}

/* NAV */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 15px;
}

/* CTA BUTTON */
.header-btn a {
  background: #2596be;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #0a4fa5;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.35s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header img {
  height: 34px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  list-style: none;
  margin-top: 30px;
}

.mobile-nav li {
  margin-bottom: 18px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
}

.mobile-call-btn {
  background: #0a4fa5;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
 .why-choose-section .container {
    padding-left: 20px!important;
    padding-right: 20px!important;
  }
  /* Desktop menu & button HIDE */
  .nav-menu,
  .header-btn {
    display: none;
  }

  /* Hamburger SHOW */
  .hamburger {
    display: flex;
       margin-right: 16px;
  }

  /* Header stays single row */
  .header-flex {
    justify-content: space-between;
    padding: 10px 0;
  }
  .top-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 8px 0;
  }

  .top-text {
    display: none;
  }

  .top-social-text {
    display: flex;
    gap: 18px;
    justify-content: center;
  }

  .top-social-text a {
    margin-left: 0;
    font-size: 13px;
  }
   .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .main-header {
    padding-left: 0;
    padding-right: 0;
  }
  .logo-area img {
    height: 36px;
  }
}
/* =========================
 HERO FULL WIDTH SLIDER
========================= */

.hero-wrapper {
  width: 100%;
  position: relative;
}

/* Slider container */
.hero-slider {
  width: 100%;
  height: 60vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

/* Slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Background layers */
.hero-slide .desktop-img,
.hero-slide .mobile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile image hidden on desktop */
.hero-slide .mobile-img {
  display: none;
}

/* =========================
 TABLET
========================= */
@media (max-width: 991px) {
  .hero-slider {
    height: 55vh;
    min-height: 380px;
  }
}

/* =========================
 MOBILE VIEW (33vh)
========================= */
@media (max-width: 767px) {

  .hero-slider {
    height: 33vh;        
    min-height: 230px;   
  }

  .hero-slide {
    transform: none;
  }

  .hero-slide .desktop-img {
    display: none;
  }

  .hero-slide .mobile-img {
    display: block;
    background-position: center top;
  }
}

/* =========================
 SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .hero-slider {
    height: 33vh;
    min-height: 210px;
  }
}

/* =========================
 STATS OVERLAP
========================= */
.hero-stats {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.stat-card {
  background: #ffffff;
  padding: 26px 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* ICON */
.stat-card i {
  font-size: 36px;
  color: #0a4fa5;
}

/* TEXT WRAP */
.stat-text {
  display: flex;
  flex-direction: column;
}

/* NUMBER + UNIT (same line) */
.stat-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-top h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #111827;
}

.stat-top span {
  font-size: 14px;
  font-weight: 500;
  color: #28292a;
}

/* DESCRIPTION */
.stat-text p {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
  line-height: 1.4;
}

/* =========================
 RESPONSIVE
========================= */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: -40px;
  }
}

/* =========================
   ABOUT MODERN SECTION
========================= */
.about-modern {
  padding: 90px 0;
  background: #f6f7fb;
}

.about-modern-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.about-modern-left img {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.about-modern-right h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 18px 0;
  color: #111827;
}

.about-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

/* BADGE */
.about-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: #0a4fa5;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* ICON */
.list-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0a4fa5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

/* CALL */
.about-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.call-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef2ff;
  color: #29a2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /*display:none;*/
}

.about-call strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.about-call span {
  font-size: 13px;
  color: #6b7280;
}

/* BUTTON */
.about-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  background: rgb(48, 48, 48);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.about-cta:hover {
  background: #094fa5;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-modern-wrapper {
    grid-template-columns: 1fr;
  }

  .about-modern-left {
    text-align: center;
  }

  .about-modern-left img {
    max-width: 360px;
  }

  .about-modern-right h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .about-modern {
    padding: 60px 0;
  }

  .about-modern-right h2 {
    font-size: 21px;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  position: relative;
  padding: 110px 0;
  background: url("../images/services-bg.webp") center/cover no-repeat;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #05002a 0%, #0a004f 100%);
  opacity: 0.85;
}

.services-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.services-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: #fff;
  color: #094fa5;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.services-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 55px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: rgba(255,255,255,0.08);
  border-radius: 22px;       
  overflow: hidden;           
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* IMAGE AREA */
.service-img {
  position: relative;
  height: 210px;
  border-radius: 22px;        
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;    
}
.service-card,
.service-img {
  border-radius: 26px;
}

/* ICON IMAGE */
.service-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 76px;
  height: 76px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 46px;     
  height: 46px;
  object-fit: contain;
}

/* ARROW */
.service-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  height: 44px;
  padding: 0 12px;
  background: #094fa5;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  cursor: pointer;
}

.service-arrow em {
  font-style: normal;
  font-size: 13px;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  transition: .3s ease;
}

.service-card:hover .service-arrow em {
  max-width: 80px;
  opacity: 1;
}

/* CONTENT */
.service-content {
  padding: 22px;
  text-align: left;
}

.service-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.service-content p {
  font-size: 14px;
  opacity: .85;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 26px;
  }
  
}
/* =========================
   WORK PROCESS SECTION
========================= */
.process-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.process-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  color: #094fa5;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.process-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 70px;
  line-height: 1.3;
}

/* =========================
   STEPS
========================= */
.process-steps {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.process-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e1e1e;
  margin-top:10px;
}

.process-item p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}
/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {

  .process-section {
    padding: 50px 0;
  }
.process-arrow {
    display: none;
  }
  .process-title {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.4;
    padding: 0 15px;
  }

  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .process-item {
    max-width: 320px;
    margin: auto;
  }

  .process-item h4 {
    font-size: 15px;
  }

  .process-item p {
    font-size: 13px;
  }

  /* Arrow rotate for mobile */
  .process-arrow img {
    transform: rotate(90deg);
    width: 40px;
  }
}

/* =========================
 DARK SERVICES
========================= */
.dark-services {
  background: #183973;
  padding: 70px 0;
  color: #fff;
}

.dark-services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.dark-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.dark-services h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.dark-desc {
  font-size: 15px;
  opacity: .8;
  max-width: 620px;
  margin: auto;
}

/* GRID */
.dark-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 70px;
}

/* CARD */
.dark-card {
  background: rgba(255,255,255,0.06);
  border-radius: 26px;
  padding: 28px;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .35s ease;
}

.dark-card:hover {
  transform: translateY(-6px);
}

/* TOP ROW */
.dark-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

/* ICON */
.dark-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  color: #094fa5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* READ MORE */
.dark-read {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  cursor: pointer;
}
.dark-read:hover {
  background: #ffffff;
color: #080808;
}
/* TEXT */
.dark-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.dark-card p {
  font-size: 14px;
  opacity: .85;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* IMAGE */
.dark-img {
  border-radius: 16px;
  overflow: hidden;
}

.dark-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: inherit;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dark-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-services h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .dark-services-grid {
    grid-template-columns: 1fr;
  }
    .dark-services {
        padding: 44px 0;
    }
   
}
/* =========================
   SECTION
========================= */
.why-section {
  background: #183973;
  padding: 110px 0;
  color: #fff;
}

.why-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .why-section {
    padding: 60px 0; 
  }
}
/* =========================
   TOP CONTENT
========================= */
.why-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
}

.why-subtitle {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.why-left h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-top: 14px;
}

.why-right p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 22px;
}

.why-buttons {
  display: flex;
  gap: 14px;
}

.btn-primary {
  background: #1e90ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   GRID
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */
.why-card {
  position: relative;
  padding: 92px 36px 44px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  overflow: hidden;
  transition: transform .3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

/* =========================
   WHITE SLIDE BG (HOVER)
========================= */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateY(100%);
  transition: transform .45s ease;
  z-index: 0;
}

.why-card:hover::before {
  transform: translateY(0);
}

/* Keep content above slide */
.why-card * {
  position: relative;
  z-index: 2;
}

/* =========================
   ICON (FONT AWESOME)
========================= */
.why-icon {
  position: absolute;
  top: 30px;
  left: 36px;
  font-size: 44px;
  color: #ffffff;
  transition: color .35s ease;
}

/* Icon color change on hover */
.why-card:hover .why-icon {
  color: #000000;
}

/* =========================
   TEXT
========================= */
.why-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
}
.why-card:hover h4,
.why-card:hover p {
  color: #000;
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .why-top {
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 27px;
  }

  .why-card {
    padding: 82px 26px 36px;
  }

  .why-icon {
    top: 22px;
    left: 26px;
    font-size: 38px;
  }
}
/* =========================
   APPOINTMENT SECTION
========================= */
.appointment-section {
  padding: 90px 0;
  background: #ffffff;
}

.appointment-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.appointment-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  font-weight: 600;
  color:#1280df;
  margin-bottom: 16px;
}

.appointment-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #111827;
}

.appointment-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* FEATURE */
.appointment-feature {
  display: flex;
  gap: 18px;
  background: #f5f7ff;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.feature-icon {
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #1280df;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.appointment-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.appointment-feature p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* =========================
   RIGHT FORM
========================= */
.appointment-form-wrap {
  background:  #011a41;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.form-head {
  background: #094fa5;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.appointment-form {
  padding: 30px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.appointment-form input,
.appointment-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 14px;
  font-size: 14px;
  border-radius: 8px;
  outline: none;
}

.appointment-form textarea {
  height: 110px;
  resize: none;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgba(255,255,255,0.75);
}

.appointment-form button {
  margin-top: 10px;
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .appointment-container {
    grid-template-columns: 1fr;
  }

  .appointment-left h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .appointment-left h2 {
    font-size: 20px;
  }
  .appointment-section{
    padding: 50px 0;
  }
}

.site-footer {
  background: #f0f0f9;
  color: black;
  padding: 80px 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* BRAND */
.brand-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  text-decoration: none;
}

.brand-link img {
  height: 52px;          
  width: auto;
  cursor: pointer;
}

.brand-icon {
  background: #1280df;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}


.brand-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 20px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1280df;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: .3s;
}

.social-icons a:hover {
  background: #094fa5;
}

/* TITLES */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #000000;
}

/* LIST */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: .85;
}

.footer-list i {
  color: #094fa5;   
  font-size: 14px;
  margin-top: 4px;
  min-width: 16px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: #094fa5;
}

.footer-links a:hover {
  color: #000000;
}

/* POSTS */
.post-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.post-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.post-date {
  font-size: 12px;
  opacity: .7;
}

.post-item a {
  display: block;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  margin-top: 4px;
}

.post-item a:hover {
  color: #094fa5;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 13px;
  opacity: .7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* ----about------ */

.about-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d')
    center / cover no-repeat;
  border-radius: 24px;
  min-height: 340px;
  overflow: hidden;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 32, 92, 0.92) 30%,
    rgba(26, 32, 92, 0.65) 55%,
    rgba(26, 32, 92, 0.25) 75%
  );
}

/* Content */
.about-content {
  position: relative;
  padding: 60px;
  color: #fff;
}

.about-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
}

/* =========================
   MOBILE – FULL WIDTH
========================= */
@media (max-width: 767px) {
.about-banner
 {
    border-radius: 0px!important; 
    margin: 0!important;
}
  /* remove container gap */
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* FULL WIDTH banner */
  .about-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
    min-height: 260px;
  }

  .about-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26, 32, 92, 0.9),
      rgba(26, 32, 92, 0.6)
    );
  }

  .about-content {
    padding: 32px 20px;
    text-align: center;
  }

  .about-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .breadcrumb-box {
    margin: 0 auto;
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-banner {
    min-height: 220px;
  }
  .about-content h1 {
    font-size: 22px;
  }
}

/* about Section */
.service-section {
  padding: 90px 0;
}

/* Image */
.single-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* Content */
.content-wrap {
  max-width: 540px;
}

.top-pill {
  display: inline-block;
  background: #fff;
  color: #094fa5;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* Heading */
.main-heading {
  font-size: 36px;
  font-weight: 700;
  margin: 18px 0;
}

/* Paragraph */
.desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Points + Call Row */
.points-call-wrap {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* Points */
.points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.points li {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

.points i {
  color: #094fa5;
  margin-right: 8px;
}

/* Call */
.call-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #efeaff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #094fa5;
  font-size: 20px;
}

.call-box h6 {
  margin: 0;
  font-weight: 700;
}

.call-box span {
  font-size: 14px;
  color: #094fa5;
}


/* Responsive */
@media (max-width: 991px) {
  .points-call-wrap {
    flex-direction: column;
    gap: 20px;
  }
    .section-title {
        font-size: 28px;
    }
  .main-heading {
    font-size: 30px;
  }
}
.counter-section {
  background: #094fa5;
  padding: 20px 0;
  color: #fff;
}

.counter-box {
  padding: 20px;
  position: relative;
}

.counter-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.2);
}

.counter-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.counter-number {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.counter-box p {
  font-size: 14px;
  opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .counter-box::after {
    display: none;
  }
}
/* Section */
.why-choose-section {
   padding: 20px 0;  
}
.why-choose-section .container {
  padding-left: 40px;
  padding-right: 40px;
}
/* Pill */
.section-pill {
  display: inline-block;
  background: #fff;
  color:#094fa5;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* Title */
.section-title {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}

/* Description */
.section-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 30px;
}

/* Button */
.btn-main {
  background: #094fa5;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
}

.btn-main:hover {
  background: #094fa5;
  color: #fff;
}

/* Cards */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card.active {
  background: linear-gradient(135deg, #094fa5, #094fa5);
  color: #fff;
}

.service-card.active p {
  color: #e5dcff;
}

/* Icons */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #f0ebff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #094fa5;
  font-size: 28px;
}

/* Card Text */
.service-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 29px;
  }
}
.mv-section {
  padding: 60px 30px;
  background: #f6f8fd;
}

/* Heading */
.section-head h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.section-head p {
  color: #6b7280;
  max-width: 520px;
  margin: auto;
}

/* Mission Vision Card */
.mv-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 22px;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.mv-card h4 {
  font-weight: 700;
  margin: 20px 0 10px;
}

.mv-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

/* Icon */
.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #efeaff;
  color: #094fa5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Core Values */
.core-values {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.core-values h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Value Item */
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f8fd;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 500;
}

.value-item i {
  color: #094fa5;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .section-head h2 {
    font-size: 32px;
  }

  .core-values {
    padding: 30px;
  }
}
.capabilities-section {
  padding: 60px 30px;
  background: #0b0f2a;
  color: #fff;
  margin-top:50px;
}


/* Heading */
.cap-head h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 18px 0 10px;
}

.cap-head p {
  color: #b8c0ff;
  max-width: 560px;
  margin: auto;
}

/* Pill */
.cap-pill {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: #094fa5;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* Card */
.cap-card {
  height: 100%;
  background: white;
  border-radius: 22px;
  padding: 30px;
 
}

/* Icon */
.cap-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(108,60,255,0.15);
  color: #094fa5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

/* Card text */
.cap-card h5 {
  font-weight: 700;
  margin-bottom: 14px;
  color:#000
}

.cap-card ul {
  padding-left: 18px;
  margin: 0;
}

.cap-card ul li {
  font-size: 14px;
  color: #010101;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .cap-head h2 {
    font-size: 30px;
  }
}
/* Banner Box */
.about-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d')
    center/cover no-repeat;
  border-radius: 24px;
  min-height: 340px;
  overflow: hidden;
  margin: 20px;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 32, 92, 0.92) 30%,
    rgba(26, 32, 92, 0.65) 55%,
    rgba(26, 32, 92, 0.25) 75%
  );
}

/* Content */
.about-content {
  position: relative;
  padding: 60px;
  color: #fff;
}

.about-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  width: auto;
}

.breadcrumb-box span {
  color: #fff;
  font-weight: 500;
}

.breadcrumb-box .divider {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .about-banner {
    min-height: 280px;
  }

  .about-content h1 {
    font-size: 26px;
  }
}

/* =========================
   FEDERAL SERVICES CARDS
========================= */
.fc-services {
  padding: 32px 32px 32px 40px;
  background: #f4f6fb;
}

.fc-services-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.fc-services-head h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 16px 0 10px;
}

.fc-services-head p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

.fc-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: #fff;
  color: #094fa5;
  font-size: 12px;
  font-weight: 600;
}

/* Grid */
.fc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.fc-service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.fc-service-card:hover {
  transform: translateY(-6px);
}

.fc-service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fc-service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* List */
.fc-service-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.fc-service-card ul li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

/* Link */
.fc-service-card a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #094fa5;
  text-decoration: none;
}

.fc-service-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .fc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fc-services-grid {
    grid-template-columns: 1fr;
  }

  .fc-services-head h2 {
    font-size: 28px;
  }
}
/* =========================
 PARTNERSHIPS & TEAMING
========================= */

.partner-section {
  padding: 50px 0;
  background: #f6f8fd;
}

.partner-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Pill */
.partner-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #1d0370;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Heading */
.partner-container h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

/* Intro */
.partner-intro {
  font-size: 15px;
  color: #6b7280;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* Card */
.partner-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  text-align: left;
}

.partner-card i {
  font-size: 32px;
  color: #1d0370;
  margin-bottom: 18px;
}

.partner-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* CTA */
.partner-cta {
  background: linear-gradient(135deg, #1d0370, #2905a1);
  padding: 40px;
  border-radius: 26px;
  color: #ffffff;
}

.partner-cta p {
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.partner-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #ffffff;
  color: #094fa5;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
 RESPONSIVE
========================= */

@media (max-width: 992px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-container h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-container h2 {
    font-size: 26px;
  }

  .partner-cta {
    padding: 30px 24px;
  }
}

/* =========================
 CONTACT PAGE BANNER
========================= */
.page-banner {
  position: relative;
  margin: 30px;
  border-radius: 30px;
  min-height: 340px;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d")
    center/cover no-repeat;
  overflow: hidden;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 18, 70, 0.95) 35%,
    rgba(11, 18, 70, 0.6) 65%,
    rgba(11, 18, 70, 0.25) 85%
  );
}

.page-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.page-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Breadcrumb */
.breadcrumb-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  width: fit-content;
}

.breadcrumb-box span {
  color: #fff;
  font-weight: 500;
}

.breadcrumb-box .divider {
  opacity: 0.7;
}

/* =========================
 CONTACT SECTION
========================= */
.contact-section {
  padding: 90px 0;
  background: #f4f6fb;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-pill {
  display: inline-block;
  background: #ffffff;
  color: #094fa5;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-list i {
  font-size: 20px;
  color: #094fa5;
  margin-top: 4px;
}

.contact-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.contact-list span {
  font-size: 14px;
  color: #6b7280;
}

.contact-list .muted span {
  opacity: 0.6;
}

/* RIGHT SIDE FORM */
.contact-form-box {
  background: #ffffff;
  padding: 46px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-box p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  background: #f3f6fb;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  align-self: flex-start;
  background: linear-gradient(90deg, #094fa5, #094fa5);
  color: #ffffff;
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
 RESPONSIVE
========================= */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 60px 40px;
  }

  .page-content h1 {
    font-size: 32px;
  }

  .contact-info h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .page-banner {
    margin: 16px;
    min-height: 260px;
    border-radius: 22px;
  }

  .page-content {
    padding: 44px 28px;
  }

  .page-content h1 {
    font-size: 26px;
  }

  .contact-form-box {
    padding: 32px 26px;
  }
}



.desktop-img,
.mobile-img {
  display: block;
}

@media (max-width: 768px) {
  .desktop-img { display: none; }
}

@media (min-width: 769px) {
  .mobile-img { display: none; }
}





/* ===== FIXED SINGLE-LINE MARQUEE ===== */
.service-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Smooth infinite scroll */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}





/* =========================
   FOOTER – MOBILE CENTER FIX
========================= */
@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;   /* single column */
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col img {
    margin: 0 auto 12px;
    display: block;
  }

  .footer-col p {
    margin: 0 auto;
  }

  .footer-list,
  .footer-links {
    padding: 0;
  }

  .footer-list li,
  .footer-links li {
    justify-content: center;
    text-align: center;
  }

  .footer-links a {
    display: inline-block;
  }

  .footer-bottom {
    text-align: center;
    padding: 16px;
  }
}


