body{
margin: 0;
font-family:'Open Sans',sans-serif !important;
font-weight:400;
}

a {
  text-decoration: none;
}

h1,h2,h3{
font-family:'Playpen Sans',serif !important;
font-weight:700;
}

h4,h5,h6{
font-family:'Playpen Sans',sans-serif !important;
font-weight:600;
}

button{
font-family:'Playpen Sans',sans-serif !important;
/* border-radius: 0 !important; */
}

/* Header */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif; */
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  min-height: 100vh;
}

ul {
  margin: 0;
}

/* Astra Special */
#primary {
  margin: 0 !important;
}

/* button:hover{
  border: none;
} */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.15); /* light transparency */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* When Scrolled */
.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */

.left-nav {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10b981, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.025em;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.nav-desktop li,
.nav-mobile ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-desktop li a,
.nav-mobile ul li a {
  color: #475569;
}

.nav-desktop li:hover {
  color: #0f172a;
  background: #a9cfcc85;
}

.nav-desktop .current-menu-item {
  color: #0f172a;
  background: #a9cfcc85;
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

/* Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Live Indicator */
.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.live-dot::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #34d399;
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #10b981;
  border-radius: 50%;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.live-text {
  font-size: 12px;
  font-weight: 600;
  color: #047857;
}

/* Notification Bell */
.notification-btn {
  position: relative;
  padding: 8px;
  background: transparent;
  border: none;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notification-btn:hover {
  color: #334155;
  background: #f1f5f9;
}

.notification-btn svg {
  width: 20px;
  height: 20px;
}

.notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: #475569;
}

.btn-ghost:hover {
  color: white;
  background: #f1f5f9;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #0d9488);
  border: none;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669, #0f766e);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  padding: 8px;
  background: transparent;
  border: none;
  color: #475569;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  color: #0f172a;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.nav-mobile {
  /* padding: 16px 0; */
  border-top: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.nav-mobile.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 400px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.nav-mobile ul li {
  padding: 12px;
  font-size: 16px;
}

.nav-mobile .nav-link {
  padding: 12px;
  font-size: 16px;
}

.nav-mobile .nav-link svg {
  width: 20px;
  height: 20px;
}

.nav-mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.nav-mobile-buttons .btn {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #334155;
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop,
  .header-right .live-indicator,
  .header-right .notification-btn,
  .profile-name {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Market Ticker */
.market-ticker {
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}

.ticker-inner {
  display: inline-block;
  padding: 8px 0;
  animation: ticker-scroll 25s linear infinite;
}

.ticker-inner span {
  margin-right: 40px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ================= PROFILE DROPDOWN ================= */

.profile-dropdown {
  position: relative;
}

/* .profile-dropdown:hover {
    background: #f1f5f9 !important;
} */

.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff57;
  box-shadow: 0px 1px 16px 0px #00000033;
  /* border: none; */
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.profile-btn:hover {
  background: #f1f5f9 !important;
  /* box-shadow: 2px 2px 2px 2px #00000078; */
}

.profile-btn img {
  border-radius: 50%;
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.profile-arrow {
  font-size: 12px;
  color: #64748b;
}

.profile-menu {
  position: absolute;
  right: 0;
  top: 45px;
  width: 160px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 100;
}

.profile-menu a {
  padding: 10px 16px;
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  transition: 0.2s ease;
}

.profile-menu a:hover {
  background: #f8fafc;
}

.profile-menu.active {
  display: flex;
}

.logo {
  width: 20%;
}

.hide_on_desktop {
  display: none;
}
.container {
  width: 90%;
  margin: 0 auto;
}
/* Home Page */

.offer-btn .elementor-button {
  padding: 0;
}


/* Partner Brand Slider */
.pb-marquee-wrapper{
    overflow:hidden;
    width:100%;
    padding:60px 0;
}

.pb-marquee-track{
    display:flex;
    width:max-content;
    animation: pb-marquee-scroll 200s linear infinite;
}

.pb-marquee-item{
    flex:0 0 auto;
    margin-right: 30px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pb-marquee-item img{
    max-height:110px;
    width:auto;
    display:block;
}

/* animation */
@keyframes pb-marquee-scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/* .pb-marquee-wrapper{
    overflow:hidden;
    padding:60px 0;
    width:100%;
}

.partner-brands-swiper .swiper-wrapper{
    transition-timing-function: linear !important;
}

.pb-marquee-item{
    width:auto !important;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pb-marquee-item img{
    max-height:110px;
    width:auto;
    display:block;
}
.partner-brands-swiper {
    touch-action: pan-y;
} */





/* Footer Section */

.tahefobu-nav-menu,
.tahefobu-nav-menu ul,
.tahefobu-mobile-nav-menu,
.tahefobu-mobile-nav-menu ul {
  display: flex;
  flex-direction: column;
}

/* About US */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    padding: 4rem 0 0 0;
  }
}
.hero-content {
    padding-top: 4rem;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}
.hero-content h1 .highlight {
  color: #22c55e;
}
.hero-content p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-image-wrapper {
  position: relative;
  /* max-width: 28rem; */
  margin: 0 auto;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(167, 243, 208, 0.3),
    rgba(165, 243, 252, 0.3)
  );
  border-radius: 50%;
  filter: blur(32px);
  transform: scale(0.9);
}
.hero-image-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.hero-image-outer {
  position: absolute;
  inset: 1rem;
  background: linear-gradient(135deg, #d1fae5, #cffafe);
  border-radius: 50%;
}
.hero-image-inner {
  position: absolute;
  inset: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-badge {
  position: absolute;
  top: 8rem;
  right: -1rem;
  background: white;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;

  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #d1fae5;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-badge-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #059669;
}
.floating-badge-text p {
  margin-bottom: 0;
}
.floating-badge-text p:first-child {
  font-size: 0.75rem;
  color: #6b7280;
}
.floating-badge-text p:last-child {
  font-weight: 700;
  color: #059669;
}

/* KeyFrames */

@keyframes floatBadge {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-card {
  text-align: center;
  padding: 1.5rem;
}
.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  color: #4b5563;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Story Section */
.story-section {
  padding: 4rem 0;
}
.story-card {
  padding: 2rem;
}
@media (min-width: 768px) {
  .story-card {
    padding: 3rem;
  }
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.story-label {
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.story-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.story-text {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.feature-icon {
  width: 2rem;
  height: 2rem;
  background: #d1fae5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: #059669;
}
.feature-text {
  color: #374151;
  font-weight: 500;
}
.story-image-wrapper {
  position: relative;
}
.story-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(167, 243, 208, 0.5),
    rgba(165, 243, 252, 0.5)
  );
  border-radius: 1.5rem;
  filter: blur(16px);
}
.story-image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  width: 100%;
  object-fit: cover;
}

/* Values Section */
.values-section {
  padding: 4rem 0;
}
.values-header {
  text-align: center;
  margin-bottom: 3rem;
}
.values-label {
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.values-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0.5rem;
}
.values-title .highlight {
  color: #22c55e;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.value-card {
  padding: 1.5rem;
}
.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #34d399, #22c55e);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.3);
  transition: transform 0.3s;
}
.value-card:hover .value-icon {
  transform: scale(1.1);
}
.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: white;
}
.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.value-description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}
.cta-card {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-card {
    padding: 3rem;
  }
}
.cta-circle-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cta-circle-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15rem;
  height: 15rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(25%, 25%);
}
.cta-content {
  position: relative;
  z-index: 10;
}
.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}
.cta-text {
  color: #bbf7d0;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Single Page */
/* Hero Section */
.post-template-default {
  background: linear-gradient(
    135deg,
    #fff1f2 0%,
    #ffffff 50%,
    #f0f9ff 100%
  ) !important;
}
.single-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .single-hero {
    height: 500px;
  }
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 10;
}

.single-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(244, 63, 94, 0.1) 0%,
    rgba(14, 165, 233, 0.1) 100%
  );
  z-index: 10;
}

.single-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .single-hero-content {
    padding: 3rem;
  }
}

