@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: #000;
  color: #fff;
  height: auto;
  overflow-x: hidden;
}

header {
  max-width: 1280px;
  margin: auto;
}

nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 940px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 99;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.03),
    0 4px 10px rgba(255, 107, 107, 0.06);
  transition: all 0.3s ease;
}
.logo{
  padding-top: 6px;
}

.logo img {
  height: 60px;
  width: fit-content;
  cursor: pointer;
}
.links {
  display: flex;
  align-items: center;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-size: medium;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-size: medium;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: left 0.4s ease;
  z-index: -1;
  border-radius: 6px;
}

.links a:hover {
  color: rgb(224, 224, 224);
  transform: translateY(-2px);
}

.links a:hover::before {
  left: 0;
}

.sign-in {
  padding: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu {
  display: none;
}

#menu-toggle {
  display: none;
}

.mobile-links {
  display: none;
}

.sign-in button {
  cursor: pointer;
  padding: 8px 20px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 12px 18px 0 rgba(255, 255, 255, 0.03),
    0 6px 18px 0 rgba(255, 255, 255, 0.02);
}

.sign-in button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.sign-in button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.sign-in button:hover::before {
  left: 100%;
}

.sign-in button:active {
  transform: translateY(0);
}

/* Background Effect */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.sheper {
  position: absolute;
  border-radius: 0;
  filter: blur(25px) brightness(0.6);
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: -1;
}

.sheper-1 {
  width: 200vw;
  height: 8vw;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 15%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0.4) 85%,
    rgba(255, 255, 255, 0) 100%
  );
  top: 15%;
  left: 40%;
  transform: rotate(-20deg) scale(1.2);
  animation: none;
  z-index: 5;
}
.sheper-2 {
  width: 200vw;
  height: 8vw;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 15%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0.4) 85%,
    rgba(255, 255, 255, 0) 100%
  );
  top: -15%;
  left: 30%;
  transform: rotate(-20deg) scale(1.2);
  animation: none;
  z-index: 5;
}

/* Hero section */
.container {
  position: relative;
  max-width: 1280px;
  margin: auto;
  color: white;
  z-index: 50;
  margin-top: 140px;
  padding: 20px;
  text-align: center;
}

.strike-live {
  display: inline-block;
  padding: 8px 35px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: small;
  font-weight: 600;
  z-index: 50;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  overflow: hidden;
}

/* Rotate Border */
.strike-live::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    #afafaf,
    #f4f1ed72,
    #e3dfd63b,
    #d7d2cb3b,
    #949494
  );
  border-radius: 50px;
  z-index: -1;
  animation: rotateGradient 3s linear infinite;
}

.strike-live::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 48px;
  z-index: -1;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hero Section */
.hero-section {
  max-width: 1280px;
  margin: auto;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  text-align: start;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, #a8b2d1 10%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero-container button {
  display: inline;
}

.hero-content p {
  font-size: large;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  max-width: 90%;
  margin-bottom: 24px;
  text-align: start;
  font-weight: 400;
}
.hero-container .para-change {
  color: rgba(255, 223, 163, 0.715);
}
.heros-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.heros-logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.heros-logo:hover img {
  transform: scale(1.05);
  transition: all ease-in 0.2s;
}
.st-btn {
  display: flex;
  align-items: center;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.01);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.st-btn span {
  margin-left: 10px;
}

.st-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.st-btn:hover span {
  transform: translateX(15px);
}

/* Live Seciton */
.live {
  max-width: 1280px;
  margin: auto;
  color: white;
  z-index: 50;
  height: auto;
}
.live h1 {
  font-size: 4rem;
  font-weight: 300;
  padding: 0 20px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #ffffff;
  position: relative;
}

.live p {
  padding: 0 20px;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin-bottom: 60px;
}
.live-para {
  color: #ffffff;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.defence-img {
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.defence-img img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

/* Overlay Content */
.defence-img a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.defence-img a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border-radius: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.defence-img .img-details {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  color: white;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  width: 80%;
  z-index: 2;
  pointer-events: none;
}

.defence-img .img-details h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.defence-img .img-details p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 12px;
}

.defence-img .img-details .view-btn {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Hover Effects */
.defence-img a:hover::after {
  opacity: 1;
}

.defence-img a:hover .img-details {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.defence-img a:hover img {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.defence-img .img-details .view-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
/* Course section */
.course {
  max-width: 1280px;
  margin: auto;
  color: white;
  z-index: 50;
  height: auto;
}
.course h2 {
  font-size: 3rem;
  font-weight: 400;
  padding: 20px;
}

.course p {
  padding: 0 20px;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin-bottom: 60px;
}
.card-container {
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 300px;
}

.card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.03);
}

.course-details h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 16px;
}

.course-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-buy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: start;
}

