@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap");

:root {
  --primary-blue: #3c81bf;
  --secondary-blue: #0b61af;
  --dark-blue: #003366;
  --light-blue: #b3cee6;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #ffffff;
  --nav-link-color: #adb5bd;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;

}
body {

  font-family: "Noto Sans Arabic", sans-serif;
  box-sizing: border-box;
  background-color: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 100px; /* نفس ارتفاع الـ navbar */
}
/*reset some default styles */
a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}
/* color fonts*/
.text-dark {
  color: var(--text-dark) !important;
}
/* Custom Navbar */
.navbar {
  padding: 16px 80px 20px 80px;
  background: var(--bg-light);
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--neutrals-grays-neutral-200, #f8f9fa);
}
.navbar .navbar-toggler{
  border: 0 !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .icon-close{
  display: none;
}
.navbar-toggler.open .icon-menu { display: none; }
.navbar-toggler.open .icon-close { display: inline-block; }
/* .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
} */
.flag {
  width: 20px;
  height: 20px;
  background-image: url("./assets/images/egypt.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  
}
.nav-link {
  color: var(--nav-link-color) !important;
  font-weight: 600;
  margin: 0 15px;
  position: relative;
  white-space: noWrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);

  width: 0px;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition-smooth);
}
.nav-link.active {
  color: var(--primary-blue) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 8px;
}

.btn-download {
  background: var(--secondary-blue);
  color: white !important;
  border-radius: 12px;
  padding: 8px 24px;
  font-weight: 600;
  border: none;
  transition: var(--transition-smooth);
  white-space: noWrap;
}

.btn-download:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 95, 188, 0.3);
}

.lang-switch {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);

}
@media screen and (max-width:500px) {
  .navbar{
    padding: 16px 40px 20px 40px ;
  }

  
}

@media (max-width: 1199px) { /* same as navbar-expand-xl */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0; /* use left:0 if LTR */
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
.navbar-brand {
  position: relative;
  z-index: 1200;
}
  .navbar-collapse.show {
    transform: translateY(0);
  }

  /* optional: center content */
  .navbar-nav {
    text-align: center;
  }

  /* close button spacing */
  .navbar-toggler {
    z-index: 1100;
  }
  .navbar-collapse::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}
 .navbar-nav {
    margin-top: 3rem;
  }

  .nav-link {
    display: block;
    font-size: 1.5rem;
    padding: 1rem 0;
    color: #333;
    text-align: center;
    transition: 0.3s;
  }
    .nav-link::after {
     bottom: 13px !important;
  }

  .nav-link:hover {
    color: var(--primary-blue);
  }

  .nav-link.active {
    color: var(--primary-blue);
    font-weight: bold;
  }
  
}

/* Hero Section */
.hero-section {
  padding: 48px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #e7eff7 0%,
    #eaf1f8 14.29%,
    #eef4f9 28.57%,
    #f1f6fa 42.86%,
    #f5f8fc 57.14%,
    #f8fafd 71.43%,
    #fcfdfe 85.71%,
    #fff 100%
  );
}

.hero-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--dark-blue);
  border: 1px solid var(--light-blue);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.hero-title {
  font-size: 65px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons .btn {
  padding: 12px 35px;
  border-radius: 14px;
  font-weight: 600;
  margin-left: 15px;
  transition: var(--transition-smooth);
}

.btn-primary-custom {
  background: var(--primary-blue);
  color: white;
  border: none;
}

.btn-primary-custom:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  color: white;
}

.btn-outline-custom {
  background: white;
  color: var(--dark-blue);
  border: 1.5px solid #e0e0e0;
}

