/* ==================== Import Fonts ==================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* ==================== Common Reset ==================== */

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  top: 0 !important;
  background-color: #fff;
  color: var(--off-black);
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

*:focus {
  outline: none;
}

button[type="button"]:focus {
  outline: none;
}

input:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
  resize: none;
}

textarea {
  resize: none;
}

/* ==================== Common style ==================== */
.wrapper {
  display: block;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}

.body-fixed {
  overflow: hidden;
}

.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: all 0.4s ease;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.shadow-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  transition: all 0.3s ease-in-out;
}

.nav-open .shadow-overlay {
  display: block;
}

/* ====================CMS_CON=============================== */
.cms-con h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.cms-con p {
  color: #2c2c2c;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cms-con p:last-child {
  margin-bottom: 0;
}

.cms-con {
  margin-bottom: 30px;
}

.cms-con:last-child {
  margin-bottom: 0;
}

/* ==================== Common Classes ==================== */

:root {
  --primary-color: #37ec81;
  --secondary-color: #066b67;
  --light-bg: #f6f6f6;
  --black: #000;
  --off-black: #1a1a1a;
  --white: #fff;
  --radius-8: 8px;
  --transition: all 0.3s ease-in-out;
  --glow: rgba(55, 236, 129, 0.13);
  --muted: #6b7568;
  --border: #e4e8e4;
  --input-bg: #f2f4f2;
  --radius-card: 14px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.055);
}

.common-sec {
  position: relative;
  padding-block: 120px 120px;
}

.sm-title {
  font-weight: 600;

  font-size: 24px;

  line-height: 1.25;
}

.sec-head {
  margin-bottom: 44px;
}

.sec-head .sec-title {
  color: var(--black);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
}

.sec-head .sec-title:has(.span) {
  display: flex;
  align-items: center;
}

.sec-head .sec-title span {
  font-style: italic;
  position: relative;
  color: var(--secondary-color);
}

.sec-head .sec-title span::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 22px;
  bottom: -16px;
  left: -15px;
  background-image: url(../img/svg/scratch-art.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ===================slick style===================== */
.slick-slide {
  height: auto !important;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  display: flex !important;
  height: auto !important;
}

.slick-slide>div {
  width: 100%;
}

/* ==================== btn style ==================== */

.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-8);
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn:has(.icon) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn .icon {
  font-size: 12px;
}

.right-arrow {
  mask-image: url(../img/svg/btn-arrow-right.svg);
}

.btn-green {
  color: var(--black);
  background-color: #37ec81;
}

.btn-green:hover {
  color: var(--white);

  background-color: var(--off-black);
}

.btn-black:hover {
  background-color: #37ec81;
}

.btn-black {
  color: var(--white);
  background-color: var(--black);
}

.border-btn {
  border: 1px solid #929292;
  color: var(--black);
}

.border-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

/* ==================== header  ==================== */
.header {
  padding: 20px 0 0;
  z-index: 999;
  position: relative;
}

.header .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* overflow: hidden; */
}

.main-nav ul li {
  display: inline-block;
}

.main-nav ul li a {
  font-size: 18px;
  color: var(--off-black);
  line-height: 1.03;
}

.main-nav ul li a:hover {
  color: var(--secondary-color);
}

.main-nav ul li:not(:last-child) {
  margin-right: 50px;
}

/* ── Submenu Parent ── */
.main-nav>ul>li {
  position: relative;
}

/* ── Submenu Toggle Arrow (injected by JS) ── */
.main-nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.main-nav .submenu-toggle svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/* ── Submenu Links ── */
.main-nav ul li ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--off-black);
  padding: 10px 20px;
  display: block;
  transition: all 0.25s ease;
}

.main-nav ul li ul li a:hover {
  color: var(--secondary-color);
}

.header-btns .btn:not(:last-child) {
  margin-right: 20px;
}

/* ==================== hero-sec  ==================== */
.hero-sec {
  position: relative;
  padding: 112px 0 140px;
  /* background-image: url(../img/chex.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-sec::before,
.hero-sec::after,
.hero-title span::before,
.inn-hero-sec::after,
.inn-hero-sec::before,
.inn-hero-title span::before {
  content: "";
  position: absolute;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-sec::before,
.inn-hero-sec::before {
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  aspect-ratio: 1/1;
  left: 0;
  background-image: url(../img/hero-left.png);
}

.hero-sec::after,
.inn-hero-sec::after {
  width: 80px;
  aspect-ratio: 1/1;
  right: 0;
  background-image: url(../img/hero-right.png);
}

.hero-title span::before,
.inn-hero-title span::before {
  width: 255px;
  height: 22px;
  right: 20px;
  bottom: 0px;
  background-image: url(../img/svg/scratch-art.svg);
  background-size: cover;
}

.hero-title {
  position: relative;
  font-size: 100px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-title span,
.hero-con p span,
.inn-hero-title span {
  position: relative;
  color: var(--secondary-color);
}

.inn-hero-title span::before {
  bottom: -26px;
}

.hero-title span {
  font-style: italic;
}

.hero-con p {
  color: #404040;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.hero-btns .btn:not(:last-child) {
  margin-right: 20px;
}

.glasee-view {
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: var(--secondary-color);
  padding: 28px 0px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid #ffffff;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  overflow: hidden;
}

.glasee-view.r2 {
  margin-bottom: 60px;
  transform: rotate(5deg);
}

.glasee-view.r1 {
  transform: rotate(-5deg);
}

.grbg {
  background: radial-gradient(50% 50%, rgba(55, 236, 129, 0.4) 0%, transparent 100%);
}

.gr1 {
  height: 300px;
  width: 300px;
  bottom: -100px;
  left: -100px;
}

.gr2 {
  top: -100px;
  right: -100px;
  height: 400px;
  width: 400px;
}

.floatable-cursor .icon {
  position: absolute;
  mask-image: none;
  mask-size: auto;
  min-height: 30px;
  width: 30px;
  object-fit: contain;
  top: -25px;
  background-color: transparent;
}

.floatable-cursor .txt {
  padding: 5px 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: 30px;
  text-transform: capitalize;
}

.floatable-cursor.drk .txt {
  background-color: var(--secondary-color);
  color: var(--white);
}

.floatable-cursor.drk .icon {
  right: -23px;
}

.floatable-cursor.light .icon {
  left: -23px;
}

.floatable-cursor.light .txt {
  background-color: var(--primary-color);
  color: var(--black);
}

.floatable-cursor.light {
  bottom: -5%;
  left: 50%;
  animation: cursorMove 7s infinite alternate-reverse;
}

.floatable-cursor.drk {
  left: -30%;
}

.floatable-cursor.drk.ani2 {
  bottom: -10%;
  animation: cursorMove 12s infinite alternate-reverse;
}

.floatable-cursor.drk.ani1 {
  top: -10%;
  animation: cursorMove 10s alternate-reverse infinite;
}

@keyframes cursorMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(10px, -10px);
  }

  50% {
    transform: translate(-10px, 10px);
  }

  75% {
    transform: translate(10px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ==================== why choose  ==================== */
.why-choose-sec .why-box .box {
  border: 1px solid #c7c7c7;
  border-radius: var(--radius-8);
  color: var(--black);
  background-color: transparent;
  height: 100%;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
}

.why-choose-sec .why-box .box:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.why-box .box .img {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: #f0f0f0;
  border-radius: 50%;
  transition: var(--transition);
}

.why-box .box:hover .img {
  background-color: var(--primary-color);
}

.why-box .box:hover .img img {
  filter: brightness(0);
}

.why-box .box .img img {
  height: 60%;
  transition: var(--transition);
}

/*  */
.pract-wrap {
  height: 100%;
}

.pract-wrap .box {
  background-color: var(--white);
  box-shadow: 0px 4px 65px 0px #00000014;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;

}

.pract-wrap .box .img img {
  border-radius: var(--radius-8);
}

.pract-wrap .box .img {
  margin-bottom: 20px;
}

.pract-wrap .box .cms-con h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.pract-wrap .box .det {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius-8);
  margin-bottom: 30px;
  width: 100%;
}

.pract-wrap .box .btn {
  margin-top: auto;
}

.pract-wrap .box .det ul,
.pract-wrap .box .det ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pract-wrap .box .det ul li:first-child::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}

