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

:root {
  --primary-color: #1a5ca8;
  --primary-hover: #134680;
  --accent-color: #f04e5d;
  --accent-hover: #d93d4c;
  --text-dark: #2b303a;
  --text-light: #ffffff;
  --text-muted: #747d8c;
  --border-color: #e2e8f0;
  --font-primary: 'Open Sans', sans-serif;
}

/* Base styles */
body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Top Utility Bar */
.top-bar {
  background-color: #ffffff;
  /* border-bottom: 1px solid var(--border-color); */
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 0;
  color: #555555;
}

.top-bar a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: var(--primary-color);
}

.top-bar .contact-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  font-weight: 500;
}

.top-bar .contact-item i {
  margin-right: 6px;
  color: #555555;
}

.top-bar .social-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar .social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.top-bar .social-icon:hover {
  transform: scale(1.1);
  color: #ffffff;
  filter: brightness(0.9);
}

.top-bar .social-icon.linkedin {
  background-color: #0077b5;
}

.top-bar .social-icon.instagram {
  background-color: #2b2b2b;
}

.top-bar .social-icon.whatsapp {
  background-color: #25d366;
}

/* Header & Navbar */
.navbar {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 15.5px;
  padding: 8px 29px !important;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

/* Dropdown Submenus */
.navbar-nav .dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0;
  min-width: 220px;
  background-color: #ffffff;
}

.navbar-nav .dropdown-item {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:last-child {
  border-bottom: none;
}

.navbar-nav .dropdown-item:hover {
  background-color: #f8fafc;
  color: var(--primary-hover);
  padding-left: 24px;
}

/* Plus sign helper style */
.nav-link .menu-suffix {
  margin-left: 4px;
  font-size: 11px;
  opacity: 0.8;
  font-weight: normal;
}

.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

/* Hover dropdown behavior for desktop screens */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
}

/* Responsive navbar toggler */
.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231a5ca8' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Slider / Carousel Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 550px;
  background-color: #030a1e;
}

.inner-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 30, 0.55);
}

.inner-banner .container {
  position: relative;
  z-index: 1;
}

.inner-banner h1 {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
  width: 100%;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay for text readability */
.hero-slider .carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3, 10, 30, 0.85) 0%, rgba(3, 10, 30, 0.45) 50%, rgba(3, 10, 30, 0.3) 100%);
  z-index: 1;
}

/* Custom Text Caption on the left side */
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 600px;
  color: var(--text-light);
  text-align: left;
}

.carousel-caption-custom h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-light);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-caption-custom p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Details Custom Button */
.details-btn-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.details-btn-circle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: transparent;
}

.details-btn-text {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 3;
  margin-right: 12px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.details-btn-arrow {
  width: 45px;
  height: 1px;
  background-color: var(--accent-color);
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.details-btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Custom Button Hover Micro-animations */
.details-btn-container:hover .details-btn-circle {
  transform: translateY(-50%) scale(1.2);
  background-color: rgba(240, 78, 93, 0.08);
}

.details-btn-container:hover .details-btn-arrow {
  width: 65px;
}

.details-btn-container:hover .details-btn-text {
  color: #ff6b79;
}

/* Vertical Slide Indicators on the Right */
.carousel-indicators-vertical {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 15;
}

.carousel-indicators-vertical li {
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.carousel-indicators-vertical li::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-right: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-indicators-vertical li.active {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.carousel-indicators-vertical li.active::before {
  width: 24px;
  margin-right: 12px;
  opacity: 1;
}

.carousel-indicators-vertical li:hover {
  color: #ffffff;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1199.98px) {
  .carousel-caption-custom h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .top-bar {
    font-size: 11.5px;
  }

  .top-bar .contact-item {
    margin-right: 10px;
  }

  .hero-slider {
    height: calc(100vh - 160px);
  }

  .carousel-caption-custom {
    left: 6%;
    max-width: 85%;
  }

  .carousel-caption-custom h1 {
    font-size: 2.5rem;
  }

  /* Mobiles Navbar styles */
  .navbar-nav {
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f1f5f9;
  }

  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 15px;
    background-color: #fdfdfd;
  }

  .navbar-nav .dropdown-item {
    padding: 8px 15px;
    border-bottom: none;
  }

  .carousel-indicators-vertical {
    right: 4%;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    display: none !important;
    /* Hide top bar on extra small screens for cleaner mobile design */
  }

  .hero-slider {
    height: 500px;
  }

  .carousel-caption-custom {
    left: 5%;
    max-width: 90%;
  }

  .carousel-caption-custom h1 {
    font-size: 1.85rem;
    margin-bottom: 15px;
  }

  .carousel-caption-custom p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* On small screens, position vertical indicators horizontally at the bottom */
  .carousel-indicators-vertical {
    right: auto;
    left: 50%;
    bottom: 20px;
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    background-color: rgba(3, 10, 30, 0.4);
    padding: 6px 15px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
  }

  .carousel-indicators-vertical li {
    font-size: 12px;
  }

  .carousel-indicators-vertical li.active::before {
    display: none;
    /* Hide active indicator line when displayed horizontally */
  }
}

/* ==========================================
   About Section & Buttons Styling
   ========================================== */
.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-subtitle {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 30px;
}

.about-buttons {
  margin-top: 20px;
}

.about-img-wrapper {
  position: relative;
  z-index: 1;
}

.about-image {
  max-width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Decorative backdrop shape behind the image */
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 188, 65, 0.15) 0%, rgba(253, 60, 89, 0.15) 100%);
  border-radius: 50%;
  z-index: -1;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(26, 92, 168, 0.08) 0%, rgba(240, 78, 93, 0.08) 100%);
  border-radius: 12px;
  z-index: -1;
}