.single-hero-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.single-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.category-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.single-hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 100px !important;
}

@media (min-width: 768px) {
  .single-hero-title {
    font-size: 3rem;
  }
}

.single-hero-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.single-hero-wave {
  width: 100%;
  display: block;
}

/* Main Content */
.single-main-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 1024px) {
  .single-main-content {
    padding: 3rem 2rem;
  }
}

.single-content-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .single-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #475569;
}

.back-link:hover .icon {
  transform: translateX(-4px);
}

.back-link .icon {
  transition: transform 0.2s;
}

/* Article Card */
.article-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(203, 213, 225, 0.5);
  border: 1px solid white;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .article-card {
    padding: 3rem;
  }
}

.article-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.article-content p:last-child {
  margin-bottom: 0;
}

/* Action Bar */
.action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
}

.action-left,
.action-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.single-comment-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.action-btn:hover {
  background: #fef2f2;
  color: #f43f5e;
}

.action-btn.comment-btn:hover {
  background: #f0f9ff;
  color: #0ea5e9;
}

.icon-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.2s;
}

.icon-btn:hover {
  background: #fef3c7;
  color: #f59e0b;
}

.share-btn:hover {
  background: #f5f3ff;
  color: #8b5cf6;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Author Card */
.author-card {
  background: linear-gradient(135deg, white 0%, rgba(255, 241, 242, 0.5) 100%);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(203, 213, 225, 3.3);
  border: 1px solid white;
  text-align: center;
}

.author-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

.author-role {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.author-bio {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
  line-height: 1.6;
}

.profile-btn:hover {
  background: #f8fafc;
}

/* Categories Card */
.categories-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(203, 213, 225, 0.3);
  border: 1px solid white;
}

.categories-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  color: #64748b;
  transition: all 0.2s;
}

