@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Fonts */
:root {
  --font-default:
    "Roboto", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

/* Colors */
:root {
  --color-default: #494f5d;
  --color-primary: #024ae8;
  --color-secondary: #ffffff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  text-decoration: none;
  font-size: 16px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #002147;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.menuNavbar .nav-item {
  margin-right: 2px;
}

.menuNavbar .nav-item .nav-link {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
}

.menuNavbar .navbar-nav .nav-link:hover,
.menuNavbar .navbar-nav .nav-link.active,
.menuNavbar .navbar-nav .nav-link.show {
  background: #eff6ff;
  color: #024ae8;
}

.megamenu {
  padding: 24px 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.menuNavbar .dropdown-toggle::after {
  border: none; /* remove default triangle */
  margin-left: 0.5rem;
  vertical-align: middle;
}

.dropdown-toggle::after {
  content: "\f282"; /* chevron-down */
  font-family: "Bootstrap-icons";
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    margin-top: 9px;
  }
}
.service-card {
  height: 100%;
  padding: 20px;
  border: 1px solid #c9d1e6;
  border-radius: 18px;
  background: #fff;
  transition: all 0.3s ease;
}

.service-card img {
  height: 54px;
  margin-bottom: 20px;
}

.service-card h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.service-card a {
  text-decoration: none;
  font-weight: 500;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.service-card a i {
  font-size: 24px;
}

.service-card:hover {
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.menuNavbar .btn-contactUs {
  background: #024ae8;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
}

.menuNavbar .btn-contactUs:hover {
  color: #fff !important;
  background: #0037b1 !important;
}

header .navbar-toggler {
  border: none;
}

header .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .menuNavbar .nav-item {
    margin-right: 0px;
    margin-bottom: 4px;
  }
}

.hero-section {
  padding: 100px 0px;
  background-image: url("../images/hero-home-bg.jpg"); /* your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}

@media (min-width: 991.98px) {
  .home-hero-image {
    position: absolute;
    bottom: -140px;
    right: 0px;
    width: 450px;
  }
}

/* Text */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #0d6efd;
}

.hero-content p {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Image */
.hero-image img {
  max-width: 100%;
  height: auto;
}

.btn-our-experts {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: #024ae8;
  border-radius: 100px;
  border: 1px solid #024ae8;
  padding: 14px 18px;
}

.btn-our-experts:hover {
  background: #003dc4;
  color: #fff;
}

.btn-explore-services {
  font-weight: 600;
  font-size: 16px;
  color: #024ae8;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #024ae8;
  padding: 14px 18px;
}

.btn-explore-services:hover {
  background: #eff6ff;
  color: #024ae8;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 40px 20px;
  }
  .hero-wrapper {
    padding: 40px 30px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-wrapper {
    border-radius: 24px;
    padding: 30px 20px;
  }

  .btn-our-experts {
    font-size: 14px;
    padding: 10px 12px;
  }

  .btn-explore-services {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/*Partner Section*/
.partner-section {
  background: #f8fbff;
}

.image-box {
  background: #ffffff;
  border-radius: 32px;
  padding: 30px;
}

.content-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d1d1f;
}

.content-box h2 span {
  color: #0d6efd;
}

.content-box p {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

.feature-list i {
  color: #0d6efd;
  font-size: 20px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .content-box h2 {
    font-size: 26px;
    text-align: center;
  }

  .content-box p {
    text-align: center;
  }

  .feature-list {
    padding-left: 0;
  }
}

/*Stats Section*/
.stats-section {
  padding: 60px 0;
  background: #ffffff;
}

.stat-item {
  padding: 20px 10px;
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  color: #8a8a8a;
  margin-bottom: 0;
  font-weight: 500;
}

/* Vertical divider (desktop only) */
@media (min-width: 768px) {
  .stat-border {
    border-left: 2px solid #cfd6e4;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .stat-item h2 {
    font-size: 34px;
  }

  .stat-item p {
    font-size: 15px;
  }
}

/*Challenge Section*/

.challenge-section {
  background: #eef6ff;
}

.challenge-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.challenge-title span {
  color: #0d6efd;
}

.challenge-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px 30px;
  height: 100%;
  border: 1px solid #cfdaf0;
}

.challenge-number {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 16px;
}

.challenge-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.challenge-card p {
  font-size: 15.5px;
  color: #4f5660;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .challenge-title {
    font-size: 26px;
  }

  .challenge-card {
    padding: 28px 24px;
  }
}

/*Solutions Section */

.solutions-section {
  background: #ffffff;
}

.solutions-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.solutions-title span {
  color: #0d6efd;
}

/* Card */
.solution-card {
  height: 100%;
  background: #f1f4fc;
  border-radius: 28px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e3e2e2;
}

.solution-card img {
  height: 60px;
  margin-bottom: 20px;
}

.solution-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.solution-card p {
  font-size: 15.5px;
  color: #4f5660;
  line-height: 1.6;
  margin-bottom: 18px;
}

.solution-card a {
  font-weight: 700;
  font-size: 16px;
  color: #0d6efd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.solution-card a i {
  font-size: 24px;
}

/* Hover */
.solution-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 576px) {
  .solutions-title {
    font-size: 26px;
  }

  .solution-card {
    padding: 24px;
  }
}

/*Expertise Section*/

.expertise-section {
  position: relative;
  background: linear-gradient(102.17deg, #4f55e3 -2.68%, #4f55e3 104.04%);
  color: #ffffff;
  overflow: hidden;
}

/* ===== BLUR LIGHTS ===== */

/* Top Center */
.expertise-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.45),
    transparent 90%
  );
  filter: blur(100px);
  z-index: 1;
  pointer-events: none; /* ✅ IMPORTANT */
}