.pract-wrap .box .det ul li {
  gap: 10px;
  margin-right: 20px;
}

.pract-wrap .box .det ul li:last-child {
  margin-right: 0;
}

.pract-wrap .box ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}

.pract-wrap .box .det ul li img {
  min-width: 20px;
  width: 20px;
  aspect-ratio: 1/1;
}

.watch-icon {
  mask-image: url(../img/svg/watch.svg);
}

/* work shop */
.ws-slide .founder-detail .img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.workshop-slider .row {
  --bs-gutter-y: 24px;
}

.ws-slide .box {
  border-radius: var(--radius-8);
  border: 1px solid #c7c7c7;
  height: 100%;
  display: flex;
  flex-direction: column;

  overflow: hidden;
}

.ws-slide .box .con {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ws-slide .img-contain .img {
  display: inline-block;
  padding: 25px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.ws-slide .img-contain .img img {
  width: 50px;
  aspect-ratio: 1/1;
}

.ws-slide {
  height: 100%;
}

.ws-slide .img-contain {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ws-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.ws-title span {
  color: var(--secondary-color);
}

.ws-info-contain .subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
}

.ws-info-contain .time {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: 10px 0;
}

.ws-info-contain .time .icon {
  font-size: 20px;
  background-color: var(--secondary-color);
}

.ws-info-contain .time span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #2c2c2c;
}

.ws-info-contain .price {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--black);
}

.ws-slide .founder-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.ws-slide .founder-detail .info p,
.ws-slide .founder-detail .info span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
}

.ws-slide .founder-detail .info p {
  margin-bottom: 5px;
}

.ws-slide .founder-detail .info span {
  font-weight: 400;
  color: #2c2c2c;
}

.founder-sec .right {
  max-width: 473px;
  margin-left: auto;
}

.founder-sec .cms-con h4 {
  color: var(--black);
  margin-bottom: 6px;
}

.founder-sec .cms-con p:not(:last-child) {
  margin-bottom: 20px;
}

.founder-sec .cms-con {
  margin-bottom: 40px;
}

/* last-prep-sec */

.last-prep-sec {
  background-color: var(--secondary-color);
}

.last-prep-sec .container {
  position: relative;
  z-index: 2;
}

.last-prep-sec .container::before,
.last-prep-sec .container::after {
  position: absolute;
  content: "";
  background-image: url(../img/svg/Ellipse.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 400px;
  width: 400px;
  z-index: -1;
}

.last-prep-sec .container::before {
  left: -20%;
  top: 55%;
  transform: translateY(-50%);
}

.last-prep-sec .container::after {
  right: -14%;
  top: -21%;
}

.last-prep-sec .prep-card {
  background-color: var(--white);
  height: 100%;
  padding: 30px 45px;
  text-align: center;
  border-radius: calc(var(--radius-8) * 2);
}

.last-prep-sec .prep-card .img {
  margin: 0 auto 20px;
}

.svg-icons {
  display: inline-block;
  padding: 25px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.svg-icons img {
  width: 50px;
  aspect-ratio: 1/1;
}

.last-prep-sec .sec-head .sec-title,
.last-prep-sec .sec-head .sec-title span,
.last-prep-sec .sec-head p {
  color: var(--white);
}

.last-prep-sec .sec-head .sec-title,
.last-prep-sec .sec-head p {
  margin-bottom: 30px;
}

.last-prep-sec .row {
  --bs-gutter-y: 24px;
}

.cms-con h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

.last-prep-sec .row .sec-head {
  max-width: 270px;
  margin: 0;
}

/*  */
.video-card {
  position: relative;
  width: 300px;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.video-card img.video,
.video-card video.video-el {
  width: 100%;
  display: block;
}

.video-card video.video-el {
  display: none;
  /* hidden initially */
}

.video-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.play-icon {
  font-size: 50px;
  color: white;
}

.video-card .video-el {
  position: relative;
  top: 0;
  left: 0;
}

.video-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* testimonial slider */
.tt-slide .box {
  position: relative;
  background-color: var(--light-bg);
  padding: 40px 30px 30px;
  display: flex;
  border-radius: calc(var(--radius-8) * 2);
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: var(--off-black);
}

.tt-slide .info .img img {
  height: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.tt-slide .info {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  align-items: center;
  max-width: 78%;
}

.tt-slide {
  padding: 0 12px;
  height: 100%;
}

.tt-slide>div {
  height: 100%;
}

.tt-slide .img-1 {
  right: 67px;
  bottom: 30px;
  height: 50px;
}

.testimonial-slider .slick-list.draggable {
  overflow: visible;
}

.testimonial-slider .slick-track {
  margin: 0 -12px;
}

.slick-arrow {
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #e6e6e6;
  border-radius: 50%;
  font-size: 0;
  bottom: -90px;
  left: 57%;
  transform: translate(-50%);
  z-index: 9;
  transition: var(--transition);
}

.slick-arrow::before {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  background-image: url("../img/svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0deg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.slick-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.slick-prev {
  left: 50%;
}

.slick-arrow:hover {
  background-color: var(--secondary-color);
}

.slick-arrow:hover::before {
  filter: brightness(0) invert(1);
}

/* certificate sec

*/
.certification-sec .sec-head .sec-title {
  margin-bottom: 40px;
}

.certi-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certi-img img {
  height: 380px;
  border: 1px solid var(--secondary-color);
  border-radius: 16px;
}

/* footer */
.top-footer {
  background-color: var(--white);
  background-image: url(../img/desing.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px;
  border-radius: calc(var(--radius-8) * 2);
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 65px 0px #00000014;
  width: 100%;
  max-width: 1200px;
  margin: 0% auto -100px;
}

.top-footer .sec-head {
  margin-bottom: 0;
}

.top-footer .sec-head .sec-title {
  margin-bottom: 10px;
}

.footer .container {
  max-width: 1170px;
}

.top-footer .row .right {
  padding-left: 50px;
}

.top-footer .form-group {
  margin-bottom: 20px;
}

.form-group input {
  background-color: #f1f1f1;
  border: none;
}

.footer {
  padding-top: 150px;
  position: relative;
  background-color: var(--secondary-color);
}

.social-links ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.social-links ul li a {
  position: relative;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  z-index: 1;
  overflow: hidden;
}

.social-links ul li a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  transform: translateY(100%);
  transition: var(--transition);
}

.social-links ul li a:hover::before {
  transform: translateY(0);
}

.social-links ul li a:hover {
  color: var(--black) !important;
}

.linkedin-icon {
  mask-image: url(../img/svg/linkedin.svg);
}

.insta-icon {
  mask-image: url(../img/svg/social-media.svg);
}

.youtube-icon {
  mask-image: url(../img/svg/youtube.svg);
}

.foot-logo {
  height: 50px;
}

.footer hr {
  color: var(--white);
  opacity: 0.2;
  margin: 30px 0 40px;
}

.foot-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}

.foot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}

.foot-links ul {
  list-style: none;
  padding-left: 20px;
}

.foot-links ul li {
  position: relative;
}

.foot-links ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
}

.foot-links ul a {
  color: var(--white);

  font-weight: 400;
  font-size: 18px;
  line-height: 2.5;
}

.foot-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.foot-legal ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
}

.foot-legal ul a {
  color: var(--white);
  font-weight: 400;
}

.copyright {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

body p a {
  color: inherit !important;
  font-size: inherit;
}

.footer a:hover {
  color: var(--primary-color) !important;
}

.come-from {
  top: 0;
  right: 0;
  border-bottom-left-radius: 16px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 5px;
}

.come-from>div {
  color: var(--white);
}

.hero-left {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #37ec81;
  transform: translate(-50%);
  filter: blur(200px);
  z-index: -1;
  opacity: 0.2;
}

.hero-right {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60%;
  width: 1170px;
  transform: translate(-50%, -50%);
  /* filter: blur(20px); */
  z-index: -1;
  background-image: url("../img/chex.png");
  border-radius: 100%;
  opacity: 0.4;
}

/* verify */
/* Certificate Verification Styles */

.verification-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.verification-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.page-title {
  text-align: center;
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin-bottom: 50px;
  font-weight: 400;
}

.search-form {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-end;
}

.input-group {
  flex: 1;
}

.input-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.input-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-8);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fafafa;
}