.category-item:hover {
  background: linear-gradient(90deg, #fff1f2 0%, #f0f9ff 100%);
  color: #1e293b;
}

.category-item:hover .chevron {
  transform: translateX(4px);
  color: #64748b;
}

.chevron {
  transition: transform 0.2s;
  color: #94a3b8;
}

/* Related Posts Section */
.related-section {
  /* padding: 4rem 0; */
  background: linear-gradient(
    135deg,
    rgba(240, 249, 255, 0.5) 0%,
    white 50%,
    rgba(255, 241, 242, 0.5) 100%
  );
  margin-bottom: 2rem;
}

.related-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .related-container {
    padding: 0 2rem;
  }
}

.related-title {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(90deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  gap: 2rem;
}

.single-post .custom-blog-grid {
  padding: 0;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  display: block;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(203, 213, 225, 0.5);
  border: 1px solid white;
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(203, 213, 225, 0.7);
}

.related-image-container {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-card:hover .related-image {
  transform: scale(1.05);
}

.related-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.related-add-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0ea5e9;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.related-card:hover .related-add-btn {
  opacity: 1;
  transform: translateY(0);
}

.related-content {
  padding: 1.5rem;
}

.related-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.related-card:hover .related-post-title {
  color: #0ea5e9;
}

.related-excerpt {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-author {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1rem;
}

/* Comments */

/* Comment Section */
.comment-section {
  position: relative;
  margin-top: 3rem;
}

/* Decorative background blurs */
.comment-section::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.2),
    rgba(249, 115, 22, 0.2)
  );
  border-radius: 50%;
  filter: blur(2rem);
  pointer-events: none;
}

.comment-section::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border-radius: 50%;
  filter: blur(2rem);
  pointer-events: none;
}

.comment-section-inner {
  position: relative;
}

/* Section Header */
.comments-section-header {
  display: flex;
  /* align-items: center; */
  gap: 1rem;
  margin-bottom: 2rem;
}

.comments-header-icon-wrapper {
  position: relative;
}

.comments-header-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
}

.comments-header-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.comment-count-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
  ring: 2px solid white;
  box-shadow: 0 0 0 2px white;
}

.comments-header-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.comments-header-text .comments-header-subtitle {
  color: #64748b;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comments-header-text .comments-header-subtitle svg {
  width: 1rem;
  height: 1rem;
  color: #f59e0b;
}

