.unlock-hero {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/collegem.jpg');
}

.unlock-box {
  max-width: 89%;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
}

.unlock-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
}

.unlock-subtitle {
  font-size: 1.1rem;
  margin: 15px 0 25px;
  color: #d2d2d2;
}

.price {
  color: #2b9bff;
  font-weight: 700;
}

.chooseTxt{
    color: #01b075;
}

.platform-options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.radio-option {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
  border: 2px solid transparent;
}

.radio-option input {
  display: none;
}

.radio-option:hover {
  background: #eef6ff;
}

/* Updated styles for selected state */
.radio-option input:checked + span {
  color: white;
  font-weight: 700;
}

.radio-option:has(input:checked) {
  background: #007bff; /* Blue background */
  border-color: #0056b3;
}

.unlock-input {
  height: 48px;
  font-size: 1rem;
  border-radius: 10px;
}

.unlock-btn {
  background: #007bff;
  color: #fff;
  padding: 12px 26px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  width: 60%;
  transition: 0.3s;
}

.unlock-btn:hover {
  background: #0056d2;
  color: white !important;
}

.delivery-note {
  font-size: 0.95rem;
  color: #bababa;
}


.unlock-info-section {
    padding: 70px 0;
}

.unlock-container {
    display: flex;
    gap: 40px;
    background-color: #f4f4f4;
    padding: 40px;
}

.unlock-left {
    flex: 1;
    height: 520px;
    overflow-y: auto;
    padding-right: 20px;
}

.unlock-left h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.unlock-left h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
}

.unlock-left p,
.unlock-left ul {
    font-size: 17px;
    line-height: 1.75;
}

.unlock-left ul {
    padding-left: 20px;
}

.unlock-right {
    flex: 1;
}

.unlock-right h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* SLIDER */
.slider-wrapper {
    height: 520px;
    overflow: hidden;
    position: relative;
}

.slider-list {
    position: absolute;
    width: 100%;
    transition: transform 0.7s ease-in-out;
}

.slider-item {
    background: #fff;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .unlock-container {
        flex-direction: column;
    }
    .unlock-left {
        height: auto;
        max-height: 400px;
    }
    .slider-wrapper {
        height: 400px;
    }
}

.grid-testimonials {
    padding: 10px 20px;
    background: #fff;
    margin-bottom: 100px !important;
}

.grid-testimonials .t-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.grid-box {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 30px;
}

.g-item {
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.g-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.g-item span {
    font-weight: 700;
    font-size: 15px;
    color: #222;
}

.g-item .stars {
    position: absolute;
    bottom: 15px;
    right: 18px;
    font-size: 18px;
    color: #f5b400;
    letter-spacing: 1px;
}


.docs-slider-section {
    padding: 50px 0;
}

.slider-heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

.slider-text{
    margin-bottom: 40px;
}

.docs-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.docs-slider::-webkit-scrollbar {
    height: 6px;
}

.docs-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.doc-card {
    min-width: 170px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.08);
    padding: 12px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doc-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.doc-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    height: 40px;
    overflow: hidden;
}

.doc-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f3f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #444;
    text-decoration: none;
    transition: 0.25s;
}

.icon-btn:hover {
    background: #0d6efd;
    color: #fff;
}
