/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&display=swap');

body {
  font-family: 'Nunito Sans', sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: white;
  position: relative;
}

.logo {
  margin-left: 20px;
}

/* Mobile view (typically < 768px) */
@media (max-width: 767px) {
  .logo img {
    width: 150px;
  }
}

/* Animated lines - Mobile only */
.lines-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  left: 5%;
  transition: all 0.3s ease;
}

.line {
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.line:nth-child(1) {
  width: 15px;
}

.line:nth-child(3) {
  width: 20px;
}

.lines-menu:hover .line {
  width: 25px;
}

/* Show only on mobile devices (typically < 768px) */
@media (max-width: 767px) {
  .lines-menu {
    display: flex;
  }
}

/* Navigation styles */
.nav-button {
  text-decoration: none;
  background-color: #0053BF;
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}




/* Contact Links Grid Layout */
.contact-links-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-row {
  display: flex;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
  padding: 12px 18px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid gainsboro;
}

.contact-link:hover {
  color: #F57A00;
  background-color: #e6f0ff;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}



/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .contact-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-link {
    width: 100%;
  }
}

/* Top Contact Bar */
.top-contact-bar {
  background-color: #f8f9fa;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid #eaeaea;
}

.contact-item {
  color: #555;
  white-space: nowrap;
}

.contact-icon {
  width: 14px;
  height: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 16px;
  height: 16px;

  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 1;
}

/* Main Header */
.main-header {
  z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0px;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.logo-tagline {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
  font-style: italic;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  color: #333 !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 15px !important;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link:focus {
  color: #F57A00 !important;
  background-color: #f5f8ff;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: #333;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Contact Button */
.btn-contact {
  background: linear-gradient(90deg, #0255B6 0%, #004494 100%);

  color: white !important;
  padding: 10px 25px !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(12, 4, 107, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(12, 4, 107, 0.3);
}

.btn-contact-two {
     background: transparent;
    color: #F57A00;
    padding: 10px 25px !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #F57A00;
    position: relative;
    overflow: hidden;
}

.btn-contact-two:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 4, 107, 0.3);
}


.btn-contact-three {
     background: transparent;
    color: #004494;
    padding: 10px 25px !important;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #004494;
    position: relative;
    overflow: hidden;
}

.btn-contact-three:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 4, 107, 0.3);
}


.btn-contact:active {
  transform: translateY(0);
}

.btn-contact i {
  transition: transform 0.3s;
}

.btn-contact:hover i {
  transform: translateX(3px);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mega-dropdown .dropdown-menu {
  width: max-content;
  left: 0;
  right: 0;
  padding: 20px;
}

.dropdown-item {
  padding: 6px 0 6px 5px !important;
  font-size: 15px;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.dropdown-item img {
  width: 30px;
  height: 30px;
}

.dropdown-item:hover {
  color: #F57A00 !important;
  background-color: transparent !important;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 15px;
  }

  .header-button {
    margin: 15px 0;
    text-align: center;
  }

  .nav-link {
    padding: 8px 15px !important;
  }
}

@media (max-width: 767.98px) {
  .contact-info {
    flex-direction: column;
    gap: 5px !important;
  }

  .contact-item {
    white-space: normal;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .navbar-collapse {
    padding: 15px 0;
  }

  .logo-tagline {
    display: inline !important;
    margin-left: 5px;
  }
}

@media (max-width: 575.98px) {
  .top-contact-bar {
    display: none;
    padding: 8px 0;
  }

  .contact-item span {
    font-size: 12px;
  }

  .btn-contact {
    padding: 8px 20px !important;
    font-size: 14px;
  }
}

/* Mega Dropdown Positioning */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown .dropdown-menu {
  left: auto;
  right: auto !important;
  margin-top: 0;
}

@media (max-width: 1199.98px) {
  .mega-dropdown .dropdown-menu {
    width: calc(100vw - 30px);
    left: 15px !important;
    right: 15px !important;
    transform: translateX(0) !important;
  }
}

@media (max-width: 767.98px) {
  .mega-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Left Side Tabs */
.nav-pills .nav-link {
  margin-top: 10px;
  padding: 12px 20px;
  color: #555;
  font-weight: 500;
  border-radius: 0;
  text-align: left;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.nav-pills .nav-link.active {
  background-color: #f8f9fa;
  color: #F57A00 !important;
  border-left: 3px solid #1A1C29;
  font-weight: 600;
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: #f1f3f5;
  color: #333;
}

.nav-link img {
  padding-right: 10px;
}

/* Product Cards */
.product-card {
  padding: 20px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 3px solid #1A1C29;
}

.product-card img {
  padding: 5px;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card h5 {
  color: #1A1C29;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {


  .nav-pills {
    flex-direction: row !important;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
  }

  .nav-pills .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    display: inline-block;
    width: auto;
  }

  .nav-pills .nav-link.active {
    border-left: none;
    border-bottom: 3px solid #1A1C29;
  }
}

@media (max-width: 575.98px) {
  .product-card {
    padding: 15px;
  }

  .tab-content {
    padding: 15px !important;
  }
}

/* Add this to prevent flickering */
.mega-dropdown-menu {
  pointer-events: auto;
}

/* Make sure dropdown stays open when interacting */
.dropdown-menu.show {
  display: block;
}

/* header styles end here  */
/* .................. */
/*................................................. hero styles start............................................. */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
  }
}

.hero h1 span {
  background: linear-gradient(90deg, #FF36A1 0%, #049EF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
    margin: 0 auto 30px;
    text-align: center;
  }
}

.hero-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.standard-button {
  display: inline-block;
  background: white;
  border: 1px solid #666;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* For gradient text */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #004494 0%, #F57A00 100%);
}

.hero-content h1 {

  color: #1A1C29;

  font-weight: 800;
  font-size: 65px;
  line-height: 75px;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.hero-content h1 span {
  float: left;
  color: #F57A00;
  display: contents;
}

.hero-content .lead {
  font-size: 20px;
  color: #565656;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  font-weight: 500;
}

.hero-image {
  position: relative;
  padding-left: 30px;
}

.hero-image img {
  border-radius: 10px;

}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 30px 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-content .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 50px;
  }

  .hero-content .lead {
    font-size: 16px;
  }
}

/* hero styles end */
/* .................. */



.growth-text {
  height: 90px;
  margin: 5px;
  margin-top: 24px;
}

@media (max-width: 575.98px) {
  .growth-text {
    height: 65px;
  }
}



/* ......................................Achievement Section Styles..................................... */
/* Services Section */


.services-section {
  padding: 50px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services-content {
  position: relative;
  z-index: 2;
}
.services-section h2  {
 font-family: Nunito Sans;
font-weight: 800;
font-size: 50px;
line-height: 60px;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;

}
.services-section h2 span {
  color: #004494;
  font-family: Nunito Sans;
font-weight: 800;
font-size: 50px;
line-height: 60px;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;

}
.services-section p{
font-weight: 600;
font-size: 18px;
text-align: center;
}



.services-section h3 span {
  background: linear-gradient(90deg, #FF36A1 0%, #049EF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
}
.service-card-one {

  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: white;

  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.service-card-one:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-one img {
 
  margin-bottom: 20px;
}
.service-card-one p {
 text-align: left;
  font-size: 16px;
}
.service-card-one h4 {
font-family: Nunito Sans;
font-weight: 800;
font-size: 24px;
line-height: 28px;
letter-spacing: 0px;


}

.service-card {

  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: white;

  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h4 {
font-weight: 800;
font-size: 36px;
line-height: 100%;
letter-spacing: 0px;

}

/* Services Section - Mobile Slider */
.services-slider {
  display: none;
  /* Hidden by default */

  position: relative;
}

.services-slider .swiper {
  padding-bottom: 40px;
}

.services-slider .service-card {
  margin: 0 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.services-slider .swiper-slide-active .service-card {
  opacity: 1;
}

.services-slider .service-card-one {
  margin: 0 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.services-slider .swiper-slide-active .service-card-one {
  opacity: 1;
}


.services-slider .swiper-pagination {
  bottom: 0;
}

.services-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.services-slider .swiper-pagination-bullet-active {
  background: #0C046B;
}

/* Hide regular services grid on mobile */
@media (max-width: 768px) {
  .services-grid {
    display: none;
  }

  .services-slider {
    display: block;
  }
}

/* Show regular services grid on desktop */
@media (min-width: 769px) {
  .services-grid {
    row-gap: 20px;
    display: flex;
  }

  .services-slider {
    display: none;
  }
}

@media (max-width: 768px) {

  .services-slider .service-card {
    margin: 0 10px;

    opacity: 0.5;
    transition: opacity 0.3s;
  }

  .swiper-slide {
    margin: 0px !important;
  }
  .service-card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: white;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  .service-card-one {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: white;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .swiper-slide,
  swiper-slide {
    flex-shrink: 0;
    width: 80%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
  }


}


/* ...........................................cta section...................................................... */
.cta-section h2
{
  font-family: Nunito Sans;
font-weight: 800;
font-size: 50px;
line-height: 60px;
letter-spacing: 0%;
text-transform: uppercase;

}





/* ......................................................Funding Section Styles ..............................................*/


.funding-header h1 {
  font-size: 60px;
  font-weight: 700;
  color: #004494;
  margin-bottom: 10px;
}

.funding-header h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.funding-cards-grid-two {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.funding-card {
  
    box-sizing: border-box;

    padding: 35px 30px;
   
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 25px;

    flex: none;
   
    flex-grow: 1;



  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.funding-card:hover {
  transform: translateY(-5px);
}


.funding-card-two {
  
    box-sizing: border-box;

    padding: 35px 30px;
   
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 25px;

    flex: none;
   
    flex-grow: 1;



 
}

.funding-card-two:hover {
  transform: translateY(-5px);
}


.funding-amount {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 15px 0;
  line-height: 1.3;
}

.funding-amount span {
  font-family: Nunito Sans;
font-weight: 800;
font-size: 36px;
line-height: 100%;
letter-spacing: 0px;

}

.funding-title {
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

  
}

.funding-cta {
  margin-top: 15px;
}

.funding-cta-mobile {
  display: none;
}
.funding-cta-mobile-two {
  display: none;
}
.avail-now {
     display: inline-block;
    background: linear-gradient(90deg, #0255B6 0%, #004494 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 30px;
}

.avail-now:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(245, 122, 0, 0.3);
}
.avail-now-two {
     display: inline-block;
    background: white;
    color: #0053BF;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #0053BF;
   
}

.avail-now-two:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(245, 122, 0, 0.3);
}

.show-more-container {
  margin-top: 30px;
  display: none;
}

.show-more-btn {
  background: #004494;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: #F57A00;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .funding-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
   .funding-cards-grid-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .avail-now {
    
    position: relative;
  
}
  .mobile-hidden {
    display: none;
  }
  
  .show-more-container {
            align-content: center;
        display: block;
        text-align: center;
  }
  
  .funding-cta {
    display: none;
  }
  
  .funding-cta-mobile {
    display: block;
    position: absolute;
   
    right: 10px;
  }
   .funding-cta-mobile-two {
    display: block;
    margin-top: 10px;
  
  }
  
  .funding-card {
    text-align: left;
    padding: 15px;
    padding-top: 40px;
  }
   .funding-card-two {
    text-align: left;
    padding: 15px;
  
  }
  
  .funding-amount {
    font-family: Nunito Sans;
font-weight: 800;
font-size: 14px;
line-height: 100%;
letter-spacing: 0px;

  }
  
  .funding-title {
    justify-content: flex-start;
    min-height: auto;
  }
}

/* When show-more is active */
.show-more-active .mobile-hidden {
  display: block;
}

.show-more-active .show-more-btn {
  display: none;
}
 /* For the first grid */
    .funding-cards-container .mobile-hidden {
        display: none;
    }
    
    .funding-cards-container.show-more-active .mobile-hidden {
        display: block;
    }

    /* For the second grid */
    .funding-cards-container-two .mobile-hidden {
        display: none;
    }
    
    .funding-cards-container-two.show-more-active .mobile-hidden {
        display: block;
    }

    @media (min-width: 768px) {
        /* Show all cards on desktop */
        .funding-cards-container .mobile-hidden,
        .funding-cards-container-two .mobile-hidden {
            display: block;
        }
        
        /* Hide "See More" button on desktop */
        .show-more-container {
            display: none;
        }
    }



@media (max-width: 992px) {
  .compliance-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px !important;
  }
  
  .compliance-card {
    padding: 30px 20px !important;
  }
}

@media (max-width: 576px) {
  .compliance-cards {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
  }
  
  .compliance-section {
    padding: 60px 0 !important;
  }
  
  .section-header {
    margin-bottom: 30px !important;
  }
  
  .compliance-cta {
    padding: 10px 25px !important;
  }
}



  @media (max-width: 991px) {
        .tech-solutions-section {
            padding: 60px 0;
        }
        
        .tech-content {
            padding-right: 0 !important;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .tech-services {
            grid-template-columns: 1fr !important;
            gap: 15px !important;
        }
        
        .tech-service-card {
            padding: 25px !important;
        }
    }



      @media (max-width: 991px) {
        .about-section {
            padding: 60px 0;
        }
        
        .about-content {
            padding-right: 0 !important;
            margin-bottom: 40px;
        }
        
        .about-stats {
            flex-direction: column;
            gap: 20px !important;
        }
        
        .about-image {
            margin-top: 30px;
        }
    }

        @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 30px !important;
        }
        
        .footer-column {
            min-width: 100% !important;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 15px !important;
            text-align: center;
        }
    }

    .footer-heading {
    position: relative;
    display: inline-block; /* Makes the border only as wide as the content */
    padding-bottom: 10px; /* Space between text and line */
    margin-bottom: 20px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px; 
    height: 3px;
    background-color: #F57A00; 
    border-radius: 50px;
}