.comment-reply-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Comments List */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual Comment */
.comment {
  position: relative;
  transition: transform 0.3s ease;
}

.comment:hover {
  transform: scale(1.02);
}

/* Connecting line */
.comment:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  top: 4.5rem;
  width: 2px;
  height: calc(100% - 3rem);
  background: linear-gradient(to bottom, #e2e8f0, transparent);
}

.comment-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 0.8rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.comment:hover .comment-card {
  box-shadow: 0 20px 40px -10px rgba(203, 213, 225, 0.5);
  border-color: rgba(251, 191, 36, 0.3);
}

/* Quote decoration */
.quote-decoration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.07;
  transition: opacity 0.3s ease;
}

.comment:hover .quote-decoration {
  opacity: 0.12;
}

.quote-decoration svg {
  width: 4rem;
  height: 4rem;
  color: #d97706;
}

.comment-inner {
  display: flex;
  gap: 1rem;
}

/* Avatar */
.avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.avatar {
  border-radius: 50%;
}

.comment-number {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #334155, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 0 2px white;
}

/* Comment Content */
.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 600;
  color: #1e293b;
}

.comment-separator {
  margin: 0 0.5rem;
  color: #cbd5e1;
}

.comment-date {
  font-size: 0.875rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.comment-date svg {
  width: 0.75rem;
  height: 0.75rem;
}

.comment-text {
  color: #64748b;
  line-height: 1.7;
  padding-right: 2rem;
}

.comment-text p {
  margin-bottom: 0;
}

/* Action buttons */
.comment-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comment:hover .comment-actions {
  opacity: 1;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.action-btn svg {
  width: 1rem;
  height: 1rem;
}

.action-btn.like:hover {
  color: #d97706;
}

.action-btn.reply:hover {
  color: #0ea5e9;
}

/* Comment Form */
.comment-form-wrapper {
  /* margin-top: 2rem; */
  position: relative;
}

.comment-respond {
  padding: 0 !important;
}

.form-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 191, 36, 0.1),
    white,
    rgba(56, 189, 248, 0.1)
  );
  border-radius: 1.5rem;
  filter: blur(1rem);
}

.comment-form {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 40px -10px rgba(203, 213, 225, 0.3);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.form-user-info p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  margin: 0;
}

.form-user-info p span {
  color: #d97706;
}

.form-user-info small {
  font-size: 0.75rem;
  color: #94a3b8;
}

.textarea-wrapper {
  position: relative;
}

.comments-pagination {
  margin-top: 20px;
  text-align: center;
}

/* ===============================
   CLEAN COMMENT TREE STYLE
================================= */

/* Base comment wrapper */
.comment {
  position: relative;
  /* margin-bottom: 30px; */
}

/* Parent comment */
.comment-card.depth-1 {
  margin-left: 0;
}

/* First reply */
.comment-card.depth-2 {
  margin-left: 60px;
  background: #f8fafc;
  border-left: 3px solid #0ea5e9;
}

/* Second reply */
.comment-card.depth-3 {
  margin-left: 100px;
  background: #f1f5f9;
  border-left: 3px solid #6366f1;
}

/* Slightly reduce reply size */
.comment-card.depth-2,
.comment-card.depth-3 {
  transform: scale(0.98);
}

/* Subtle vertical guide line */
/* .comment.depth-2::before,
.comment.depth-3::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: #e2e8f0;
} */

.comments-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border-radius: 6px;
  background: #f1f5f9;
  text-decoration: none;
}

.comments-pagination .current {
  background: #0ea5e9;
  color: #fff;
}

.comment-textarea {
  width: 100%;
  height: 8rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.8);
  border: 2px solid transparent;
  color: #475569;
  font-family: inherit;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: all 0.3s ease;
}

.comment-textarea::placeholder {
  color: #94a3b8;
}

.comment-textarea:focus {
  border-color: #fcd34d;
  background: white;
}

