/* ========================================
   CSS VARIABLES & ROOT
   ======================================== */
:root {
  --primary-blue: #2a5c8a;
  --light-blue: #e8f1f8;
  --grey: #6c757d;
  --light-grey: #f8f9fa;
  --dark-grey: #343a40;
  --accent: #5aa3d6;
}

/* ========================================
   BASE & TYPOGRAPHY
   ======================================== */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2d3748;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
}

/* ========================================
   NAVBAR COMPONENT
   ======================================== */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue) !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(42, 92, 138, 0.3);
}

.navbar-brand span {
  color: var(--accent);
}

.nav-link {
  color: var(--dark-grey) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
  background-color: rgba(42, 92, 138, 0.05);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-contact {
  background: var(--primary-blue);
  color: white !important;
  padding: 0.6rem 1.8rem !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(42, 92, 138, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(42, 92, 138, 0.4);
  background: var(--accent);
}

.btn-hero {
  background-color: white;
  color: var(--primary-blue);
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-blue);
  color: white;
  border-color: white;
}

.btn-submit {
  background: var(--primary-blue);
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 92, 138, 0.3);
}

/* ========================================
   PAGE HEADER COMPONENT
   ======================================== */
.page-header {
  background: linear-gradient(rgba(42, 92, 138, 0.85), rgba(42, 92, 138, 0.85)),
    url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */
.hero-section {
  background: linear-gradient(rgba(42, 92, 138, 0.85), rgba(42, 92, 138, 0.85)),
    url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-section p.lead {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   COMMON SECTIONS
   ======================================== */
.section-custom {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--grey);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 750px;
  margin: 2rem auto 3rem;
}

/* ========================================
   CARD COMPONENTS
   ======================================== */
.card-custom {
  border: none;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  overflow: hidden;
  background: white;
}

.card-custom:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(42, 92, 138, 0.2);
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--primary-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(42, 92, 138, 0.25);
  transition: all 0.3s ease;
}

.card-custom:hover .card-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  background: var(--accent);
}

.card-custom h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.card-custom p {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.7;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(42, 92, 138, 0.2);
}

.feature-number {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: start;
}

.feature-list i {
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 3px;
  font-size: 1.2rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(42, 92, 138, 0.15);
}

.quote-icon {
  font-size: 3rem;
  color: var(--light-blue);
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.client-info {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1rem;
}

.client-details h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.client-details p {
  color: var(--grey);
  margin: 0;
  font-size: 0.9rem;
}

/* Service Cards */
.service-card {
  border-top: 4px solid var(--primary-blue);
  position: relative;
}

.service-card h3 i {
  color: var(--accent);
  margin-right: 10px;
}

.service-card-detail {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.service-header {
  background: var(--primary-blue);
  color: white;
  padding: 3rem;
  text-align: center;
}

.service-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-header h2 {
  font-weight: 800;
  margin: 0;
}

.service-content {
  padding: 3rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  align-items: start;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 3px;
}

/* Benefit Cards */
.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.benefit-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(42, 92, 138, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.value-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ========================================
   IMAGE CARDS
   ======================================== */
.image-card {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42, 92, 138, 0.95), transparent);
  color: white;
  padding: 2rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.image-card:hover .image-overlay {
  background: rgba(42, 92, 138, 0.95);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-overlay h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.image-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ========================================
   FORM STYLES
   ======================================== */
.contact-form-container {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(42, 92, 138, 0.15);
}

/* ========================================
   HIGHLIGHT/CTA BOXES
   ======================================== */
.highlight-box {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.highlight-box h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-box {
  background: var(--primary-blue);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.cta-section {
  background: var(--light-blue);
  padding: 5rem 0;
}

.cta-box {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* ========================================
   CONTACT INFO CARD
   ======================================== */
.contact-info-card {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-item h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ========================================
   POSITIONS CARD
   ======================================== */
.positions-card {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.positions-card h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 1rem;
}

.positions-card ul {
  list-style: none;
  padding: 0;
}

.positions-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(42, 92, 138, 0.1);
  display: flex;
  align-items: center;
}

.positions-card li:last-child {
  border-bottom: none;
}

.positions-card i {
  color: var(--accent);
  margin-right: 1rem;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: var(--primary-blue);
  color: white;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   APPROACH SECTION
   ======================================== */
.approach-item {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
}

.approach-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.approach-content h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ========================================
   IMAGE WITH TEXT LAYOUT
   ======================================== */
.image-text-section {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.image-text-section img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
  padding: 5rem 0;
}

.story-content {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* ========================================
   PAGE-SPECIFIC SECTIONS
   ======================================== */
.page-header,
.why-section,
.testimonials-section,
.service-detail,
.contact-section,
.careers-section,
.content-section {
  padding: 5rem 0;
}

/* ========================================
   FOOTER COMPONENT
   ======================================== */
.footer-custom {
  background: var(--dark-grey);
  color: #e2e8f0;
  padding: 4rem 0 1.5rem;
}

.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.footer-custom h5 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-custom a {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-custom a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-custom .list-unstyled i {
  width: 20px;
  color: var(--accent);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  color: #a0aec0;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
  .hero-section h1,
  .page-header h1 {
    font-size: 2rem;
  }

  .hero-section p.lead {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-custom,
  .content-section {
    padding: 3rem 0;
  }

  .image-card {
    height: 250px;
  }

  .image-text-section {
    flex-direction: column;
  }
}


/* ========================================
   CAROUSEL SLIDER
   ======================================== */

.testimonial-carousel .carousel-item {
    padding: 3rem 0;
}
.testimonials-row {
    --card-gap: 3rem;
    display: flex;
    gap: var(--card-gap);
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    flex: 0 1 480px; /* Fixed width with flex */
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.12),
        0 20px 60px rgba(0,0,0,0.08),
        0 4px 12px rgba(0,0,0,0.06),
        0 0 0 1px rgba(255,255,255,0.8) inset;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue, #007bff), rgba(0,123,255,0.6));
}
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.20),
        0 40px 100px rgba(0,0,0,0.15),
        0 8px 24px rgba(0,0,0,0.12),
        0 0 0 1px rgba(255,255,255,0.9) inset;
}
.testimonial-card:hover::before {
    height: 6px;
}
.testimonial-content {
    flex-grow: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-blue, #007bff);
    margin-bottom: 1.5rem;
}
.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.65;
    font-style: italic;
    color: #333;
    margin-bottom: auto;
    min-height: 130px;
}
.client-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue, #007bff), #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}
.client-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}
.client-details h5 {
    margin: 0;
    color: var(--primary-blue, #007bff);
    font-weight: 700;
    font-size: 1.15rem;
}
.client-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Enhanced Arrow Navigation */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.1);
}
.carousel-control-prev { left: -6%; }
.carousel-control-next { right: -6%; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    border: 3px solid rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -32px;
}
.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--primary-blue, #007bff) !important;
}
.carousel-control-prev-icon::before { content: "\f053"; }
.carousel-control-next-icon::before { content: "\f054"; }

.carousel-indicators {
    bottom: -70px;
}
.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(0,123,255,0.3);
    border: 2px solid rgba(255,255,255,0.8);
    margin: 0 7px;
}
.carousel-indicators .active {
    background-color: var(--primary-blue, #007bff);
    transform: scale(1.3);
}

/* RESPONSIVE: Vertical on smaller screens */
@media (max-width: 992px) {
    .testimonials-row {
        flex-direction: column;
        gap: 2rem;
        --card-gap: 0;
    }
    .testimonial-card {
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev { left: -2%; }
    .carousel-control-next { right: -2%; }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }
    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
        font-size: 1.5rem;
    }
}