.btn-outline-custom:hover {
  background: #f8f9fa;
  border-color: var(--primary-blue);
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img {
  max-width: 100%;
  display: block;
  margin-right: auto;

  animation: float 6s ease-in-out infinite;
}

:dir(ltr) .hero-image-wrapper img {

  margin-right: 0;
  margin-left:auto;



}

@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-image-wrapper img {
    max-width: 80%;
    margin: 30px auto 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Stats Section */
.stats-section {
  margin-top: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
  background-color: var(--bg-light);
}

.stats-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.stat-icon.blue {
  background: #e7eff7;
  color: #005fbc;
}
.stat-icon.green {
  background: #d4edda;
  color: #28a745;
}
.stat-icon.orange {
  background: #fff5e6;
  color: #fd7e14;
}
.stat-icon.purple {
  background: #e7eff7;
  color: #6f42c1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    text-align: center;
    padding: 40px;
  }
  .hero-description {
    margin: 0 auto 30px;
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .hero-buttons .btn {
    margin: 0;
    padding: 12px 20px;
  }
  .stats-section {
    margin-top: 50px;
  }
}

.main-title {
  font-size: 28px;
  font-weight: 900;
}

.sub-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
/* Why Medical Offers */
.why-medical-offers {
  background: linear-gradient(
    0deg,
    rgba(230, 248, 255, 0.2) -11.29%,
    rgba(11, 97, 175, 0.2) 175.22%
  );
  padding: 54px 277px 53px 277px;
}
@media screen and (max-width:1000px) {
.why-medical-offers { padding: 54px; } 
  
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-content h5 {
  color: #333;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-content p {
  color: #777;
  font-size: 0.85rem;
  margin: 0;
}

.icon-box {
  background-color: #f0f7ff;
  color: #1a4b84;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px; /* RTL spacing */
}

/* Challenges Card (Right) */
.challenges-card {
  background: #fff;
  border-radius: 25px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.challenge-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.challenge-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
}

.info-icon {
  color: #ff6b6b;
  font-size: 2rem;
  margin-left: 15px;
}

.challenge-list {
  list-style: none;
  padding: 0;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 15px;
  color: #666;
  font-size: 0.95rem;
}

.close-icon {
  color: #ff6b6b;
  font-weight: bold;
  font-size: 1.2rem;
}
/* how-it-works */
.how-it-works {
  margin-top: 48px;
  margin-bottom: 48px;
  background-color: var(--bg-light);
  padding: 0px 80px;
}
@media screen and (max-width:500px) {
.how-it-works{
  padding: 0px 40px;
}  
}
.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
  height: 100%;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
}

/* The overlapping number badge */
.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--primary-blue);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  transform: rotate(15deg); /* Matches the tilt in your image */
  box-shadow: 0 4px 10px rgba(43, 120, 197, 0.3);
  z-index: 2;
}

.step-icon-wrapper {
  background-color: var(--primary-blue);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.step-title {
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.step-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Medical Specialties */

.medical-specialties {
  background: linear-gradient(6deg, #e6f8ff 9.91%, #0b61af 312.01%);
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 48px 80px;
}

@media screen and (max-width:500px) {

  .medical-specialties { 
    padding: 48px;
  }
}
.specialty-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Swiper Container Padding for arrows */
.swiper {
  padding: 20px 10px 60px 10px !important;
}

.specialty-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #BABABA1A;
  transition: all 0.3s ease;
  border-radius: 16px;
height: 100%;

  justify-content: center;
  cursor: pointer;

}

.specialty-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}
.specialty-icon-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
   flex: 1;
   width: 45px;
   height: 45px;
   margin: auto;
   margin-bottom: 10px;

}
.specialty-icon {
   width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
        /* أهم حاجة */

  margin: auto;
    margin-bottom: 10px;
  object-fit: contain;
  display: block;
}

.specialty-name {
  font-weight: 700;
  color: #333;
  font-size: 0.95rem;
  margin: 0;

}

/* Custom Navigation & Pagination */
.controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}


.nav-btn:hover {
    background-color: white !important;
  border: 1px solid var(--primary-blue) !important;
  color: #fff;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px !important;
  position: relative;
  width: auto !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-blue) !important;
  width: 25px !important;
  border-radius: 5px !important;
}

