/*Video Slider*/
.sr-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.sr-slider-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

.sr-slide {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
  top: 0;
  left: 0;
  z-index: 1;
}

.sr-slide.active {
  display: block;
  z-index: 2;
}

.sr-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50px; */
}

.sr-overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.sr-title {
  font-size: 4rem;
  margin-bottom: 10px;
}

.sr-subtitle {
  font-size: 1.5rem;
}

.sr-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.sr-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.sr-dot.active {
  background: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sr-title {
    font-size: 2rem;
  }
  .sr-subtitle {
    font-size: 1.1rem;
  }
  .sr-overlay {
    left: 5%;
  }
}

@media (max-width: 480px) {
  .sr-title {
    font-size: 1.5rem;
  }
  .sr-subtitle {
    font-size: 1rem;
  }
}

/*Logo Image*/
@media (max-width: 500px) and (min-width: 0px) {
  .res-logo {
    max-width: 290px;
  }
}

/*Start Sidebar*/
.fc-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.fc-card {
  position: relative;
  width: 250px;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.fc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 29, 61, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 10px;
}

.fc-card:hover .fc-overlay {
  opacity: 1;
}

.fc-overlay h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 5px;
}

.fc-overlay p {
  color: #00e8be;
  font-size: 17px;
}

.fc-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: right 0.4s ease;
  z-index: 99999;
  padding: 20px;
}

.fc-sidebar.open {
  right: 0;
}

.fc-close {
  color: black;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

.fc-sidebar-content {
  margin-top: 40px;
}

.fc-sidebar-img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.fc-sidebar-content h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.fc-sidebar-content h4 {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.fc-sidebar-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .fc-sidebar {
    width: 100%;
  }

  .fc-card {
    width: 90%;
    height: auto;
  }

  .fc-card img {
    height: auto;
  }

  .fc-overlay h3,
  .fc-overlay p {
    font-size: 14px;
  }

  .fc-sidebar-content h2 {
    font-size: 20px;
  }

  .fc-sidebar-content h4 {
    font-size: 14px;
  }

  .fc-sidebar-content p {
    font-size: 13px;
  }
}


/*Start Unique Table*/
 .sr-wrapper {
      font-family: 'Segoe UI', sans-serif;
      /* background-color: #f0f2f5; */
      padding: 40px 20px;
    }

    .sr-table-container {
      max-width: 1000px;
      margin: auto;
      overflow-x: auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .sr-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 10px;
      overflow: hidden;
    }

    .sr-thead {
      background-color: #5c6bc0;
      color: white;
    }

    .sr-th, .sr-td {
      font-family: Arial;
      color: #000000;
      text-align: left;
      padding: 14px 20px;
      font-size: 16px;
    }

    .sr-tr {
      transition: all 0.3s ease;
    }

    .sr-tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    .sr-tr:hover {
      background: linear-gradient(to right, #131949, #325aae);
      color: #fff;
      transform: scale(1.02);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .sr-tr:hover .sr-td {
      color: #fff;
    }

    @media (max-width: 600px) {
      .sr-th, .sr-td {
        padding: 12px;
        font-size: 14px;
      }
    }
/*End Unique Table*/