.input-field:hover {
  border-color: #d0d0d0;
  background: var(--white);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(55, 236, 129, 0.08);
}

.input-field::placeholder {
  text-transform: none;
  color: #999;
  letter-spacing: 0;
  font-weight: 400;
}

.verify-btn {
  padding: 16px 50px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-8);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(6, 107, 103, 0.2);
}

.verify-btn:hover {
  background: var(--primary-color);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 236, 129, 0.35);
}

.verify-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(55, 236, 129, 0.25);
}

.loading {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.spinner {
  border: 4px solid #f0f0f0;
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

.error-message {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 5px solid #ff4444;
  padding: 24px 28px;
  border-radius: var(--radius-8);
  color: #cc0000;
  display: none;
  animation: slideIn 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.1);
}

.error-message strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.error-message p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.result-container {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.success-badge {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(55, 236, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.success-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.success-badge h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.success-badge p {
  font-size: 15px;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.certificate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.certificate-table tr {
  transition: background-color 0.2s ease;
}

.certificate-table tr:hover {
  background-color: #f9f9f9;
}

.certificate-table tr:last-child th,
.certificate-table tr:last-child td {
  border-bottom: none;
}

.certificate-table th,
.certificate-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #efefef;
}

.certificate-table th {
  font-weight: 700;
  color: var(--secondary-color);
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
  width: 35%;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.certificate-table td {
  color: var(--off-black);
  font-size: 16px;
  font-weight: 500;
  background: var(--white);
}

.certificate-table td strong {
  font-weight: 700;
  font-size: 17px;
}

/*  */

.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--secondary-color);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transform: rotate(-90deg);
  z-index: 999;
  border: 1px solid var(--light-bg);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn .icon {
  color: var(--white);
  font-size: 34px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* animation on hover */
.back-to-top-btn:hover .icon {
  animation: arrowUpDown 0.5s ease forwards;
}

.arrowTop-icon {
  mask-image: url(../img/svg/arrow-right.svg);
}

.why-box {
  height: 100%;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s ease forwards infinite;
  /* animation-delay: 10s; */
}

/* Animate shine only once on hover */
.btn:hover::after {}

/* Keyframes for one-way shine movement */
@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* Optional accessibility focus */
.btn:is(:focus, :focus-visible, :active) {
  outline: none;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.header-logo a {
  height: 100%;
}

.grid-lyt {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.grid-lyt .glasee-view {
  font-size: 20px;
  padding: 10px;
  display: inline-block;
  width: auto;
  border-radius: 10px;
  margin-bottom: 0;
  /* background-color: rgb(255, 255, 255, .6); */
}

.sticky-header .header {
  position: fixed;
  padding: 12px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
}

.header .container-lg {
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  /* overflow: hidden; */
  background: linear-gradient(to bottom, #fff, #daf6e5);
}

.sticky-header {
  padding-top: 80px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.hamburger {
  cursor: pointer;
}

.hamburger svg {
  height: 1em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--secondary-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

/* when active */
.nav-open .hamburger svg {
  transform: rotate(-45deg);
}

.nav-open .hamburger .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* inner banner  */
.inn-hero-sec {
  padding-top: 42px;
  position: relative;
  text-align: center;
  padding-bottom: 100px;
}

.inn-hero-sec .container-lg {
  padding-top: 110px;
  padding-bottom: 121px;
}

.inn-hero-sec .floatable-cursor.drk.ani1 {
  left: 48%;
  top: 9%;
}

.inn-hero-sec .floatable-cursor.drk.ani2 {
  right: 6%;
  left: inherit;
  bottom: 23%;
}

.inn-hero-sec .floatable-cursor.light {
  left: 11%;
  bottom: 24%;
}

.inn-hero-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.35;
  margin-bottom: 50px;
}

.inn-hero-sec .inn-hero-con p {
  font-weight: 500;
  color: #404040;
  font-size: 32px;
  line-height: 1.5;
  max-width: 765px;
  margin: 0 auto;
}

.inn-hero-sec .hero-right {
  height: 70%;
  top: 40%;
}

.inn-hero-sec .gr1 {
  height: 122px;
  width: 122px;
  opacity: 40%;
  top: 60%;
  left: 10%;
  filter: blur(30px);
  background-color: #37ec81;
  z-index: -1;
}

.inn-hero-sec::after {
  top: 40px;
}

/*  */
.contact-sec {
  position: relative;
}

.contact-sec .col-left {
  max-width: 375px;
}

.contact-sec .col-left .sec-head {
  margin-bottom: 35px;
}

.contact-sec .intro-text {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2c2c;
}

.contact-sec .info-item {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  margin-bottom: 30px;
}

.contact-sec .info-icon {
  min-width: 26px;
  width: 26px;
  padding-top: 2px;
}

.contact-sec .info-icon img {
  width: 100%;
  aspect-ratio: 1/1;
}

.contact-sec .info-content .info-title,
.social-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-sec .info-content p {
  color: #2c2c2c;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.contact-sec .social-links ul {
  justify-content: start;
  gap: 20px;
  padding-top: 12px;
}

.contact-sec .social-links ul a {
  height: auto;
  width: auto;
  border-radius: 0;
  background-color: transparent;
}

.contact-sec .social-links ul a img {
  width: 36px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.contact-sec .col-right {
  max-width: 672px;
  margin-left: auto;
  background-color: var(--white);
  box-shadow: 0px 4px 60px 4px #00000014;
  padding: 50px;
  border-radius: 16px;
  position: relative;
}

.contact-sec .col-right .sec-title span::before {
  bottom: -22px;
}

.contact-sec .col-right .sec-head {
  margin-bottom: 54px;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-sec .form-group input,
.contact-sec .form-group textarea {
  width: 100%;
  padding: 16px 30px;
  border: 1px solid #cccccc;
  border-radius: var(--radius-8);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  transition: var(--transition);
  background: var(--white);
  color: #959595;
}

.contact-sec .form-group input:focus,
.contact-sec .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-sec .form-group textarea {
  height: 120px;
}

.contact-sec .response-time {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 30px;
  color: var(--black);
}

.contact-sec .col-right::before {
  content: "";
  position: absolute;
  width: 244px;
  height: 244px;
  bottom: -50%;
  right: -50%;
  opacity: 0.2;
  background-color: #37ec81;
  filter: blur(100px);
  z-index: -1;
  transform: translate(-100%, -100%);
}

.contact-sec::before {
  content: "";
  position: absolute;
  width: 244px;
  height: 244px;
  top: 50%;
  left: -160px;
  opacity: 0.2;
  background-color: #37ec81;
  filter: blur(100px);
}

.light-banner-sec .container .mentor-session {
  padding-top: 82px;
  padding-bottom: 82px;
  padding-left: 30px;
  padding-right: 30px;
  background-image: url(../img/online-learning.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.light-banner-sec .container .mentor-session .sec-title {
  color: var(--white);
}

/* about us */
.glass-view {
  font-weight: 600;
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid #ffffff;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 19px 42px;
  margin-bottom: 40px;
}

.our-story-sec .story-wrap {
  background-color: #066b67;
  padding: 40px;
  border-radius: 16px;
}

.story-img img {
  border-radius: 16px;
}

.our-story-sec .sec-head .sec-title,
.our-story-sec p,
.our-story-sec .sec-title span {
  color: var(--white);
}

.our-story-sec .content {
  max-width: 432px;
  margin-left: auto;
}

.our-story-sec .content .cms-con p {
  margin-bottom: 16px;
}

.why-we-exist .img img {
  max-width: 573px;
  margin-left: auto;
  border-radius: 16px;
  width: 100%;
}

.why-we-exist .sec-head p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

.cms-con ul li {
  position: relative;
  padding-left: 23px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.cms-con ul li::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 10px;
  background-color: #066b67;
}

.why-we-exist .sec-head .sec-title {
  margin-bottom: 36px;
}

.why-we-exist .sec-head {
  margin-bottom: 26px;
}

.ur-mission-sec {
  background-image: url(../img/misssion-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 8/3;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 16px;
}

.ur-mission-sec .center-con {
  background-color: var(--white);
  max-width: 573px;
  margin-left: auto;
  box-shadow: 0px 4px 65px 0px #00000014;
  border-radius: 16px;
  padding: 50px;
}

.meetTheFounder-sec .sec-head {
  margin-bottom: 40px;
}

.meetTheFounder-sec .name p {
  font-size: 18px;
}

.meetTheFounder-sec .name {
  margin-bottom: 20px;
}

.meetTheFounder-sec .cms-con p {
  margin-bottom: 16px;
}

.meetTheFounder-sec .social-links ul {
  justify-content: flex-start;
  gap: 20px;
}

.meetTheFounder-sec .social-links ul li a {
  height: 30px;
  width: 30px;
  border-radius: 8px;
}

.meetTheFounder-sec .container .row:first-child {
  margin-bottom: 100px;
}

.meetTheFounder-sec .row.flex-row-reverse .founder-img img {
  margin-left: auto;
}

.meetTheFounder-sec .founder-img img {
  max-width: 573px;
  aspect-ratio: 57/40;
  object-fit: cover;
  border-radius: 16px;
  object-position: top;
  width: 100%;
}

.our-beliefs-sec .container {
  max-width: 1440px;
  padding-left: 0;
}

.our-beliefs-sec .left img {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.our-beliefs-sec .right {
  padding-left: 124px;
}

.company-head-info {
  position: relative;
}

.company-head-info .content-box {
  background-color: rgb(255 255 255 / 90%);
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
  padding: 15px;
  border-radius: 10px;
}

.company-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.company-head-info .img-box img {
  max-width: 400px;
  aspect-ratio: 1/1.4;
  filter: grayscale(1);
  border-radius: 16px;
  transition: var(--transition);
  width: 100%;
  object-fit: cover;
}

.company-head-info:hover img {
  filter: none;
}

.company-head-info .content-box .name {
  font-size: 20px;
}

.main-nav {
  margin-left: auto;
  margin-right: 40px;
}

.parctical-sec .top-row {
  align-items: center;
}

.parctical-sec .left-text {
  text-align: right;
}

.tt-slide .cms-con {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.come-from svg {
  fill: #73cf11;
  height: 100%;
  width: 100%;
}

.come-from svg {
  height: 24px;
  width: 24px;
}

.practical-info {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.btn-border {
  border: none;
}

.btn-border:hover {
  background-color: var(--primary-color);
  color: var(--black);
}

.company-head-info .content-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.company-head-info .social-links ul li a {
  background-color: var(--secondary-color);
  height: 36px;
  width: 36px;
}

.company-head-info .social-links ul {
  gap: 15px;
}

/* landing page  */

.landing-hero-sec.hero-sec .inn-hero-title {
  color: var(--secondary-color);
}

.landing-hero-sec.hero-sec p {
  font-size: 18px;
  padding-top: 12px;
  max-width: 550px;
  margin-bottom: 30px;
}

.landing-hero-sec.hero-sec img {
  margin: 0 auto;
  transform: translate(7%);
}

.landing-hero-sec.hero-sec .floatable-cursor.drk.ani1 {
  top: -5%;
  left: inherit;
  right: 5%;
}

.landing-hero-sec.hero-sec .floatable-cursor.light {
  bottom: 0%;
  left: 10%;
}

.whyThis-sec .right {
  max-width: 500px;
  margin-left: auto;
}

.whyThis-sec .right .sec-head {
  margin-bottom: 40px;
}

.cms-con h5 {
  font-size: 20px;
  margin-bottom: 24px;
}

.whyThis-sec .img img {
  border-radius: 16px;
}

/*  */

.willLearn-sec {
  padding-top: 90px;
  background-color: #f5f5f5;
}

.green {
  position: absolute;
  width: 180px;
  height: 180px;

  filter: blur(100px);
  background-color: var(--primary-color);
}

.green-left {
  left: -80px;
  bottom: 100px;
}

.willLearn-sec .left {
  position: sticky;
  top: 110px;
}

.willLearn-sec p {
  font-size: 18px;
}

.willLearn-sec .left p {
  margin-bottom: 50px;
}

.willLearn-sec .left img {
  border-radius: 16px;
}

.willLearn-sec .right {
  position: relative;
}

.willLearn-sec .willLearn-wrap {
  padding: 45px 0;
  border-bottom: 1px solid #d7d7d7;
}

.willLearn-sec .willLearn-wrap .box {
  max-width: 585px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 100px;
  align-items: center;
}

.willLearn-sec .willLearn-wrap:last-child {
  border-bottom: none;
}

.willLearn-sec .sm-title {
  color: var(--secondary-color);
}

.willLearn-sec .right:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  left: 240px;
  top: 0;
  background-color: #d7d7d7;
}

.willLearn-sec .right:after {
  content: "";
  position: sticky;
  height: 100px;
  width: 2px;
  left: 135px;
  top: 50px;
  background-color: var(--primary-color);
}

.liveClass-sec .container {
  border-radius: 16px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 20px 50px;
}

.liveClass-sec .sec-title,
.liveClass-sec .sec-title span {
  color: var(--white);
}

.liveClass-sec .row {
  --bs-gutter-x: 0;
  padding-top: 24px;
}

.liveClass-sec .lcf-wrap {
  text-align: center;
  border-right: 1px solid #1a837f;
  height: 100%;
  padding: 25px 40px;
}

.liveClass-sec .row>*:last-child .lcf-wrap {
  border-right: none;
}

.liveClass-sec .lcf-wrap img {
  max-height: 70px;
  margin: 0 auto;
}

.liveClass-sec .lcf-wrap .info {
  margin-top: 30px;
}

.liveClass-sec .lcf-wrap .sm-title {
  font-size: 22px;
}

/*  */
.courseStru-sec .sec-head {
  margin-bottom: 75px;
}

.faq-wrap .cms-con ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

/* FAQ card */
.faq-wrap .faq-item {
  background: var(--white);
  border-radius: calc(var(--radius-8) * 2);
  border: 1px solid #b6b6b6;
  box-shadow: 0px 4px 65px 0px #00000014;
  padding: 33px;
  position: relative;
  margin-bottom: 26px;
}

/* Header row */
.faq-wrap .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Title */
.faq-wrap .sm-title {
  color: var(--secondary-color);
}

.faq-wrap .sm-title span {
  color: var(--off-black);
  margin-left: 1rem;
}

/* Toggle button */
.faq-wrap .faq-toggle {
  cursor: pointer;
  transition: var(--transition);
  background-color: transparent;
  font-size: 30px;
}

.top-arrow-icon {
  mask-image: url(../img/svg/up-arrow.svg);
}

.faq-wrap .faq-toggle span {
  color: var(--off-black);
  transform: rotate(180deg);
  transition: transform 0.22s ease;
}

.faq-wrap .faq-toggle[aria-expanded="true"] span {
  transform: rotate(0deg);
  color: var(--secondary-color);
}

/* Body content */
.faq-wrap .faq-body .cms-con {
  margin-top: 14px;
  padding: 8px 55px 8px 2px;
  border-top: 1px solid #f0f0f0;
}

.founder-sec.wtcd-sec .right {
  margin: 0;
}

.founder-sec.wtcd-sec .sec-head .sec-title span {
  display: block;
}

/* faq */
.faq-sec .container {
  box-shadow: 0px 4px 65px 0px #00000014;
  background: #ffffff;
  border-radius: 16px;
  padding: 100px 80px;
}

.faqs-wrap .accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
}

.faqs-wrap .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 0;
}

.faqs-wrap .accordion-item:last-child {
  border-bottom: none;
}

.faqs-wrap .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 30px 0px 30px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faqs-wrap .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--black);
  box-shadow: none;
  padding-bottom: 20px;
}

.faqs-wrap .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.faqs-wrap .accordion-button::after {
  display: none;
}

.faqs-wrap .accordion-button:hover {
  background: transparent;
}

.faqs-wrap .accordion-button .icon {
  font-size: 30px;
  transform: rotate(180deg);
  color: var(--off-black);
}

.faqs-wrap .accordion-button:not(.collapsed) .icon {
  transform: translate(0);
  color: var(--secondary-color);
}

.faqs-wrap .accordion-body {
  padding: 0 50px 28px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
}

.faqs-wrap .accordion-collapse {
  border: none;
}

.pricing-sec .sm-title {
  margin-bottom: 20px;
}

.contain-price {
  border: 1px solid var(--black);
  border-radius: var(--radius-8);
  padding: 20px 20px 10px;
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
}

.contain-price .incl-tax {
  position: absolute;
  bottom: -9px;
  background-color: var(--white);
  padding: 3px 5px 0;
}

.contain-price p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.contain-price .main-price {
  font-size: 56px;
  color: var(--secondary-color);
  font-weight: 700;
}

.pricing-sec .info-box {
  padding: 15px 30px;
  background-color: var(--primary-color);
  box-shadow: 5px 6px 0 var(--black);
  border-radius: var(--radius-8);
  display: inline-block;
}

.pricing-sec .container {
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 65px 0px #00000014;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.pricing-sec .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pricing-sec .left {
  padding: 50px;
  padding-left: 84px;
}

.pricing-sec .left .sec-title {
  text-align: start;
}

.pricing-sec .right {
  background-color: var(--secondary-color);
  height: 100%;
  color: var(--white);
  padding: 80px 65px 20px;
}

.pricing-sec .right .cms-con ul li {
  color: var(--white);
}

.tools-sec .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 30px;
  gap: 24px;
}

.tools-sec .grid .img {
  border: 1px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 10px;
}

.bonus-sec.our-story-sec .content {
  margin: 0;
}

.bonus-sec.our-story-sec .container .story-wrap {
  padding-top: 50px;
}

.bonus-sec.our-story-sec .cms-con ul li {
  color: var(--white);
}

.pricing-sec .right .cms-con ul li::before,
.bonus-sec.our-story-sec .cms-con ul li::before {
  background-color: var(--white);
}

.MeetYourTrainer-sec .right {
  max-width: 473px;
  margin-left: auto;
}

.cta-sec.common-sec .container {
  background-color: var(--secondary-color);
  border-radius: 16px;
  padding: 70px;
  color: var(--white);
  position: relative;
}

.cta-sec.common-sec .container .sec-title,
.top-footer .sec-head .sec-title {
  text-align: start;
}

.cta-sec .sec-title {
  color: var(--white);
  margin-bottom: 22px;
}

.cta-sec .sec-head {
  max-width: 80%;
}

.cta-sec.common-sec .container::before {
  position: absolute;
  content: "";
  background-image: url(../img/Consultwhiz-logo-trp.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 337px;
  height: 266px;
  bottom: -10%;
  right: 0;
}

.founder-sec .left-img img {
  border-radius: 16px;
}

.live-icon {
  display: inline-block;
  position: relative;
  top: calc(50% - 5px);
  background-color: rgb(255, 0, 0);
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.live-icon::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: live 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes live {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(3.5);
    background-color: rgba(255, 0, 0, 0);
  }
}

.hero-con .bg-white {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: inline-flex;
  gap: 5px;
  font-weight: 700;
  align-items: center;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.pricing-sec .green {
  display: none;
}

.MeetYourTrainer-sec .img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}

/* ==================== article  ==================== */
.popular-article-sec {
  background-color: var(--secondary-color);
}

.article-wrap .article-box {
  background-color: var(--white);
  padding: 20px 20px 30px;
  border-radius: 16px;
  border: 1px solid #929292;
  box-shadow: 0px 4px 65px 0px #00000014;
}

.article-wrap .article-box .img {
  margin-bottom: 20px;
  border-radius: 8px;
  aspect-ratio: 5/4;
  overflow: hidden;
}

.article-wrap .article-box .img img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.article-wrap .article-box:hover img {
  transform: scale(1.05);
}

.article-box .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.article-box .top .date {
  font-weight: 400;
}

.article-box .top .topic a {
  color: var(--off-black)
}

.article-box .top .topic a:hover {
  color: var(--secondary-color)
}

.arti-title {
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.arti-title a {
  color: inherit;
  font-size: inherit;
}

.article-box:hover .arti-title {
  color: var(--primary-color);
}

/* ==================== Categories Section  ==================== */
.searchInp {
  position: relative;
  display: inline-block;
  max-width: 306px;
  width: 100%;
  margin-bottom: 40px;
}

.searchInp input {
  padding: 15px 40px 15px 22px;
  background-color: #F0F0F0;
  border: 1.5px solid #C2C2C2;
  border-radius: 100px;
  width: 100%;
  color: #8B8B8B;
}



.searchInp .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-color: var(--secondary-color);
}

.search-icon {
  mask-image: url(../img/svg/search.svg);
}

.sub-category {
  background-color: #F5F5F5;
  border-radius: 16px;
  padding: 34px 28px;
  max-width: 332px;
  width: 100%;
}

.sub-category .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 27px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E2E2E2;
}


.sub-category ul li {
  margin-bottom: 34px;

}

.sub-category ul li:last-child {
  margin-bottom: 0;
}

.sub-category ul li a {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--black);
  position: relative;
}

.sub-category ul li a:hover,
.sub-category ul li a.active {
  color: var(--secondary-color);
  font-weight: 800;
}

.all-article-sec .inner-row {

  --bs-gutter-y: 24px;
}

.filter-icon {
  mask-image: url(../img/svg/duotone.svg);
}

/* ==================== Pagination  ==================== */
.pagination-wrap {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F0F0F0;
  border: 1.5px solid #E0E0E0;
  color: #2C2C2C;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 16px;
}

.pagination .page-link:hover {
  background-color: #E8E8E8;
  border-color: #C2C2C2;
  color: var(--black);
}

.pagination .page-item.active .page-link {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  font-weight: 700;
}

.pagination .page-item.ellipsis .page-link {
  background-color: transparent;
  border: none;
  color: #8B8B8B;
  cursor: default;
  pointer-events: none;
}

.pagination .page-item.next-btn .page-link {
  border-radius: 100px;
  gap: 8px;
  padding: 0 20px;
  background-color: var(--white);
  border: 1.5px solid #E0E0E0;
  font-size: 16px;
  font-weight: 600;
}

.pagination .page-item.next-btn .page-link:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.pagination .page-item.next-btn .page-link .icon {
  background-color: var(--black);
  transition: var(--transition);
}

.pagination .page-item.next-btn .page-link:hover .icon {
  background-color: var(--white);
}



/*  */


/* verify */
/* Certificate Verification Styles */

.verification-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.verification-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.page-title {
  text-align: center;
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin-bottom: 50px;
  font-weight: 400;
}

.search-form {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-end;
}

.input-group {
  flex: 1;
}

.input-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.input-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-8);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fafafa;
}

.input-field:hover {
  border-color: #d0d0d0;
  background: var(--white);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(55, 236, 129, 0.08);
}

.input-field::placeholder {
  text-transform: none;
  color: #999;
  letter-spacing: 0;
  font-weight: 400;
}

.verify-btn {
  padding: 16px 50px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-8);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(6, 107, 103, 0.2);
}

.verify-btn:hover {
  background: var(--primary-color);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 236, 129, 0.35);
}

.verify-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(55, 236, 129, 0.25);
}

.loading {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.spinner {
  border: 4px solid #f0f0f0;
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

.error-message {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 5px solid #ff4444;
  padding: 24px 28px;
  border-radius: var(--radius-8);
  color: #cc0000;
  display: none;
  animation: slideIn 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.1);
}

.error-message strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.error-message p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.result-container {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.success-badge {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
  box-shadow: 0 8px 24px rgba(55, 236, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.success-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.success-badge h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.success-badge p {
  font-size: 15px;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.certificate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.certificate-table tr {
  transition: background-color 0.2s ease;
}

.certificate-table tr:hover {
  background-color: #f9f9f9;
}

.certificate-table tr:last-child th,
.certificate-table tr:last-child td {
  border-bottom: none;
}

.certificate-table th,
.certificate-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #efefef;
}

.certificate-table th {
  font-weight: 700;
  color: var(--secondary-color);
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
  width: 35%;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.certificate-table td {
  color: var(--off-black);
  font-size: 16px;
  font-weight: 500;
  background: var(--white);
}

.certificate-table td strong {
  font-weight: 700;
  font-size: 17px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .verification-card {
    padding: 40px 30px;
    border-radius: 12px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .search-form {
    flex-direction: column;
    gap: 0;
  }

  .input-group {
    margin-bottom: 20px;
  }

  .verify-btn {
    width: 100%;
    padding: 16px 30px;
  }

  .certificate-table th,
  .certificate-table td {
    padding: 16px 18px;
    font-size: 14px;
  }

  .certificate-table th {
    width: 42%;
  }

  .success-badge {
    padding: 24px 20px;
  }

  .success-badge h3 {
    font-size: 22px;
  }

  .error-message {
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .verification-card {
    padding: 30px 20px;
  }

  .page-title {
    font-size: 24px;
  }

  .certificate-table th,
  .certificate-table td {
    padding: 14px 16px;
    font-size: 13px;
  }

  .certificate-table th {
    width: 45%;
  }

  .input-field {
    padding: 14px 18px;
    font-size: 15px;
  }

  .verify-btn {
    padding: 14px 30px;
    font-size: 15px;
  }
}

.post,
.page {
  margin: 0 !important;
}

/* -------------------------------------
   Blog Detail Styles
-------------------------------------- */
.blog-detail-sec {
  background: #fdfdfd;
}

.cms-con {
  max-width: 850px;
  margin: 0 auto;
}

.blog-featured-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cms-con .entry-content h2,
.cms-con .entry-content h3,
.cms-con .entry-content h4 {
  font-weight: 700;
  color: #0b2238;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.cms-con .entry-content h2 {
  font-size: 1.8rem;
}

.cms-con .entry-content h3 {
  font-size: 1.5rem;
}

.cms-con .entry-content h4 {
  font-size: 1.2rem;
}

.cms-con .entry-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
}

.cms-con .entry-content ul,
.cms-con .entry-content ol {
  margin-bottom: 1.8rem;
}

.cms-con .entry-content li {
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 0.8rem;
}

.cms-con .entry-content blockquote {
  border-left: 5px solid var(--secondary-color, #066b67);
  padding: 1.5rem 2rem;
  background: #f7f9fa;
  font-style: italic;
  font-size: 1.2rem;
  margin: 2.5rem 0;
  color: #2d3748;
}

/* Post Navigation */
.post-navigation {
  border-top: 1px solid #edf2f7;
  padding-top: 3rem;
  margin-top: 4rem;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation .nav-subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #a0aec0;
  margin-bottom: 0.5rem;
  display: block;
}

.post-navigation .nav-title {
  color: var(--primary-color, #0b2238);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.post-navigation a:hover .nav-title {
  color: var(--secondary-color, #066b67);
}

@media (max-width: 768px) {

  .cms-con .entry-content h2,
  .cms-con .entry-content h3,
  .cms-con .entry-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.6rem;
  }

  .cms-con .entry-content h2 {
    font-size: 1.4rem;
  }

  .cms-con .entry-content h3 {
    font-size: 1.2rem;
  }

  .post-navigation .nav-links {
    flex-direction: column;
  }
}

/* Author Box & Comments */
.author-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color, #0b2238);
}



.comments-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color, #0b2238);
}


/* ===== COMMENT AREA ===== */

.comment-respond {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  border: 1px solid #d0d0d0;
}

#reply-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: 0.4rem;
}

#reply-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  margin-top: 6px;
}

.comment-notes {
  font-size: 0.82rem;
  color: #888;
  margin: 1.25rem 0;
}

.required {
  color: var(--secondary-color);
}

.comment-form p {
  margin-bottom: 1.2rem;
}

.comment-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-black);
  letter-spacing: 0.2px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #d0d0d0;
  border-radius: var(--radius-8);
  background: #fafafa;
  color: var(--off-black);
  font-size: 0.92rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.comment-form input[type="text"]:hover,
.comment-form input[type="email"]:hover,
.comment-form input[type="url"]:hover,
.comment-form textarea:hover {
  border-color: #aaa;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3.5px rgba(6, 107, 103, 0.13);
  background: var(--white);
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
  font-size: 0.82rem;
  color: #666;
  cursor: pointer;
}

.comment-form-cookies-consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--secondary-color);
  cursor: pointer;
  flex-shrink: 0;
}

.comment-form .submit {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0.7rem 2.2rem;
  border-radius: var(--radius-8);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.comment-form .submit:hover {
  background: #055957;
  box-shadow: 0 4px 16px rgba(6, 107, 103, 0.22);
  transform: translateY(-1px);
}

.comment-form .submit:active {
  transform: scale(0.98);
}

#cancel-comment-reply-link {
  font-size: 0.8rem;
  color: var(--secondary-color);
  text-decoration: none;
  margin-left: 0.5rem;
  transition: var(--transition);
}

#cancel-comment-reply-link:hover {
  opacity: 0.75;
}

@media (max-width: 576px) {
  .comment-respond {
    padding: 1.25rem 1rem;
  }
}

.clock-icon {
  mask-image: url(../img/svg/clocks.svg);
}

/* ===== WOOCOMMERCE CHECKOUT ===== */

/* Coupon Box */
.custom-coupon-box {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--secondary-color);
  border-radius: var(--radius-8);
  padding: 0.6rem 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-coupon-box:focus-within {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(6, 107, 103, 0.12);
}

.custom-coupon-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.88rem;
  border-radius: 5px;
  padding: 5px 10px;
  color: var(--off-black);
  background: transparent;
}

.custom-coupon-box input::placeholder {
  color: var(--off-black);
}

#apply_custom_coupon {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

#apply_custom_coupon:hover {
  background: #055957;
}

/* Customer Info Card */
.customer-info {
  background: var(--white);
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  /* padding: 1.75rem; */
}

.card-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--glow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--secondary-color);
}

.card-header-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--off-black);
  line-height: 1.2;
  margin: 0 !important;
}