.controls-container {
  gap: 20px;
}
@media screen and (max-width:500px) {
  .controls-container {
     gap: 0px;
}
}
/* The Circular Buttons */
.nav-btn {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b78c5;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.nav-btn:hover {
  background-color: white;
  color: #fff;
  border-color: #2b78c5;
}
  
/* LTR (default) */
:dir(ltr) .next-btn img {
    transform: scaleX(-1); /* make it right arrow */
}

/* RTL */
:dir(rtl) .prev-btn img {
    transform: scaleX(1); /* make it right arrow */
}


:dir(rtl) .next-btn img {
    transform: scaleX(1); /* make it right arrow */
}

/* RTL */
:dir(ltr) .prev-btn img {
    transform: scaleX(-1); /* make it right arrow */
}
/* Customizing the Swiper Pagination Dots */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width:500px) {
  .swiper-pagination {

  gap: 2px;
}
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #cbdcf0;
  opacity: 1;
  transition: all 0.3s ease;
}

/* The "Capsule" shape for the active dot */
.swiper-pagination-bullet-active {
  background-color: #2b78c5 !important;
  width: 24px !important; /* Makes it look like a pill */
  border-radius: 10px !important;
}
.packages {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 48px 80px;
}
@media screen and (max-width:500px) {
  .packages{
    padding: 48px;
  }
}
/* Pricing Card Wrapper */
.pricing-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  height: 100%;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transform: scale(0.95);
}

.pricing-card:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* The ID Card Header */
.id-header {
  border-radius: 20px;
  padding: 20px;
  color: white;
  position: relative;
  min-height: 180px;
  margin-bottom: 25px;
}