.char-count {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.form-footer p {
  font-size: 0.75rem;
  color: #94a3b8;
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}

.submit-btn:hover {
  box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.4);
  transform: scale(1.02);
}

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

.submit-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.submit-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Contact US */

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr 1fr; }
    }
    .contact-form-card { padding: 2rem; }
    .contact-form-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .contact-form-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1f2937;
    }
    .contact-info-cards {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .contact-info-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
    }
    .contact-info-content h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: #1f2937;
    }
    .contact-info-content p {
      font-size: 0.875rem;
      color: #6b7280;
      margin-top: 0.25rem;
      margin-bottom: 0;
    }
    .contact-info-content a,
    .contact-info-content .value {
      color: #059669;
      font-weight: 500;
      margin-top: 0.5rem;
      display: inline-block;
      text-decoration: none;
    }
    .contact-info-content a:hover { color: #047857; }

    /* Contact & About page specific styles */

    .pulse-dot {
      width: 0.5rem;
      height: 0.5rem;
      background: white;
      border-radius: 50%;
      animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Page Header */
/* Page Background */
.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #ecfdf5 0%, #ecfeff 50%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */
.decorative-blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: linear-gradient(135deg, rgba(167, 243, 208, 0.3), rgba(165, 243, 252, 0.3));
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.decorative-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, rgba(254, 240, 138, 0.2), rgba(254, 215, 170, 0.2));
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

/* Dot Patterns */
.dot-pattern {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  opacity: 0.4;
}

.dot-pattern.left {
  left: 2rem;
  top: 25%;
}

.dot-pattern.right {
  right: 2rem;
  bottom: 25%;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: #2dd4bf;
  border-radius: 50%;
}

.dot-pattern.right .dot {
  background-color: #34d399;
}

.contact-page-header {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 2rem 2rem;
  text-align: center;
}

.contact-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
      line-height: 80px !important;
}

@media (min-width: 768px) {
  .contact-page-title {
    font-size: 3.75rem;
  }
}

.contact-page-title .highlight {
  color: #22c55e;
}

.contact-page-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 25px 50px -12px rgba(52, 211, 153, 0.25);
  transform: translateY(-4px);
}

/* Buttons */
.about-btn-primary, .contact-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, #34d399, #22c55e);
  color: white;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}

.about-btn-primary:hover, .contact-btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(52, 211, 153, 0.4);
  transform: translateY(-2px);
  color: white;
}

