body {
  margin: 0;
}
.certificate-page {
  padding-block: 90px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* ============================= */

.verify-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  width: 90%;
  max-width: 1200px;
}

.hero-left {
  flex: 1;
}

.hero-right {
  position: relative;
  flex: 1;
  text-align: right;
  background-image: url(../Uploads/certificate-protection-bg.png);
  background-size: cover;
  background-position: center center;
  max-width: 620px;
  width: 100%;
  height: 400px;
  animation: float 5s ease infinite;
}

.tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-left h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: var(--secondary);
}

.hero-left p {
  color: #d9d9d9;
  font-size: 17px;
  line-height: 1.9;
  max-width: 600px;
}

/*==============================
      VERIFY BOX
===============================*/
.verify-area {
  width: 100%;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 60px;
}
.verify-box {
  background: var(--primary);
  width: 90%;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(15px);
  margin-bottom: 45px;
}

.verify-box h2 {
  color: var(--secondary-dark);
  font-size: 30px;
  margin-bottom: 10px;
}

.verify-box p {
  color: #c8d0d4;
  margin-bottom: 25px;
}

.verify-box form {
  display: flex;
  gap: 20px;
}

.verify-box input {
  flex: 1;
  height: 58px;
  border: none;
  outline: none;
  border-radius: 12px;
  padding: 0 20px;
  background: #fff;
  font-size: 16px;
}

.verify-box input:focus {
  box-shadow: 0 0 0 3px rgba(255, 169, 0, 0.25);
}

.verify-box button {
  width: 220px;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
  font-size: 16px;
}

.verify-box button i {
  margin-left: 10px;
}

.verify-box button:hover {
  background: #fff;
  transform: translateY(-3px);
}

/*==============================
     FLOAT ANIMATION
===============================*/

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*=========================
      Important Note
==========================*/

.important-note {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 28px;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(15px);
}

.note-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: rgba(113, 25, 40, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.note-icon i {
  color: #39d353;
  font-size: 42px;
}

.important-note h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.important-note p {
  color: #d5d5d5;
  line-height: 1.8;
}
/*==========================================
    RESPONSIVE DESIGN
===========================================*/

/* Large Laptop */

@media (max-width: 1200px) {
  .container {
    width: 94%;
  }

  .verify-hero {
    gap: 40px;
  }
.hero-right{
  height: 350px;
}
  .hero-left h1 {
    font-size: 46px;
  }

  .result-content {
    grid-template-columns: 320px 1fr;
  }
}

/* Tablet */

@media (max-width: 992px) {
  .verify-hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-right {
    text-align: center;
    max-width: 320px;
  }
  .hero-left p {
    margin: auto;
  }
  .verify-box form {
    flex-direction: column;
    height: 100px;
  }

  .verify-box form input {
    padding: 10px 15px;
  }
  .verify-box button {
    width: 100%;
    height: 56px;
  }

  .result-content {
    grid-template-columns: 1fr;
  }

  .certificate-preview {
    max-width: 420px;
    margin: auto;
  }

  .student-details {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .certificate-page {
    padding: 60px 0;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-left p {
    font-size: 15px;
  }

  .verify-box {
    padding: 25px;
  }

  .verify-box h2 {
    font-size: 24px;
  }

  .verify-box input {
    height: 50px;
  }

  .result-box {
    padding: 25px;
  }

  .result-title h2 {
    font-size: 24px;
  }

  .student-details {
    grid-template-columns: 1fr;
  }

  .detail {
    padding: 16px;
  }

  .important-note {
    flex-direction: column;

    text-align: center;
  }

  .note-icon {
    width: 70px;
    height: 70px;
  }

  .note-icon i {
    font-size: 34px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .tag {
    font-size: 11px;

    padding: 6px 15px;
  }

  .verify-box {
    border-radius: 15px;
  }

  .result-box {
    border-radius: 15px;
  }

  .important-note {
    border-radius: 15px;
  }

  .verify-box button {
    font-size: 15px;
  }
}

/*==========================================
    ANIMATIONS
===========================================*/

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.verify-hero {
  animation: fadeUp 0.6s ease;
}

.verify-box {
  animation: fadeUp 0.8s ease;
}

.result-box {
  animation: fadeUp 1s ease;
}

.important-note {
  animation: fadeUp 1.2s ease;
}

/*==========================================
    CUSTOM SCROLLBAR
===========================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #00272b;
}

::-webkit-scrollbar-thumb {
  background: #ffa900;

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffbf33;
}

/*==========================================
    HOVER EFFECTS
===========================================*/

.verify-box,
.result-box,
.important-note {
  transition: 0.35s ease;
}

.verify-box:hover,
.result-box:hover,
.important-note:hover {
  border-color: rgba(255, 169, 0, 0.4);

  box-shadow: 0 20px 50px rgba(255, 169, 0, 0.08);
}

.certificate-preview {
  transition: 0.35s;
}

.certificate-preview:hover {
  transform: scale(1.02);
}

.verify-box button:active {
  transform: scale(0.97);
}
.footer-col ul{
    padding-inline-start: 0;
}