.id-header.pink {
  background: linear-gradient(135deg, #e46fa4, #cc497d);
}
.id-header.blue {
  background: linear-gradient(135deg, #1e70d1, #0d47a1);
}
.id-header.gold {
  background: linear-gradient(135deg, #a38445, #7a5f25);
}

.id-header .pkg-label {
  font-size: 1.5rem;
  font-weight: bold;
}
.id-header .qr-code {
  width: 60px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  border: 2px solid #fff;
  padding: 2px;
  border-radius: 5px;
}
.id-header .user-info {
  text-align: start;
  font-size: 18px;
}

/* Content Styles */
.pkg-name {
  font-weight: 800;
  color: #333;
}
.discount-badge {
  color: #1a73e8;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  min-height: 120px;
}
.benefits-list li {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.benefits-list li i {
  color: #ccc;
  margin-left: 10px;
  font-size: 0.7rem;
}

.price-tag {
  font-weight: 800;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
}
.price-tag small {
  font-size: 0.9rem;
  font-weight: normal;
}

/* Buttons */
.btn-details {
  background-color: #00c3ff;
  color: white;
  border-radius: 12px;
  font-weight: bold;
  width: 100%;
  border: none;
  padding: 12px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-all {
  background-color: #1660a5;
  color: white;
  border-radius: 12px;
  font-weight: bold;
  width: 100%;
  border: none;
  padding: 12px;
   text-align: center;
  cursor: pointer;
    display: inline-block;
}

.reviews {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 0 80px;
}
@media screen and (max-width:500px) {
  .reviews {

  padding: 0 40px;
}
}

.reviews-card {
  background: #f8f9fa;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
}

.review-text {
  color: var(--text-muted);
  max-width: 400px;
  font-weight: 500;
  line-height: 22.4px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #0b61af;
  color: white;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
}
.reviewer-location {
  color: var(--text-muted);
  font-size: 14px;
}
/* Frequently Questions */
.fqs {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 0 80px;
}
@media screen  and (max-width:500px){
  .fqs {

  padding: 0 20px;
}
}
.fqs .accordion-item {
  border-radius: 16px;
  border: 1px solid var(--neutrals-grays-neutral-200, #f8f9fa);
  margin-bottom: 16px;
}

.fqs .accordion-header {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  color: var(--text-dark);
}

.fqs .accordion-body {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px; /* 160% */
  color: var(--text-muted) !important;
}

.fqs .accordion-button::after {
  background-image: url(./assets/icons/acordion-arrow.svg);
}

/* app section */

.app-store {
  padding: 48px 371px;
  background: linear-gradient(90deg, #5c95c9 -0.01%, #0b61af 100%);
}

.app-store .first-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 56px;
}
.app-store .secound-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--neutrals-status-colors-status-warning-500, #ffc107);
}

.app-store .description {
  font-size: 18px;
  font-weight: 400;
  color: var(--bg-light);
  line-height: 28.8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.app-store .btn-download {
  padding: 12px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.app-store .btn-download.apple-store {
  background: #05294a;
}

.app-store .btn-download.google-play {
  background: #0b61af;
}
.app-store .get-it {
  font-size: 12px;
}
@media screen and (max-width:1088px) {
  .app-store{
    padding: 48px ;
  }
}
/*footer */ 
.footer {
  background: #0b61af;
  color: white;

  padding: 24px 80px;

  gap: 24px;
}

@media screen and (max-width:500px) {
  .footer {


  padding:  48px;

}
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 40px;
}

.footer-links li {
  break-inside: avoid;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 140%;
}

.footer-title {
  margin-bottom: 24px;

}

.copyright {
  background-color: var(--bg-light);

  padding: 0 5px;
  height: 48px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.copyright .logo-div {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
 margin-bottom: 9px;
}

.copyright .logo-div .logo {
  width: 100%;
  z-index: 3;
}

.copyright .logo-div .img1 {
  z-index: 2;
}

.copyright .logo-div .img1 img {
  width: 100%;
  animation: rotateRight 15s linear infinite;
  -webkit-animation: rotateRight 15s linear infinite;
}

.copyright .logo-div .img2 {
  position: absolute;
  height: 74px;
  width: 65px;
}

.copyright .logo-div .img2 img {
  width: 100%;
  animation: rotateLeft 15s linear infinite;
  -webkit-animation: rotateLeft 15s linear infinite;
}

.copyright .logo-div .img2 {
  z-index: 1;
}

.copyright .logo-div .logo {
  z-index: 3;
  width: 32px;
  height: 32px;
  aspect-ratio: 32/21;
}

.copyright .logo-div .img1,
.copyright .logo-div .img2 {
  position: absolute;
  height: 55x;
  width: 55px;
}

.copyright .logo-div .img1 svg {
  z-index: 2;
}

.copyright .logo-div .img2 svg {
  z-index: 1;
}

.copyright .logo-div .img1 svg {
  width: 100%;
  animation: rotateRight 15s linear infinite;
  -webkit-animation: rotateRight 15s linear infinite;
}
.copyright .logo-div .img2 svg {
  width: 100%;
  animation: rotateLeft 15s linear infinite;
  -webkit-animation: rotateLeft 15s linear infinite;
}

@keyframes rotateRight {
  form {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes rotateLeft {
  form {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}



/* compare-packages  */
.compare-packages{
background: linear-gradient(180deg, #E7EFF7 0%, #EAF1F8 14.29%, #EEF4F9 28.57%, #F1F6FA 42.86%, #F5F8FC 57.14%, #F8FAFD 71.43%, #FCFDFE 85.71%, #FFFFFF 100%);
padding: 48px 80px 48px 80px;
}

.compare-packages .main-title {
  font-size: 56px;
}

.compare-packages .sub-title{
  color: var(--text-dark);
}
.compare-packages .table-packages .head-title{
color: #0F172B;
font-size: 20px;
}

.compare-packages .table-packages .highlight-cell{
color: #0B61AF;
background-color: #E7EFF7;
}
.spreator{
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  background-color: #155DFC;
  width: 6px;
  border-radius: 33554400px;
}

.back-btn{
  border: 1px solid #B3CEE6;
  color: #0B61AF;
  border-radius: 33554400px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  padding: 8px ;
  margin-bottom: 32px; 
  display: inline-block;
}

.circle-check{

  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 6px;
  background-color: #D4EDDA;
  display: inline-block;
}

.circle-cross{
  background-color: #E9ECEF;
    display: inline-block;
      border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 6px;
}