/* Bottom Left */
.expertise-section::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.95),
    transparent 60%
  );
  filter: blur(160px);
  z-index: 1;
  pointer-events: none; /* ✅ IMPORTANT */
}

/* Bottom Right */
.expertise-section .blur-right {
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.65),
    transparent 70%
  );
  filter: blur(160px);
  z-index: 1;
  pointer-events: none; /* ✅ IMPORTANT */
}

/* Content always above blur */
.expertise-section .container {
  position: relative;
  z-index: 2;
}

/* Bottom Right (extra layer) */
.expertise-section .blur-right {
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.85),
    transparent 70%
  );
  filter: blur(160px);
  z-index: 1;
  pointer-events: none;
}

.expertise-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

/* Card */
.expertise-card {
  height: 100%;
  padding: 32px 26px;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* Hover */
.expertise-card:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Icon */
.icon-box {
  width: 64px;
  height: 64px;
  padding: 4px;
  background: #324ccd;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-box i {
  font-size: 28px;
  color: #ffffff;
}

.expertise-card h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.expertise-card p {
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 576px) {
  .expertise-title {
    font-size: 26px;
  }
}

/*Impact Section*/

.impact-section {
  background: #ffffff;
}

.impact-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.impact-title span {
  color: #3f6df6;
}

/* Item */
.impact-item {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  transition: all 0.3s ease;
}

/* Hover */
.impact-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.impact-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}

.impact-icon img {
  width: 100%;
  height: auto;
}

.impact-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2b2b;
}

.impact-item p {
  font-size: 15.5px;
  color: #4f5660;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .impact-title {
    font-size: 26px;
  }
}

/*Sectors Section*/

.sectors-section {
  background: #eef6ff;
}

.sectors-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.sectors-title span {
  color: #3f6df6;
}

/* Card */
.sector-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.sector-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease; /* ✅ MOVE HERE */
}

/* Bottom white panel */
.sector-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sector-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.sector-content a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sector-content a i {
  font-size: 24px;
}