/* Button Styles */
.btn-gradient {
  background-image: linear-gradient(90deg, #ffbc41 0%, #fd3c59 100%);
  color: #ffffff !important;
  border: 2px solid transparent;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 28px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-gradient:hover {
  color: #ffffff !important;
  filter: brightness(1.08);
  box-shadow: 0 5px 15px rgba(253, 60, 89, 0.3);
  transform: translateY(-2px);
}

.btn-outline-gradient {
  color: #fd3c59 !important;
  background: transparent;
  border: 2px solid #fd3c59;
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 28px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-outline-gradient:hover {
  background: linear-gradient(90deg, #ffbc41 0%, #fd3c59 100%);
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(253, 60, 89, 0.3);
  transform: translateY(-2px);
}

/* ==========================================
   Solutions Section & Cards Styling
   ========================================== */
.solutions-section {
  background-color: #fafbfc; /* light gray/white background like the image */
  padding: 80px 0;
}

.solutions-title {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.solutions-subtitle {
  font-size: 15px;
  color: #777777;
  max-width: 600px;
  margin: 0 auto;
}

.italic-accent {
  font-style: italic;
  font-family: Georgia, serif;
  color: #fd3c59; /* Accent pink/red color from image */
  font-weight: normal;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #eaeaea; /* very subtle gray border */
  border-radius: 4px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(253, 60, 89, 0.2);
}

.solution-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: #fd3c59; /* Red background icon wrapper */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
  transform: scale(1.08);
}

.solution-card-title {
  color: #fd3c59; /* Red title like image */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.solution-card-text {
  color: #666666;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1; /* Aligns read more button at bottom */
}

.btn-card-readmore {
  border: 1px solid #fd3c59;
  color: #fd3c59;
  background-color: transparent;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-card-readmore:hover {
  background-color: #fd3c59;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(253, 60, 89, 0.2);
  transform: translateY(-1px);
}

/* ==========================================
   Services Section & List Styling
   ========================================== */
.services-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.services-title {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.services-subtitle {
  font-size: 15px;
  color: #777777;
  max-width: 600px;
  margin: 0 auto;
}

.services-img-wrapper {
  position: relative;
  display: inline-block;
}

.services-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.services-right-col {
  position: relative;
}

@media (min-width: 768px) {
  .services-right-col {
    padding-left: 50px;
  }
  
  .services-right-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 1px;
    background-color: #eaeaea; /* clean vertical line separating columns */
  }
}

.service-item {
  transition: transform 0.3s ease;
}

.service-icon-wrapper-outline {
  width: 58px;
  height: 58px;
  border: 1px solid #c5cbd3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b4252;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper-outline {
  border-color: #fd3c59;
  color: #ffffff;
  background-color: #fd3c59; /* turns solid on hover to match theme */
  box-shadow: 0 4px 12px rgba(253, 60, 89, 0.25);
  transform: scale(1.05);
}

.service-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.service-item:hover .service-item-title {
  color: #fd3c59; /* title highlights on hover */
}

.service-item-desc {
  font-size: 14.5px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================
   Testimonials Section Styling
   ========================================== */
.testimonials-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.testimonials-subtitle {
  font-size: 15px;
  color: #777777;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card-wrapper {
  padding-bottom: 30px; /* spacing for overlapping logo circle badge */
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 40px 30px 50px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(253, 60, 89, 0.1);
}

.testimonial-quote {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555555;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-logo-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 5;
}

.testimonial-logo-circle {
  width: 68px;
  height: 68px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .testimonial-logo-circle {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.author-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.author-title {
  font-size: 13.5px;
  color: #718096;
  font-weight: 500;
}

/* ==========================================
   CTA Ribbon Styling
   ========================================== */
.cta-ribbon-section {
  position: relative;
  z-index: 10;
  margin-bottom: -60px; /* overlap into footer */
}

.cta-ribbon-wrapper {
  background: linear-gradient(90deg, #1d69d4 0%, #4a3bf5 100%);
  border-radius: 16px;
  padding: 35px 50px;
  box-shadow: 0 15px 40px rgba(74, 59, 245, 0.25);
}

.cta-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.btn-cta {
  background-color: #ffbc41;
  color: #1a202c !important;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: #f1aa26;
  box-shadow: 0 5px 15px rgba(255, 188, 65, 0.4);
  transform: translateY(-2px);
}

/* ==========================================
   Footer Section Styling
   ========================================== */
.footer-section {
  background-color: #0c1b30;
  color: #ffffff;
  padding-top: 120px; /* leaves space for overlapping CTA Ribbon */
  padding-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #fd3c59; /* Red/pink indicator line */
}

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

.footer-links a {
  color: #b3c0d1;
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffbc41; /* Highlights yellow on hover to match image */
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14.5px;
  color: #b3c0d1;
}

.footer-contact-list a {
  color: #b3c0d1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #ffbc41;
}

.contact-icon {
  margin-right: 12px;
  margin-top: 4px;
  color: #ffbc41; /* Gold contact icons */
  font-size: 16px;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 15px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-social-icon:hover {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.footer-social-icon.whatsapp {
  background-color: #25d366;
}

.footer-social-icon.instagram {
  background-color: #e4405f;
}

.footer-social-icon.linkedin {
  background-color: #0077b5;
}

.copyright-text {
  font-size: 13.5px;
  color: #b3c0d1;
}

/* Alliance logos custom style */
.booder-r {
  border-radius: 5px !important;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.booder-r:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
  border-color: var(--primary-color) !important;
}