/* Section Headings */

/* Field Grid */
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 0.75rem 1rem; */
}

.form-row-wide,
.form-row.address-field,
.thwcfd-field-heading {
  grid-column: 1 / -1;
}

/* Labels */
.form-row {
  margin: 0;
}

.form-row label,
.required_field {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--off-black);
  margin-bottom: 0.35rem;
  letter-spacing: 0.1px;
}

.required,
abbr.required {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Sub-section heading (Contact Info) */
.thwcfd-field-heading h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0.5rem 0 0.25rem;
  border: none;
}

/* All text inputs */
.woocommerce form .form-row .input-text {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-8);
  background: var(--input-bg);
  color: var(--off-black);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.woocommerce form .form-row .input-text:hover {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--glow);
}

.woocommerce form .form-row .input-text:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(6, 107, 103, 0.12);
  background: var(--white);
}

/* Select2 dropdowns */
.select2-container--default .select2-selection--single {
  width: 100%;
  padding: 12px 14px;
  background: var(--input-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--off-black);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.select2-container--default .select2-selection--single:hover {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--glow);
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(6, 107, 103, 0.12);
  background: var(--white);
}

.select2-selection__rendered {
  font-size: 0.88rem;
  color: var(--off-black) !important;
  line-height: 1 !important;
  padding: 0 !important;
}