/* Hover effect */
.sector-card:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 576px) {
  .sectors-title {
    font-size: 26px;
  }

  .sector-card img {
    height: 320px;
  }

  .sectors-section .swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Shared styles for all swiper navs */
.sectors-swiper-nav,
.testimonial-swiper-nav {
  display: flex;
  align-items: center;
  gap: 10px; /* space between arrows */
  padding-top: 20px;
}

.sectors-swiper-nav .swiper-button-next,
.sectors-swiper-nav .swiper-button-prev,
.testimonial-swiper-nav .swiper-button-next,
.testimonial-swiper-nav .swiper-button-prev {
  position: static; /* remove absolute positioning */
  width: 44px;
  height: 44px;
  background: #fff; /* theme color */
  border-radius: 50%;
  color: #0062b5;
  border: 1px solid #ddd;
}

.sectors-swiper-nav .swiper-button-next:hover,
.sectors-swiper-nav .swiper-button-prev:hover,
.testimonial-swiper-nav .swiper-button-next:hover,
.testimonial-swiper-nav .swiper-button-prev:hover {
  background-color: #fafafa;
  border-color: #0062b5;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.sectors-swiper-nav .swiper-button-next::after,
.sectors-swiper-nav .swiper-button-prev::after,
.testimonial-swiper-nav .swiper-button-next::after,
.testimonial-swiper-nav .swiper-button-prev::after {
  font-size: 14px;
  color: #0062b5;
  height: auto;
}

.sectors-swiper-nav .swiper-button-next svg,
.sectors-swiper-nav .swiper-button-prev svg,
.testimonial-swiper-nav .swiper-button-next svg,
.testimonial-swiper-nav .swiper-button-prev svg {
  height: 20px !important;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 40px;
  padding-bottom: 40px;
}

.clients .clients-slider {
  padding: 10px;
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  height: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background: #ffffff;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .clients {
    padding-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*Testimonials Section*/

.testimonials-section {
  background: #ffffff;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.testimonials-title span {
  color: #3f6df6;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border: 1.5px solid #d6dbea;
  border-radius: 28px;
  padding: 32px 28px;
}

.quote-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2b2b2b;
}

.quote-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4f5660;
  margin-bottom: 28px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  color: #6b7280;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 30px 28px;
  }
  .testimonials-title {
    font-size: 26px;
  }
  .testimonials-section .swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.knowledge-section {
  background: #ffffff;
}

.knowledge-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.knowledge-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 720px;
  margin: auto;
}

/* Card base */
.knowledge-card {
  position: relative;
  border-radius: 28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  height: 100%;
}

.knowledge-card img {
  max-width: 220px;
}

/* Card base */
.case-study-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  gap: 20px;
  overflow: hidden;
  height: 100%;
}

/* Content */
.card-content h5,
.card-content h4 {
  font-weight: 600;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.card-content a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.badge-label {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 10px;
}

/* Backgrounds */
.bg-blog {
  background: #f2efff;
}

.bg-event {
  background: #f9eefe;
}

.bg-case {
  background: #eef6ff;
}

.large-card img {
  max-width: 380px;
  margin-top: -50px;
}

/* Responsive */
@media (max-width: 991px) {
  .knowledge-card {
    flex-direction: column;
  }

  .knowledge-card img {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .knowledge-title {
    font-size: 26px;
  }
}

/*CTA Section*/

.cta-section {
  background: #f7f8ff;
}

.cta-wrapper {
  background: linear-gradient(100deg, #192e97, #9e16c1);
  border-radius: 22px;
  padding: 20px 0px 20px 50px;
  color: #ffffff;
  overflow: hidden;
}

/* Text */
.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  color: #1d2ca5;
}

/* Image */
.cta-image img {
  /*max-width: 100%;*/
  height: 250px;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-wrapper {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-image {
    margin-top: 30px;
    text-align: center !important;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-image img {
    display: none;
  }
}

/*Footer Section*/
.footer-section {
  background: #111e3c;
  color: #ffffff;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14.5px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact p {
  font-size: 14.5px;
  color: #d1d5db;
  display: flex;
  gap: 10px;
}

/* Newsletter */
.footer-newsletter-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 12px 26px;
  border-radius: 50px;
  background: #0d6efd;
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.newsletter-form button:hover {
  background: #003dc2;
  color: #ffffff;
}

/* Social */
.social-links span {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.social-links .icons a {
  color: #ffffff;
  font-size: 20px;
  margin-right: 10px;
}

/* Divider */
.footer-divider {
  margin: 40px 0 10px;
  border: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    #111e3c 0%,
    #ffffff 50%,
    #111e3c 100%
  );
  border-image-slice: 1; /* ✅ REQUIRED */
}

/* Bottom */
.footer-bottom {
  font-size: 14.5px;
  color: #d1d5db;
}

.copyright {
  padding: 20px 0px;
}

/* Responsive */
@media (max-width: 576px) {
  .social-links {
    text-align: center;
  }

  .footer-newsletter-title {
    font-size: 18px;
  }

  /*.newsletter-form {
    flex-direction: column;
  }*/
}
