:root {
  --primary-color: #2aa7df;
  --primary-light: rgba(42, 167, 223, 0.1);
  --secondary-color: #f8f9fa;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --blue-color: #0f2540;
  --sec-blue: #0eb0ee;
  --whatsapp-color: #25D366;
  --nav-shadow: 0 4px 12px rgba(42, 167, 223, 0.15);
  --sectoin-color: #f9fbfd;
}

body {
  font-family: 'Tajawal', sans-serif;
  color: #333;
  /* direction: rtl; */
  text-align: right;
}

section{
  width: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  border: none;
  font-weight: 600;
  /* box-shadow: 0 4px 15px rgba(42, 167, 223, 0.3); */
  transition: all 0.3s ease;

}

.btn-primary:hover {
  background-color: #1e8fc5;
}

.btn-primary:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover:after {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(3px);
}

.btn-outline-primary {
  font-weight: 600;
  border-width: 1px;
  border-color: var(--primary-color);
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 167, 223, 0.2);
}

.btn-outline-primary:active {
  transform: translateY(3px);
}

.section-divider {
  width: 80px;
  height: 3px;
 background: linear-gradient(to right, #0eb0ee, #0f2540);
  margin: 1rem auto;
}

.primary{
  color: var(--primary-color);
}

/* header */
.header-area {
  background: linear-gradient(135deg, var(--blue-color) 0%, #1a365f 100%);
  max-width: 100%;
}

.top-header {
  background-color: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.anchor {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.anchor span:first-child {
  color: var(--sec-blue);
  margin-left: 5px;
}

.anchor:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.anchor:hover span:first-child {
  color: var(--primary-color) ;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

.squre {
  height: 30px;
  width: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.squre a i {
  color: var(--sec-blue);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.squre:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.squre:hover i {
  color: var(--light-color);
}

.lang-btn {
  padding: 5px 10px;
  /* border-radius: 4px; */
  background-color: rgba(255, 255, 255, 0.1);
}


@media (max-width: 768px) {
  .anchor span:last-child {
    font-size: 0.9rem;
  }
  
  .squre {
    height: 28px;
    width: 28px;
    margin-left: 5px;
  }
}

/* navbar */
.navbar {
  transition: all 0.3s ease;
  font-weight: 700;

  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* padding-top: 5px;
  padding-bottom: 5px; */
}

.navbar-brand img {
  height: auto;
}

.navbar .nav-link {
  position: relative;
  padding: 0.75rem 1rem !important;
  color: var(--dark-color) !important;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;

}

.navbar .nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  right: 1rem;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar .nav-link:hover:before,
.navbar .nav-link.active:before {
  width: calc(100% - 2rem);
}

.navbar .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler[aria-expanded="true"] i{
  color:  var(--primary-color);
}

/* Dropdown تحسينات */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-item:before {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding-right: 2rem;
}

.dropdown-item.active {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding-right: 2rem;
}

.dropdown-toggle::after {
  margin-right: 0.5em;
  vertical-align: 0.15em;
}

@media(max-width: 992px){
  .nav-link:before {
    height: 0;
  }
}

/* تأثيرات الحركة عند التمرير */
[data-aos] {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* hero-section */
.hero-section {
  padding: 120px 0;
  color: #fff;
  height: calc(100vh - 126px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 101%;
  background: linear-gradient(135deg, #f8fafc50 0%, #e9f2fa50 100%);
}

/* تأثيرات الخلفية المتحركة */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(42, 167, 223, 0.1);
  animation: float 6s infinite ease-in-out;
}

.hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  animation-delay: 1s;
}

.hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 10%;
  animation-delay: 2s;
}

.hero-shapes .shape-4 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 55%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(5deg);
  }
}

/* banner content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #0f2540;
}

.hero-title span {
  color: var(--primary-color);
  position: relative;
}

.hero-title span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(42, 167, 223, 0.3);
  z-index: -1;
  border-radius: 5px;
}

.hero-subtitle {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 2rem;
  /* max-width: 90%; */
}

/* img */
.hero-image {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* حتى تبدأ الصورة من أسفل */
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-badge {
  position: absolute;
  top: 200px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.badge-content {
  text-align: center;
}

.badge-content span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.badge-content small {
  font-size: 0.7rem;
  color: #4a5568;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* -------------- */
.hero-buttons .btn-primary {
  padding: 0.55rem 2rem;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 167, 223, 0.3);
}

.hero-buttons .btn-outline-primary {
  padding: 0.55rem 2rem;
}
/* -------------- */

@media (max-width: 992px) {
  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-badge {
    bottom: 30px;
    left: 10px;
    width: 70px;
    height: 70px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto !important;
  }
}

/* تعديلات الشاشات الصغيرة */
@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 30px;
  }
  
  .hero-image img {
    max-height: 350px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  margin-bottom: 1.2rem;
  }
  
  .hero-badge {
    width: 60px;
    height: 60px;
    bottom: 20px;
  }
  
  .badge-content span {
    font-size: 1.2rem;
  }
  
  .badge-content small {
    font-size: 0.6rem;
  }
  
  .hero-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* تعديلات الشاشات الصغيرة جداً */
@media (max-width: 400px) {
  .hero-image img {
    max-height: 280px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
}

/*-------------->>> about section */
/* about section */
.about-section {
  position: relative;
  background-color: #f8f9fa;
}

.about-section .about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 176, 238, 0.1) 0%, rgba(15, 37, 64, 0.1) 100%);
  z-index: 0;
}

.about-section .about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(14, 176, 238, 0.1) 1px, transparent 1px);
  background-size: 15px 15px;
  z-index: 0;
  opacity: 0.5;
}

.about-section .section-title {
  position: relative;
  background: linear-gradient(293deg, #0f2540 14.05%, #0eb0ee 89.3%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.about-section .about-desc {
  border-left: 3px solid #0eb0ee;
}

.about-section .feature-icon {
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(42, 167, 223, 0.1);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* تأثيرات الحركة */
[data-aos] {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
  .about-section .section-title {
      font-size: 2rem;
  }
  
  .lead {
      font-size: 1.25rem !important;
  }
  
}

@media (max-width: 576px) {
  .about-section .section-title {
      font-size: 1.8rem;
  }
  
  .lead {
      font-size: 1.15rem !important;
  }
}
/*-------------->>> end about section */

/* ----------> why */
.why-us-section {
  padding: 100px 0;
  position: relative;
  background-color: var(--blue-color);
}

.why-us-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  opacity: 0.3;
}


.why-us-section .section-title {
  background: linear-gradient(293deg, white 14.05%, #0eb0ee 89.3%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  font-size: 2.5rem;
  /* font-weight: 700; */
  position: relative;
  display: inline-block;
}

.why-us-section .section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* بطاقات المميزات */
.why-us-section .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.why-us-section .feature-card:hover {
  background: rgba(42, 167, 223, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(42, 167, 223, 0.3);
}

.why-us-section .feature-icon {
  color: var(--primary-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.why-us-section .feature-card:hover .feature-icon {
  background: var(--primary-color);
  color: white;
}

/* الإحصائيات */
.stats-wrapper {
  position: relative;
}

.stat-item {
  padding: 10px 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-number .counter {
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  margin-top: 0.5rem;
  position: relative;
}

.stat-label:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

/* تأثيرات الحركة */
[data-aos] {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 992px) {
  .why-us-section {
      padding: 80px 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .background-image {
      background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .why-us-section .stat-number {
      font-size: 2rem;
  }
  
  .why-us-section .feature-icon {
      width: 60px;
      height: 60px;
      line-height: 60px;
  }
}

@media (max-width: 576px) {
  .why-us-section {
      padding: 60px 0;
  }
  
  .why-us-section .section-title {
      font-size: 1.8rem;
  }
  
  .why-us-section .section-subtitle {
      font-size: 1rem;
  }
  
  .stat-number {
      font-size: 1.8rem;
  }
}


/*-------------->>> service section */
.services-section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.section-title {
  background: linear-gradient(293deg, #0f2540 14.05%, #0eb0ee 89.3%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title i {
  color: var(--primary-color);
}

.section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.service-card-wrapper {
  position: relative;
  height: 100%;
  perspective: 1000px;
  padding-top: 15px;
  padding-bottom: 40px
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  z-index: 1;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--blue-color) 0%, var(--primary-color) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.service-card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(42, 167, 223, 0.08);
  line-height: 1;
  transition: all 0.5s ease;
}

.service-card-icon {
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.service-card h3 {
  color: var(--blue-color);
  font-weight: 7600;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-card-content {
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.service-card-content p {
  color: #666;
  margin-bottom: 15px;
  transition: all 0.5s ease;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-right: 25px;
  margin-bottom: 10px;
  color: #666;
  transition: all 0.5s ease;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 pro";
  font-weight: 400;
  position: absolute;
  right: 0;
  color: var(--primary-color);
  transition: all 0.5s ease;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  /* position: absolute;
  bottom: 10px; */
}

.service-card-link:hover {
  color: var(--sec-blue);

}

.service-card-link i {
  transition: all 0.3s ease;
}

/* تأثيرات الـ Hover */
.service-card:hover {
  transform: translateY(-10px) ;
  box-shadow: 0 15px 30px rgba(42, 167, 223, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card-number {
  color: rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-card-icon,
.service-card:hover h3,
.service-card:hover {
  color: white;
}

.service-card:hover .service-card-content p,
.service-card:hover .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li::before {
  color: white;
}

.service-card:hover .service-card-link i {
  transform: translateX(-5px);
}


/* Pagination */
.swiper-pagination-bullet {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #ccc;
    border-radius: 50%;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color); 
    transform: scale(1.3); 
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: #2aa6dfad ;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(42, 167, 223, 0.9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

@media (max-width: 992px) {
  .service-card {
    padding: 30px 20px;
  }
  
  .service-card-number {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    max-width: 350px;
    margin: 0 auto;
  }
}





/*-------------->>>>> client */
.clients-showcase {
  position: relative;
  overflow: hidden;
}

.clients-showcase .section-title {
  color: var(--blue-color);
  /* margin-bottom: 1rem; */
  position: relative;
}


.clients-showcase .section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* تصميم عرض الشاشة داخل اللابتوب */
.laptop-showcase {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.laptop-frame {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.screen-container {
  position: absolute;
  top: 1%;
  left: 10.5%;
  width: 79%;
  aspect-ratio: 16 / 10; 
  overflow: hidden;
  z-index: 0;
}

.screen-content {
  width: 100%;
  transform: translateY(0%);
  transition: object-position 0.3s linear !important;
  pointer-events: none;
  height: 100%;
  object-fit: cover;
}


/* كارت العميل */
.client-card {
  /* background: white; */
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -5px;
  position: relative;
  z-index: 2;
}

.client-footer {
  padding: 20px;
  text-align: center;
}

.client-footer h3 {
  color: #0f2540;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.client-footer p {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.client-card .btn-outline-primary {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}


/* تأثيرات الحركة */
.laptop-showcase {
  transition: transform 0.3s ease;
}

.laptop-showcase:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .client-footer {
      padding: 15px;
  }
  
  .client-footer h3 {
      font-size: 1.1rem;
  }
  
  .client-footer p {
      font-size: 0.85rem;
  }
}

/* الفوتر المطور */
.footer {
  font-family: 'Cairo', sans-serif;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
  background: url('../IMG/project_bg.jpg') no-repeat center center;
  background-size:cover;
  padding: 70px 0 0;
  color: #fff;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42,167,223,0.15) 0%, rgba(42,167,223,0) 70%);
}

.footer h5 {
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: var(--sec-blue);
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  right: 0;
}

.footer .nav-link {
  /* padding: 0.25rem 0; */
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer .nav-link:hover {
  color: var(--primary-color);
}

.footer .social-links .btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer .social-links .btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.list-unstyled span{
  color: rgba(255, 255, 255, 0.8);
}

.list-unstyled a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  text-decoration: none;
}

.list-unstyled a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.copyright{
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
}