.sub-details{
  padding: 0 20px 20px 20px;
  font-size: small;
  font-weight: 300;
  color: #fff;
  margin: 0;
  text-align: start;
  list-style: inside;
  line-height: 1.4;
}
.course-buy-btn {
  background: rgba(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.course-buy-btn a {
  text-decoration: none;
}

/* Review Seciton */

.review {
  max-width: 1280px;
  margin: auto;
  padding: 100px 40px;
}

.review h1 {
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.review-para {
  text-align: center;
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.questions {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
  
/* Different card sizes for desktop */
.review-grid {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.review-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.review-grid:hover {
  background: rgba(30, 30, 30, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-grid h3 {
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  width: fit-content;
  color: white;
  position: relative;
  z-index: 2;
}

.review-grid p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.review-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-grid a:hover {
  color: white;
  transform: translateX(4px);
}

/* Different sizes */
.review-grid:nth-child(1) {
  grid-column: span 6;
  grid-row: span 1;
}

.review-grid:nth-child(2) {
  grid-column: span 6;
  grid-row: span 1;
}

.review-grid:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
}

.review-grid:nth-child(4) {
  grid-column: span 4;
  grid-row: span 1;
}

.review-grid:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}

.review-grid:nth-child(6) {
  grid-column: span 6;
  grid-row: span 1;
}

.review-grid.blue {
  grid-column: span 8;
}

.review-grid.purple {
  grid-column: span 4;
}

.review-grid.orange {
  grid-column: span 5;
}

.review-grid.yellow {
  grid-column: span 7;
}

.review-grid.green {
  grid-column: span 6;
}

.review-grid.pink {
  grid-column: span 6;
}

/* Color Labels */
.blue h3 {
  background: #007bff25;
  color: #4dabff;
  border: 1px solid #007bff40;
}
.purple h3 {
  background: #9b59b625;
  color: #c77dff;
  border: 1px solid #9b59b640;
}
.orange h3 {
  background: #ff8c0025;
  color: #ffae42;
  border: 1px solid #ff8c0040;
}
.yellow h3 {
  background: #ffd70025;
  color: #ffeb70;
  border: 1px solid #ffd70040;
}
.green h3 {
  background: #00ff6a25;
  color: #7affc5;
  border: 1px solid #00ff6a40;
}
.pink h3 {
  background: #ff007f25;
  color: #ff70b9;
  border: 1px solid #ff007f40;
}

/* Footer Section */
footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 40px 10px;
  margin-top: 120px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Logo Section */
.footer-grid > div:first-child img {
  height: 40px;
  width: 100px;
  display: block;
  object-fit: cover;
  cursor: pointer;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-grid > div:first-child p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Links Sections */
.footer-grid h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-grid > div:not(:first-child) div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  width: fit-content;
}

.footer-grid a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.footer-grid a:hover {
  color: #fff;
  transform: translateX(8px);
}

.footer-grid a:hover::before {
  width: 100%;
}

/* Stay Connected Section */
.footer-grid > div:last-child p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.copyright {
  text-align: center;
  padding: 3rem 0 0 0;
  font-weight: 100;
  font-size: small;
  color: rgb(218, 218, 218);
}
/* Footer Bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    padding: 0 16px;
    max-width: 95%;
    margin: auto;
  }
  .hero-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
    text-align: center;
    padding: 0px;
  }

  /* reviews section */
  .questions {
    grid-template-columns: repeat(8, 1fr);
  }

  .review-grid:nth-child(1),
  .review-grid:nth-child(2),
  .review-grid:nth-child(6) {
    grid-column: span 8;
  }

  .review-grid:nth-child(3),
  .review-grid:nth-child(4),
  .review-grid:nth-child(5) {
    grid-column: span 4;
  }

  /* footer section */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    max-width: 95%;
  }

  .links a {
    font-size: 0.9rem;
  }

  .heros-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .heros-logo::before {
    width: 200px;
    height: 60px;
    filter: blur(20px);
  }

  /* strike */

  .strike-live {
    padding: 5px 15px;
    font-size: small;
  }

  /* Live */

  .live h1 {
    font-size: 3rem;
  }

  .course-title {
    font-size: 3rem;
  }
  /* Review Section */

  .review {
    padding: 60px 24px;
  }

  .review h1 {
    font-size: 2.5rem;
  }

  .review-para {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .questions {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-column: span 1 !important;
    padding: 24px;
  }

  .review-grid:hover {
    transform: translateY(-4px);
  }

  /* footer section */

  footer {
    padding: 60px 24px 30px;
    margin-top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: span 1;
  }

  .footer-grid > div:first-child p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .menu {
    display: block;
  }

  .links {
    display: none;
  }

  /* Mobile menu styles */
  .mobile-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-links a {
    font-size: 1.2rem;
    padding: 12px 24px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
    color: #fff;
    text-decoration: none;
  }

  /* Menu toggle */
  #menu-toggle:checked ~ .mobile-links {
    right: 0;
  }

  #menu-toggle:checked ~ .mobile-links a {
    opacity: 1;
    transform: translateX(0);
  }

  /*  animation for links */
  #menu-toggle:checked ~ .mobile-links a:nth-child(1) {
    transition-delay: 0.1s;
  }
  #menu-toggle:checked ~ .mobile-links a:nth-child(2) {
    transition-delay: 0.2s;
  }
  #menu-toggle:checked ~ .mobile-links a:nth-child(3) {
    transition-delay: 0.3s;
  }
  #menu-toggle:checked ~ .mobile-links a:nth-child(4) {
    transition-delay: 0.4s;
  }

  /* Close button */
  .menu .fa-bars::before {
    content: "☰";
    font-size: large;
    cursor: pointer;
  }

  #menu-toggle:checked + nav .sign-in .menu .fa-bars::before {
    content: "✕";
    cursor: pointer;
    font-size: large;
    position: absolute;
    left: 0;
    top: 0;
  }

  /* Overlay */
  .mobile-links::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  #menu-toggle:checked ~ .mobile-links::before {
    opacity: 1;
  }

  /* Strike */

  .strike-live {
    padding: 5px 10px;
    font-size: x-small;
  }

  /* Review Section */

  .review {
    padding: 40px 16px;
  }

  .review h1 {
    font-size: 2rem;
  }

  .review-para {
    font-size: 1rem;
  }

  .review-grid {
    padding: 20px;
  }

  .review-grid h3 {
    font-size: 1.2rem;
  }

  .review-grid p {
    font-size: 0.95rem;
  }

  /* footer section */

  footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-grid h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-grid a {
    font-size: 0.95rem;
  }
}