.select2-dropdown {
  border: 1.5px solid var(--secondary-color);
  border-radius: var(--radius-8);
  font-size: 0.88rem;
}

.select2-results__option--highlighted {
  background: var(--secondary-color) !important;
}

/* Order Review Heading */
#order_review_heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--off-black);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

/* Order Table */
.shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.shop_table thead tr {
  background: var(--secondary-color);
}

.shop_table thead th {
  color: var(--white);
  padding: 0.65rem 0.9rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: left;
}

.shop_table thead th.product-total {
  text-align: right;
}

.shop_table tbody td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.shop_table td.product-total {
  text-align: right;
  font-weight: 600;
  color: var(--secondary-color);
}

.shop_table tfoot tr {
  border-top: 1px solid #eee;
}

.shop_table tfoot th,
.shop_table tfoot td {
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}

.shop_table tfoot td {
  text-align: right;
}

.shop_table tr.order-total th,
.shop_table tr.order-total td {
  font-weight: 700;
  font-size: 0.95rem;
  background: #f9f9f9;
}

.shop_table tr.order-total td .woocommerce-Price-amount {
  color: var(--secondary-color);
}

.product-quantity {
  color: #999;
  font-weight: 400;
}

/* Payment Methods */
.wc_payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.wc_payment_method {
  background: var(--white);
  border: 1.5px solid #d0d0d0;
  border-radius: var(--radius-8);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wc_payment_method:has(input:checked) {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(6, 107, 103, 0.1);
}

.wc_payment_method label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--off-black);
  margin: 0;
}