.about-btn-primary.full-width, .contact-btn-primary.full-width {
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  color: white;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(96, 165, 250, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  box-shadow: 0 20px 25px -5px rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #059669;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-white:hover {
  color: #059669;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Icon Boxes */
.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box.green {
  background: linear-gradient(135deg, #34d399, #22c55e);
  box-shadow: 0 10px 15px -3px rgba(52, 211, 153, 0.3);
}

.icon-box.blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  box-shadow: 0 10px 15px -3px rgba(96, 165, 250, 0.3);
}

.icon-box.orange {
  background: linear-gradient(135deg, #fb923c, #ef4444);
  box-shadow: 0 10px 15px -3px rgba(251, 146, 60, 0.3);
}

.icon-box.purple {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  box-shadow: 0 10px 15px -3px rgba(167, 139, 250, 0.3);
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  stroke: white;
  fill: none;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #34d399;
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

/* Grid Layouts */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Content Container */
.about-content-container, .contact-content-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

/* Login Register Page */

.auth-page{
font-family:'Open Sans',sans-serif;
background:linear-gradient(135deg,#020617,#0f172a);
color:white;
min-height:100dvh;
display:flex;
align-items:center;
justify-content:center;
}

.auth-container{
width:1000px;
/* height:600px; */
display:flex;
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
border-radius:12px;
overflow:hidden;
backdrop-filter:blur(10px);
}

.auth-left{
width:50%;
padding:60px;
display:flex;
flex-direction:column;
justify-content:center;
}

.auth-left h1{
font-family:'Playfair Display';
font-size:38px;
margin-bottom:20px;
color: #ffffff;
}

.auth-left span{
color:#00ff9d;
}

.auth-left p{
opacity:.8;
line-height:1.6;
margin-bottom:40px;
}

.market-stats{
display:flex;
gap:20px;
}

.market-stats div{
background:rgba(255,255,255,0.05);
padding:10px 15px;
border-radius:6px;
font-size:14px;
}

.market-stats span{
color:#00ff9d;
margin-left:6px;
}

.auth-right{
width:50%;
padding:50px;
display:flex;
flex-direction:column;
justify-content:center;
position:relative;
}

.form-tabs{
display:flex;
margin-bottom:30px;
gap: 20px;
}

.tab-btn{
flex:1;
padding:12px;
background:none;
border:none;
color:white;
font-size:16px;
cursor:pointer;
border-bottom:2px solid transparent;
}

.tab-btn.active{
border-color:#00ff9d;
}

.tab-btn:hover {
  transform: translateY(-3px);
  color: #fff !important;
}

.tab-btn:focus {
  color: #fff;
}

.form{
opacity:0;
transform:translateY(20px);
transition:.4s;
position:absolute;
width:100%;
flex-direction: column;
pointer-events:none;
}

.form.active{
display:flex;
opacity:1;
transform:translateY(0);
position:relative;
pointer-events:auto;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.form input{
background:rgba(255,255,255,0.05) !important;
border:1px solid rgba(255,255,255,0.08) !important;
}

.full-width{
grid-column:1 / -1;
}

.form-grid input,
.form-grid select{
width:100%;
}

@media (max-width:768px){

.form-grid{
grid-template-columns:1fr;
}

.full-width{
grid-column:auto;
}

}

.auth-right .form h2{
margin-bottom:25px;
color: #ffffff;
}

.form input{
background:rgba(255,255,255,0.05) !important;
border:1px solid rgba(255,255,255,0.08) !important;
padding:12px !important;
margin-bottom:15px;
border-radius:6px !important;
color:white !important;
}

.form input:focus{
outline:none;
border-color:#00ff9d;
}

.form-field{
background:rgba(255,255,255,0.05) !important;
border:1px solid rgba(255,255,255,0.08) !important;
padding: 10px !important;
margin-bottom:15px;
border-radius:6px !important;
color:white !important;
width:100%;
}

select.form-field{
background:rgba(255,255,255,0.05) !important;
border:1px solid rgba(255,255,255,0.08) !important;
color:white !important;
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
}

select.form-field option{
background:#0f172a;
color:white;
}

select.form-field{
background:rgba(255,255,255,0.05) 
url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>") 
no-repeat right 12px center;
background-size:16px;
padding-right:35px !important;
}

.form-field:focus{
outline:none;
border-color:#00ff9d;
}

.form-options{
display:flex;
justify-content:space-between;
font-size:13px;
margin-bottom:20px;
}

.form-options a{
color:#00ff9d;
text-decoration:none;
}

.auth-btn{
background:linear-gradient(90deg,#00ff9d,#00d4ff);
box-shadow:0 0 15px rgba(0,255,157,.4);
border:none;
padding:12px;
border-radius:6px !important;
font-weight:600;
cursor:pointer;
color:black;
transition:.3s;
}

.auth-btn:hover{
transform:translateY(-2px);
}

.terms-text{
  font-size: 14px;
  text-align: center;
  padding: 10px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
    .auth-page{
    /* align-items:flex-start; */
    padding:20px 0;
    }
    .auth-container{
      flex-direction: column;
      background: none;
      border: none;
      /* min-height: 600px; */
    }
    .auth-left{
      width: 100%;
      padding: 20px 40px;
    }
    .auth-left p{
      display: none;
    }
    .auth-left h1{
      text-align: center;
    }
    .auth-right{
      width: 100%;
      padding:  20px 40px;
    }
    .market-stats{
      display: none;
    }
}
/* OTP Verification */
.page-template-template-otp_verify .auth-right h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.otp-form .auth-right p {
  text-align: center;
  color: #fff;
}

.otp-form input {
    margin-bottom: 20px;
}

/* newsletter */
.news-submit-btn{
  width: 100%;
}