.wc_payment_method label img {
  height: 22px;
  width: auto;
}

.payment_box.payment_method_razorpay {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

/* Privacy + Terms */
.woocommerce-privacy-policy-text {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-link {
  color: var(--secondary-color);
}

.woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
  cursor: pointer;
  line-height: 1.5;
}

.woocommerce-form__input-checkbox {
  width: 15px;
  height: 15px;
  accent-color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

/* Place Order Button */
.btn-place {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-8);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  margin-top: 0.75rem;
  letter-spacing: 0.2px;
}

.btn-place:hover {
  background: #055957;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 107, 103, 0.25);
}

.btn-place:active {
  transform: scale(0.99);
}

/* Trust Bar */
.trust-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}

.trust-item svg {
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row-first,
  .form-row-last {
    grid-column: 1 / -1;
  }

}

.woocommerce-checkout .header-logo-big {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-checkout .header-logo-big a {
  display: flex;
  align-items: center;
}

.woocommerce-checkout .header-logo-big img {
  height: 50px;
  width: auto;
}

/* ===== PREMIUM CHECKOUT UPGRADE ===== */

.woocommerce-checkout {
  background: linear-gradient(135deg, #f6f6f6, #eef7f6);
  /* min-height: 100vh; */
}

.woocommerce-checkout .common-sec {
  padding-top: 0 !important;
}


/* Layout spacing */
.woocommerce-checkout .row {
  max-width: 1100px;
  margin: auto;
}

/* LEFT SIDE CARD (Billing Section) */
.customer-info {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: var(--transition);
}

.customer-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Coupon box premium */
.custom-coupon-box {
  border: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* INPUT FIELDS PREMIUM */

.woocommerce form .form-row .input-text:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(55, 236, 129, 0.15);
}

/* RIGHT SIDE ORDER SUMMARY */
#order_review {
  position: sticky;
  top: 100px;
}

/* Order card */
.shop_table.woocommerce-checkout-review-order-table {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

/* Header premium */
.shop_table thead tr {
  background: linear-gradient(135deg, var(--secondary-color), #0a8f88);
}

/* Total highlight */
.shop_table tr.order-total td {
  font-size: 1.1rem;
}

/* PAYMENT BOX */
.wc_payment_method {
  border: 1px solid #eee;
  background: #fff;
}

.wc_payment_method:has(input:checked) {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(55, 236, 129, 0.15);
}

/* CTA BUTTON (MOST IMPORTANT) */
.btn-place {

  font-size: 1rem;
  padding: 1rem;
  border-radius: 12px;

}

.btn-place:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 35px rgba(55, 236, 129, 0.4);
}

/* TRUST BAR PREMIUM */
.trust-bar {
  margin-top: 1.2rem;
  gap: 1.5rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

/* HEADINGS IMPROVED */
.checkout-heading,
#order_review_heading {
  font-size: 1.1rem;
  border-bottom: none;
  position: relative;
}


/* LOGO AREA PREMIUM */
.woocommerce-checkout .header-logo-big img {
  height: 55px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 100% !important;
}


.card-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-billing-fields__field-wrapper {
  padding: 18px 20px;
}

.woocommerce-account-fields {
  /* padding-bottom: 20px; */
  padding: 0 18px 20px;
}

.woocommerce-checkout .footer {
  padding-top: 50px;
}

/* ─── PREMIUM COUPON UI ─── */
.coupon-row {
  display: flex;
  align-items: center;
  gap: 0 10px;
  flex-direction: row;
  padding: 13px 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-8);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
}

.coupon-row:hover {
  border-color: var(--primary-color);
}

.coupon-tag {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--glow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--secondary-color);
}

.coupon-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--off-black);
}

.coupon-text strong {
  color: var(--secondary-color);
}

.coupon-chevron {
  color: var(--muted);
  transition: transform .25s;
  flex-shrink: 0;
}

.coupon-row.open .coupon-chevron {
  transform: rotate(90deg);
}

.coupon-expand {
  display: none;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  gap: 8px;
}

.coupon-row.open .coupon-expand {
  display: flex;
}

.coupon-expand input {
  flex: 1;
  padding: 11px 13px;
  background: var(--input-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--off-black);
  outline: none;
  transition: var(--transition);
  min-width: 0;
}

.coupon-expand input:focus {
  border-color: var(--primary-color);
  background: var(--white);
}

.coupon-expand input::placeholder {
  color: #b0b8b0;
}

.coupon-expand button {
  padding: 11px 18px;
  background: var(--off-black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.coupon-expand button:hover {
  background: var(--secondary-color);
}

.coupon-message {
  width: 100%;
}

.coupon-message .woocommerce-message,
.coupon-message .woocommerce-error,
.coupon-message .woocommerce-info {
  margin: 10px 0 0 0 !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  border-radius: 6px;
}

.woocommerce-NoticeGroup-checkout {
  display: none;
}


/* ─── PREMIUM GLASSY ALERTS ─── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  background: rgba(255, 255, 255, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05) !important;
  padding: 16px 24px 16px 60px !important;
  margin: 20px 0 30px 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--off-black) !important;
  position: relative !important;
  overflow: hidden;
  list-style: none !important;
  line-height: 1.5 !important;
  animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base icon styling */
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Success Alert */
.woocommerce-message {
  border-left: 5px solid var(--primary-color) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(55, 236, 129, 0.1)) !important;
}

.woocommerce-message::before {
  content: "✓" !important;
  color: var(--secondary-color) !important;
}

/* Error Alert */
.woocommerce-error {
  border-left: 5px solid #ff4d4d !important;
  border-right: 5px solid #ff4d4d !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 77, 77, 0.08)) !important;
}

.woocommerce-error::before {
  content: "✕" !important;
  color: #ff4d4d !important;
  top: 16px;
  transform: none !important;
}

/* Info Alert */
.woocommerce-info {
  border-left: 5px solid var(--secondary-color) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(6, 107, 103, 0.08)) !important;
}

.woocommerce-info::before {
  content: "ℹ" !important;
  color: var(--secondary-color) !important;
}

/* Fix for nested lists in errors */
.woocommerce-error li {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 4px 0 !important;
}

/* Alert Buttons (e.g. View Cart) */
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  background: var(--off-black) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-left: 15px !important;
  float: right !important;
  border: none !important;
  transition: all 0.3s ease !important;
  margin-top: -3px !important;
}

.woocommerce-message .button:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Override existing inline coupon message styles for consistency */
.coupon-message .woocommerce-message,
.coupon-message .woocommerce-error,
.coupon-message .woocommerce-info {
  padding-left: 50px !important;
  margin: 10px 0 0 0 !important;
  font-size: 13px !important;
}

.coupon-message .woocommerce-message::before,
.coupon-message .woocommerce-error::before,
.coupon-message .woocommerce-info::before {
  width: 22px;
  height: 22px;
  font-size: 11px !important;
  left: 15px;
}

.woocommerce-checkout .woocommerce-notices-wrapper {
  max-width: 650px;
  margin: 0 auto;

}

.woocommerce-checkout .woocommerce-notices-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;

}

.woocommerce-checkout .woocommerce-notices-wrapper ul li .button {
  margin: 0 !important;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: rgba(255, 255, 255, 0.75) !important;
}

.woocommerce-privacy-policy-text p {
  color: var(--secondary-color);
}

.coupon-message .woocommerce-message,
.coupon-message .woocommerce-error,
.coupon-message .woocommerce-info {
  padding: 10px 10px 10px 30px !important;
  margin-top: 10px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 77, 77, 0.08)) !important;
  box-shadow: rgba(255, 77, 77, 0.05) 0px 6px 24px 0px, rgba(255, 77, 77, 0.08) 0px 0px 0px 1px !important;
  color: red !important;
  border: none !important;
}

.coupon-message .woocommerce-message::before,
.coupon-message .woocommerce-error::before,
.coupon-message .woocommerce-info::before {
  top: 9px;
  left: 5px;
}



/* ═══════════════════════════════════════════════════════════
   THANK YOU / ORDER RECEIVED PAGE — PREMIUM STYLES
   ═══════════════════════════════════════════════════════════ */

/* ─── Page Wrapper ─── */
.cw-thankyou-page {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  animation: cwFadeUp .55s ease-out both;
}

@keyframes cwFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Success Banner ─── */
.cw-order-success-banner {
  text-align: center;
  margin-bottom: 36px;
  padding: 48px 30px 40px;
  background: linear-gradient(135deg, rgba(55, 236, 129, 0.06) 0%, rgba(6, 107, 103, 0.04) 100%);
  border: 1.5px solid rgba(55, 236, 129, 0.18);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}

/* subtle animated glow behind the card */
.cw-order-success-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(55, 236, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Icon container */
.cw-success-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  z-index: 1;
}

.cw-success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--black);
  box-shadow:
    0 0 0 6px rgba(55, 236, 129, 0.15),
    0 8px 28px rgba(55, 236, 129, 0.22);
  animation: cwPopIn .45s cubic-bezier(.34, 1.56, .64, 1) .15s both;
}

@keyframes cwPopIn {
  from {
    opacity: 0;
    transform: scale(.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulsing ring behind icon */
.cw-success-ring {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  animation: cwPulseRing 2s ease-out infinite;
  pointer-events: none;
}

@keyframes cwPulseRing {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.cw-success-content {
  position: relative;
  z-index: 1;
}

.cw-success-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--off-black);
  margin-bottom: 8px;
  line-height: 1.25;
}

.cw-success-message {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─── Order Failed Banner ─── */
.cw-order-failed-banner {
  text-align: center;
  margin-bottom: 36px;
  padding: 48px 30px 40px;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.04) 0%, rgba(255, 77, 77, 0.02) 100%);
  border: 1.5px solid rgba(255, 77, 77, 0.18);
  border-radius: var(--radius-card);
  animation: cwFadeUp .55s ease-out both;
}

.cw-failed-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.cw-failed-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff4d4d;
  border-radius: 50%;
  color: var(--white);
  box-shadow:
    0 0 0 6px rgba(255, 77, 77, 0.12),
    0 8px 28px rgba(255, 77, 77, 0.18);
}

.cw-failed-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #cc0000;
  margin-bottom: 10px;
}

.cw-failed-message {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.cw-failed-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Order Overview / Receipt Card ─── */
.cw-order-overview-card,
.cw-order-receipt-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  margin-top: 32px;
  overflow: hidden;
  transition: box-shadow .3s ease;
}

.cw-order-overview-card:hover,
.cw-order-receipt-card:hover {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
}

/* Card header */
.cw-overview-header,
.cw-receipt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 15px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(55, 236, 129, 0.03) 0%, transparent 100%);
}

.cw-overview-header-icon,
.cw-receipt-header-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glow);
  border-radius: 9px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.cw-overview-header h3,
.cw-receipt-header .cw-receipt-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--off-black);
  margin: 0;
  line-height: 1.3;
}

/* Detail list */
.cw-order-overview-list,
.cw-receipt-details {
  list-style: none !important;

  margin: 0 !important;
}

.cw-overview-item,
.cw-receipt-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px !important;
  margin: 0px !important;
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}

.cw-overview-item:last-child,
.cw-receipt-item:last-child {
  border-bottom: none;
}

.cw-overview-item:hover,
.cw-receipt-item:hover {
  background: rgba(55, 236, 129, 0.025);
}

/* Label with icon */
.cw-overview-label,
.cw-receipt-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-right: 10px;
}

.cw-overview-label-icon,
.cw-receipt-label-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--input-bg);
  border-radius: 8px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

/* Value */
.cw-overview-item strong,
.cw-receipt-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--off-black);
}


.cw-overview-total,
.cw-receipt-total {
  font-size: 18px !important;
  color: var(--secondary-color) !important;
}

/* ─── WooCommerce Order Details Table (hook output) ─── */
.cw-thankyou-page .woocommerce-order-details {
  margin-top: 8px;
}

.cw-thankyou-page .woocommerce-order-details .woocommerce-order-details__title,
.cw-thankyou-page .woocommerce-customer-details .woocommerce-column__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--off-black);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 15px;
  border-bottom: 1px solid var(--border);
  margin: 0;
  background: linear-gradient(135deg, rgba(55, 236, 129, 0.03) 0%, transparent 100%);
}

.cw-thankyou-page .woocommerce-order-details,
.cw-thankyou-page .woocommerce-customer-details {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  overflow: hidden;
}

.cw-thankyou-page .woocommerce-table--order-details {
  width: 100%;
  border: none !important;
  border-collapse: collapse;
}

.cw-thankyou-page .woocommerce-table--order-details thead {
  display: none;
}

.cw-thankyou-page .woocommerce-table--order-details td,
.cw-thankyou-page .woocommerce-table--order-details th {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--off-black);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cw-thankyou-page .woocommerce-table--order-details .product-name {
  color: var(--off-black);
  font-weight: 600;
}

.cw-thankyou-page .woocommerce-table--order-details .product-name .product-quantity {
  color: var(--muted);
  font-weight: 500;
}

.cw-thankyou-page .woocommerce-table--order-details .product-total {
  text-align: right;
  font-weight: 700;
}

.cw-thankyou-page .woocommerce-table--order-details tfoot tr:last-child td,
.cw-thankyou-page .woocommerce-table--order-details tfoot tr:last-child th {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  border-bottom: none;
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(135deg, rgba(55, 236, 129, 0.04) 0%, rgba(6, 107, 103, 0.03) 100%);
}

.cw-thankyou-page .woocommerce-table--order-details tfoot th {
  text-align: left;
  font-weight: 600;
  color: var(--muted);
}

.cw-thankyou-page .woocommerce-table--order-details tfoot td {
  text-align: right;
}

/* ─── Customer Details Section ─── */
.cw-thankyou-page .woocommerce-customer-details address {
  padding: 20px 24px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: var(--off-black);
  border: none !important;
}

.cw-thankyou-page .woocommerce-customer-details address p {
  margin: 0;
  font-size: 14px;
}

.cw-thankyou-page .woocommerce-columns--addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cw-thankyou-page .woocommerce-columns--addresses .woocommerce-column {
  border-right: 1px solid var(--border);
}

.cw-thankyou-page .woocommerce-columns--addresses .woocommerce-column:last-child {
  border-right: none;
}

.cw-thankyou-page .woocommerce-columns--addresses .woocommerce-column__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 24px 12px !important;
}

#btn-razorpay,
#btn-razorpay-cancel {
  padding: 12px 24px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

#btn-razorpay {
  background-color: var(--secondary-color);
  color: var(--white);
}

#btn-razorpay:hover {
  background-color: var(--black);
  color: var(--white);
}

#btn-razorpay-cancel {
  background-color: rgb(255 0 0 / 70%);
  color: #fff;
  margin-left: 5px;
}

#btn-razorpay-cancel:hover {
  background-color: #d7191c;
  color: var(--white);
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .cw-thankyou-page {
    padding: 24px 16px 60px;
  }

  .cw-order-success-banner {
    padding: 36px 20px 32px;
    margin-bottom: 28px;
  }

  .cw-success-icon {
    width: 60px;
    height: 60px;
  }

  .cw-success-ring {
    width: 60px;
    height: 60px;
  }

  .cw-success-title {
    font-size: 22px;
  }

  .cw-success-message {
    font-size: 14px;
  }

  .cw-overview-item,
  .cw-receipt-item {
    padding: 14px 18px;
    gap: 6px;
    width: 100%;
    border-right: none !important;
  }

  .cw-overview-header,
  .cw-receipt-header {
    padding: 16px 18px 13px;
  }

  .cw-receipt-item.method strong {
    padding-left: 40px;
  }

  .cw-receipt-item.method {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-thankyou-page .woocommerce-columns--addresses {
    grid-template-columns: 1fr;
  }

  .cw-thankyou-page .woocommerce-columns--addresses .woocommerce-column {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cw-thankyou-page .woocommerce-columns--addresses .woocommerce-column:last-child {
    border-bottom: none;
  }

  .cw-thankyou-page .woocommerce-table--order-details td,
  .cw-thankyou-page .woocommerce-table--order-details th {
    padding: 12px 18px;
    font-size: 13px;
  }

  .cw-failed-actions {
    flex-direction: column;
  }

  .cw-failed-actions .btn {
    width: 100%;
  }

  #btn-razorpay,
  #btn-razorpay-cancel {
    padding: 8px 16px;
  }

  .cw-order-overview-card,
  .cw-order-receipt-card {
    margin-bottom: 30px;
  }
}