/*==================================================
                MyPresento Theme
==================================================*/

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #0f172a;

  --text: #64748b;

  --white: #ffffff;

  --border: #e2e8f0;

  --bg: #f1f7ff;

  --radius: 18px;

  --transition: 0.35s;
}

/*==================================================
RESET
==================================================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  color: var(--secondary);

  background: #fff;

  overflow-x: hidden;

  padding-top: 95px;
}

img {
  max-width: 100%;

  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

/*==================================================
HEADER
==================================================*/

.header-area {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);

  transition: 0.35s;
}

.header-area.scrolled {
  background: #fff;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 18px 0;
}

.logo {
  height: 56px;

  width: auto;
}

.navbar-nav {
  gap: 12px;
}

.nav-link {
  color: #334155;

  font-size: 15px;

  font-weight: 500;

  padding: 10px 14px !important;

  transition: 0.3s;

  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 14px;

  bottom: 6px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.btn-whatsapp {
  padding: 14px 24px;

  border-radius: 50px;

  background: linear-gradient(135deg, #25d366, #1fbf5b);

  color: #fff;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 10px;

  transition: 0.35s;

  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  color: #fff;

  transform: translateY(-3px);
}

.navbar-toggler {
  border: none;

  box-shadow: none !important;
}

/*=====================================================
                    HERO SECTION
=====================================================*/

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  top: -220px;
  right: -180px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  left: -120px;
  bottom: -120px;
}

.hero-shape-2 {
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.08);
  right: 120px;
  top: 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/*=====================================================
                    LEFT CONTENT
=====================================================*/

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #eef4ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  color: #0f172a;
  margin-bottom: 25px;
}

.hero-title span {
  display: block;
  color: #2563eb;
}

.hero-text {
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
}

.hero-buttons .btn-primary {
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.hero-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: #22c55e;
  font-size: 18px;
}

.feature-item span {
  color: #475569;
  font-weight: 500;
}

/*=====================================================
                    PREVIEW
=====================================================*/

.hero-preview {
  position: relative;
  max-width: 760px;
  margin: auto;
}

.browser-window {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.08),
    0 50px 120px rgba(15, 23, 42, 0.12);
  transition: 0.4s;
}

.browser-window:hover {
  transform: translateY(-8px);
}

.browser-header {
  height: 56px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red {
  background: #ff5f57;
}

.yellow {
  background: #febc2e;
}

.green {
  background: #28c840;
}

.browser-url {
  background: white;
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 13px;
  color: #64748b;
}

.browser-body img {
  width: 100%;
  display: block;
}

/*=====================================================
                FLOATING CARDS
=====================================================*/

.floating-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  z-index: 5;
}

.floating-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef4ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.floating-card strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
}

.floating-card small {
  color: #64748b;
}

.card-top {
  top: -20px;
  left: -35px;
}

.card-right {
  right: -35px;
  top: 140px;
}

.card-bottom {
  bottom: -25px;
  left: 80px;
}

/*=====================================================
                    STATS
=====================================================*/

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.stat-box h3 {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-box p {
  color: #64748b;
  margin: 0;
}

/*=====================================================
                SCROLL ICON
=====================================================*/

.scroll-down {
  margin-top: 45px;
}

.scroll-down a {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/*=====================================================
                RESPONSIVE
=====================================================*/

@media (max-width: 991px) {
  .hero {
    padding: 70px 0;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .floating-card {
    display: none;
  }

  .hero-preview {
    margin-top: 50px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .browser-header {
    padding: 0 12px;
  }

  .browser-url {
    display: none;
  }
}

/*==================================================
BUTTON EFFECTS
==================================================*/

.btn-primary-custom {
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
}

.btn-primary-custom:hover {
  box-shadow: 0 28px 55px rgba(37, 99, 235, 0.35);
}

.btn-outline-custom:hover {
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18);
}

/*==================================================
FLOAT ANIMATION
==================================================*/

@keyframes floatLaptop {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*==================================================
TABLET
==================================================*/

@media (max-width: 1199px) {
  .hero-laptop {
    width: 620px;

    left: 60px;

    bottom: -70px;
  }

  .hero-content h1 {
    font-size: 52px;
  }
}

/*==================================================
991px
==================================================*/

@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-form {
    margin-top: 50px;
  }

  .hero-laptop {
    position: relative;

    width: 100%;

    left: auto;

    bottom: auto;

    margin-top: 50px;

    animation: none;
  }
}

/*==================================================
576px
==================================================*/

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;

    text-align: center;
  }

  .hero-form {
    padding: 25px;
  }

  .hero-trust {
    gap: 15px;

    font-size: 14px;
  }
}
/*=========================================
STATISTICS
=========================================*/

.hero-stats {
  display: flex;

  gap: 20px;

  margin-top: 45px;

  flex-wrap: wrap;
}

.stat-card {
  background: #fff;

  padding: 22px;

  border-radius: 18px;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);

  min-width: 180px;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 34px;

  font-weight: 700;

  color: #2563eb;

  margin-bottom: 5px;
}

.stat-card span {
  color: #64748b;

  font-size: 14px;
}

/*=========================================
TRUSTED SECTION
=========================================*/

.trusted-section {
  padding: 55px 0;

  background: #fff;
}

.trusted-section p {
  text-align: center;

  font-weight: 600;

  color: #64748b;

  margin-bottom: 35px;
}

.trusted-logos {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 60px;

  flex-wrap: wrap;

  opacity: 0.7;
}

.trusted-logos img {
  height: 40px;

  transition: 0.3s;
}

.trusted-logos img:hover {
  opacity: 1;

  transform: scale(1.08);
}

/*=========================================
FLOATING BADGES
=========================================*/

.floating-badge {
  position: absolute;

  top: 50px;

  left: 55%;

  background: #2563eb;
  color: white;

  padding: 14px 20px;

  border-radius: 50px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

  font-weight: 600;

  display: flex;

  gap: 10px;

  align-items: center;

  animation: floatLaptop 5s infinite;

  z-index: 30;
}

.badge-two {
  top: auto;

  bottom: 25px;

  left: 64%;
}

/*=========================================
SCROLL INDICATOR
=========================================*/

.scroll-down {
  position: absolute;

  left: 50%;

  bottom: 35px;

  transform: translateX(-50%);

  z-index: 20;
}

.scroll-down a {
  width: 52px;

  height: 52px;

  background: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  color: #2563eb;

  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
  }

  .floating-badge {
    display: none;
  }

  .trusted-logos {
    gap: 25px;
  }
}

/*=====================================
WHO WE HELP
=====================================*/

.audience-section {
  padding: 120px 0;

  background: #f1f7ff;
}

.section-title {
  max-width: 720px;

  margin: auto auto 70px;
}

.section-title span {
  display: inline-block;

  background: #eaf2ff;

  color: #2563eb;

  padding: 10px 20px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 48px;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;

  color: #64748b;

  line-height: 1.8;
}

.audience-card {
  background: #fff;

  border-radius: 24px;

  padding: 40px 30px;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);

  border: 1px solid #eef2f7;
}

.audience-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.audience-card .icon {
  width: 72px;

  height: 72px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2563eb, #4f8df7);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  margin-bottom: 28px;
}

.audience-card h4 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 15px;
}

.audience-card p {
  color: #64748b;

  line-height: 1.8;
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .audience-section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 16px;
  }
}
.hidden {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.7s ease;
}

.show {
  opacity: 1;

  transform: translateY(0);
}
.audience-section {
  position: relative;
  overflow: hidden;
  background: #fffff;
}

.audience-section::before {
  content: "M";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 1000px;

  font-weight: 900;

  font-family: "Poppins", sans-serif;

  color: rgba(37, 99, 235, 0.03);

  line-height: 1;

  pointer-events: none;

  user-select: none;

  z-index: 0;
}

.audience-section .container {
  position: relative;
  z-index: 2;
}
/*=========================================
WHY SECTION
=========================================*/

.why-section {
  padding: 120px 0;

  background: #fff;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;

  border-radius: 30px;

  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

.why-list {
  margin: 40px 0;
}

.why-item {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  margin-bottom: 30px;
}

.why-item i {
  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: #2563eb;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  flex-shrink: 0;
}

.why-item h5 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 8px;
}

.why-item p {
  color: #64748b;

  line-height: 1.8;
}

.why-item:hover {
  transform: translateX(10px);

  transition: 0.35s;
}

@media (max-width: 991px) {
  .why-section {
    text-align: center;
  }

  .why-item {
    text-align: left;
  }

  .why-image {
    margin-bottom: 50px;
  }
}
/*=========================================
FEATURES
=========================================*/

.features-section {
  padding: 120px 0;

  background: #ffffff;
  position: relative;
}

.feature-card {
  background: #fcfdff;

  padding: 40px 30px;

  border-radius: 24px;

  height: 100%;

  border: 1px solid #edf2f7;

  transition: 0.4s;

  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);

  position: relative;

  overflow: hidden;
}

.feature-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background: #2563eb;

  transform: scaleX(0);

  transition: 0.4s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  width: 72px;

  height: 72px;

  border-radius: 20px;

  background: linear-gradient(135deg, #2563eb, #4f8df7);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 30px;

  margin-bottom: 30px;

  transition: 0.4s;
}

.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.08);
}

.feature-card h4 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 15px;
}

.feature-card p {
  color: #64748b;

  line-height: 1.8;
}

@media (max-width: 991px) {
  .features-section {
    padding: 80px 0;
  }
}
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.audience-section {
  background: #ffffff;
}

.why-section {
  background: #f1f7ff;
}

.features-section {
  background: #ffffff;
}

.process-section {
  background: #f1f7ff;
}

.templates-section {
  background: #ffffff;
}

.stats-section {
  background: linear-gradient(135deg, #2563eb, #4f8df7);
  color: #fff;
}

.pricing-section {
  background: #ffffff;
}

.testimonial-section {
  background: #f1f7ff;
}

.faq-section {
  background: #ffffff;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}

.footer {
  background: #0f172a;
  color: #fff;
}
.features-section {
  background: #fff;
  padding: 110px 0;
}

.badge-title {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #eef5ff;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
}

.section-title h2 span {
  color: #2563eb;
}

.section-title p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #64748b;
  line-height: 1.8;
}

.feature-card {
  background: #f1f7ff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.feature-large {
  min-height: 320px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
}

.icon-box {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #4f8df7);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #111827;
}

.feature-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

.feature-shape {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  border-radius: 50%;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 992px) {
  .section-title h2 {
    font-size: 36px;
  }

  .feature-card {
    padding: 30px;
  }

  .feature-card h3 {
    font-size: 24px;
  }
}
.process-section {
  background: #f1f7ff;
  padding: 110px 0;
}

.process-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.process-card i {
  font-size: 52px;
  color: #2563eb;
  margin-bottom: 25px;
}

.process-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.process-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}
/*=========================================
    PREMIUM TEMPLATES SECTION
=========================================*/

.templates-section {
  padding: 110px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.templates-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 70%);
  top: -180px;
  right: -180px;
  pointer-events: none;
}

/*==============================
Section Heading
==============================*/

.section-heading {
  max-width: 760px;
  margin: auto;
}

.section-heading h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 20px 0;
}

.section-heading h2 span {
  color: #2563eb;
}

.section-heading p {
  color: #64748b;
  line-height: 1.9;
  font-size: 17px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px;

  border-radius: 50px;

  background: #eef5ff;

  color: #2563eb;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 1px;
}

.section-badge i {
  font-size: 14px;
}

/*==============================
Template Card
==============================*/

.template-card {
  background: #ffffff;

  border-radius: 22px;

  overflow: hidden;

  transition: 0.45s;

  border: 1px solid #edf2f7;

  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);

  position: relative;
}

.template-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

/*==============================
Image
==============================*/

.template-image {
  position: relative;

  overflow: hidden;

  background: #f8fafc;
}

.template-image a {
  margin-top: 10px !important;
}

.template-image img {
  width: 100%;
  height: 300px;
  display: block;

  transition: 0.8s ease;
}

.template-card:hover img {
  transform: scale(1.08);
}

/*==============================
Overlay
==============================*/

.template-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  gap: 15px;

  background: linear-gradient(rgba(15, 23, 42, 0.15), rgba(37, 99, 235, 0.75));

  opacity: 0;

  transition: 0.45s;
}

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

.template-overlay .btn {
  min-width: 170px;

  border-radius: 40px;

  font-weight: 600;
}

.template-overlay .btn-light {
  color: #111827;
}

.template-overlay .btn-primary {
  background: #2563eb;

  border: none;
}

/*==============================
Content
==============================*/

.template-content {
  padding: 28px;
}

.template-category {
  display: inline-block;

  padding: 6px 14px;

  background: #eef5ff;

  color: #2563eb;

  border-radius: 50px;

  font-size: 0.75rem;

  font-weight: 700;

  margin-bottom: 15px;

  letter-spacing: 0.5px;
}

.template-content h4 {
  font-size: 24px;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 12px;
}

.template-content p {
  color: #64748b;

  line-height: 1.8;

  margin: 0;
}

/*==============================
Browser Frame
==============================*/

.template-image::before {
  content: "";

  position: absolute;

  left: 18px;

  top: 16px;

  width: 11px;

  height: 11px;

  border-radius: 50%;

  background: #ff5f57;

  box-shadow:
    18px 0 #febc2e,
    36px 0 #28c840;

  z-index: 3;
}

/*==============================
Shine Animation
==============================*/

.template-card::after {
  content: "";

  position: absolute;

  top: -80%;

  left: -120%;

  width: 60%;

  height: 250%;

  background: rgba(255, 255, 255, 0.25);

  transform: rotate(25deg);

  transition: 1s;
}

.template-card:hover::after {
  left: 150%;
}

/*==============================
Footer CTA
==============================*/

.templates-footer {
  margin-top: 70px;
}

.templates-footer h4 {
  font-size: 34px;

  font-weight: 700;

  color: #0f172a;
}

.templates-footer p {
  color: #64748b;

  max-width: 650px;

  margin: 20px auto 35px;

  line-height: 1.9;
}

.templates-footer .btn {
  padding: 15px 40px;

  border-radius: 50px;

  font-weight: 600;

  background: #2563eb;

  border: none;

  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.templates-footer .btn:hover {
  transform: translateY(-4px);
}

/*==============================
Reveal
==============================*/

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.active {
  opacity: 1;

  transform: none;
}

/*==============================
Responsive
==============================*/

@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 38px;
  }

  .template-content {
    padding: 22px;
  }

  .templates-footer h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .templates-section {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .template-content h4 {
    font-size: 20px;
  }

  .template-overlay .btn {
    min-width: 150px;
    font-size: 14px;
  }
}
.template-overlay .btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  background: rgba(255, 255, 255, 0.5);

  animation: ripple 0.6s linear;

  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);

    opacity: 1;
  }
}
/*=========================================
        PRICING SECTION
=========================================*/

.pricing-section {
  padding: 100px 0;

  background: #ffffff;

  position: relative;

  overflow: hidden;
}

.pricing-section::before {
  content: "";

  position: absolute;

  top: -250px;

  right: -180px;

  width: 520px;

  height: 520px;

  background: radial-gradient(circle, #dbeafe 0%, transparent 70%);

  opacity: 0.6;

  pointer-events: none;
}

.pricing-section::after {
  content: "";

  position: absolute;

  left: -200px;

  bottom: -200px;

  width: 450px;

  height: 450px;

  background: radial-gradient(circle, #eff6ff 0%, transparent 70%);

  opacity: 0.8;

  pointer-events: none;
}

.pricing-section .container {
  position: relative;

  z-index: 2;
}

/*=========================================
        PRICING CARD
=========================================*/

.pricing-card,
.addons-card {
  background: #ffffff;

  border-radius: 26px;

  border: 1px solid rgba(37, 99, 235, 0.08);

  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);

  padding: 38px;

  height: 100%;

  transition: 0.35s;

  position: relative;
}

.pricing-card:hover,
.addons-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.15);
}

/*=========================================
        LEFT CARD
=========================================*/

.pricing-header {
  text-align: center;

  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 2rem;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 10px;
}

.price {
  font-size: 4rem;

  font-weight: 800;

  color: #2563eb;

  line-height: 1;
}

.price-subtitle {
  margin-top: 10px;

  color: #64748b;

  font-size: 1rem;
}

/*=========================================
        INCLUDED BOX
=========================================*/

.included-box {
  background: #f8fbff;

  border: 1px solid #e2e8f0;

  border-radius: 18px;

  padding: 28px;

  margin-bottom: 30px;
}

.included-title {
  display: inline-block;

  background: #22c55e;

  color: #fff;

  font-size: 0.85rem;

  font-weight: 600;

  padding: 8px 16px;

  border-radius: 30px;

  margin-bottom: 20px;
}

/*=========================================
        FEATURE LIST
=========================================*/

.pricing-list {
  list-style: none;

  padding: 0;

  margin: 0;
}

.pricing-list li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 14px;

  color: #334155;

  font-size: 0.97rem;

  line-height: 1.6;
}

.pricing-list i {
  color: #22c55e;

  font-size: 1.1rem;

  margin-top: 2px;
}

/*=========================================
        BUTTON
=========================================*/

.pricing-btn {
  width: 100%;

  height: 58px;

  border-radius: 14px;

  background: #2563eb;

  border: none;

  font-weight: 600;

  font-size: 1rem;

  transition: 0.35s;
}

.pricing-btn:hover {
  background: #1d4ed8;

  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
}

/*=========================================
        FOOTER
=========================================*/

.pricing-footer {
  margin-top: 18px;

  text-align: center;

  color: #64748b;

  font-size: 0.95rem;
}

.pricing-footer i {
  color: #22c55e;

  margin-right: 6px;
}

/*=========================================
        ADDONS CARD
=========================================*/

.addons-header {
  text-align: center;

  margin-bottom: 25px;
}

.addons-header h3 {
  font-size: 2rem;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 10px;
}

.addons-header p {
  color: #64748b;

  margin: 0;
}

/*=========================================
        ADDON ITEM
=========================================*/

.addon-item {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  padding: 15px 18px;

  border: 1px solid #e2e8f0;

  border-radius: 14px;

  margin-bottom: 14px;

  transition: 0.3s;

  background: #fff;
}

.addon-item:hover {
  background: #f8fbff;

  border-color: #bfdbfe;

  transform: translateX(4px);
}

.addon-item i {
  color: #94a3b8;

  font-size: 1rem;
}

.addon-item span:nth-child(2) {
  flex: 1;

  font-weight: 500;

  color: #334155;
}

/*=========================================
        BADGE
=========================================*/

.addon-badge {
  background: #eef4ff;

  color: #2563eb;

  border: 1px solid #bfdbfe;

  padding: 6px 14px;

  border-radius: 30px;

  font-size: 0.78rem;

  font-weight: 600;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .pricing-card,
  .addons-card {
    padding: 28px;
  }

  .price {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 70px 0;
  }

  .pricing-header h3,
  .addons-header h3 {
    font-size: 1.6rem;
  }

  .price {
    font-size: 2.8rem;
  }

  .included-box {
    padding: 22px;
  }

  .addon-item {
    flex-wrap: wrap;

    gap: 10px;
  }

  .addon-badge {
    margin-left: 28px;
  }
}
/*=========================================
        MEET THE FOUNDER
=========================================*/

.founder-section {
  padding: 100px 0;

  background: #ffffff;

  position: relative;

  overflow: hidden;
}

.founder-section::before {
  content: "";

  position: absolute;

  top: -220px;

  right: -180px;

  width: 480px;

  height: 480px;

  border-radius: 50%;

  background: radial-gradient(circle, #dbeafe 0%, transparent 70%);

  opacity: 0.55;
}

.founder-section::after {
  content: "";

  position: absolute;

  bottom: -220px;

  left: -180px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: radial-gradient(circle, #eff6ff 0%, transparent 70%);

  opacity: 0.8;
}

.founder-section .container {
  position: relative;

  z-index: 2;
}

/*=========================================
        MAIN CARD
=========================================*/

.founder-card {
  background: #ffffff;

  border: 1px solid rgba(37, 99, 235, 0.08);

  border-radius: 28px;

  padding: 50px;

  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);

  transition: 0.35s;
}

.founder-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.12);
}

/*=========================================
        IMAGE
=========================================*/

.founder-image {
  position: relative;

  overflow: hidden;

  border-radius: 24px;
}

.founder-image img {
  width: 100%;

  border-radius: 24px;

  transition: 0.6s;

  display: block;
}

.founder-card:hover .founder-image img {
  transform: scale(1.03);
}

/*=========================================
        CONTENT
=========================================*/

.founder-name {
  font-size: 2.4rem;

  font-weight: 700;

  color: #0f172a;

  margin-top: 18px;

  margin-bottom: 8px;
}

.founder-designation {
  color: #2563eb;

  font-weight: 600;

  margin-bottom: 18px;
}

/*=========================================
        CREDENTIALS
=========================================*/

.founder-credentials {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 25px;
}

.founder-credentials span {
  background: #eff6ff;

  color: #2563eb;

  border: 1px solid #bfdbfe;

  padding: 8px 15px;

  border-radius: 30px;

  font-size: 0.82rem;

  font-weight: 600;
}

/*=========================================
        DESCRIPTION
=========================================*/

.founder-description {
  color: #475569;

  line-height: 1.9;

  margin-bottom: 18px;

  font-size: 1rem;
}

/*=========================================
        BUTTON
=========================================*/

.founder-btn {
  margin-top: 12px;

  border-radius: 14px;

  padding: 14px 28px;

  font-weight: 600;

  transition: 0.35s;
}

.founder-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.2);
}

/*=========================================
        STATS
=========================================*/

.founder-stats {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.stat-box {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px;

  border-radius: 18px;

  border: 1px solid #e2e8f0;

  background: #fff;

  transition: 0.3s;
}

.stat-box:hover {
  transform: translateX(6px);

  background: #f8fbff;

  border-color: #bfdbfe;
}

.stat-icon {
  width: 58px;

  height: 58px;

  background: #eff6ff;

  color: #2563eb;

  border-radius: 16px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 1.4rem;
}

.stat-box h3 {
  margin: 0;

  color: #2563eb;

  font-size: 2rem;

  font-weight: 700;
}

.stat-box p {
  margin: 2px 0 0;

  color: #64748b;

  font-size: 0.92rem;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .founder-card {
    padding: 35px;
  }

  .founder-image {
    margin-bottom: 35px;
  }

  .founder-stats {
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  .founder-section {
    padding: 70px 0;
  }

  .founder-card {
    padding: 28px;
  }

  .founder-name {
    font-size: 2rem;
  }

  .founder-description {
    font-size: 0.96rem;
  }

  .founder-credentials {
    gap: 8px;
  }

  .founder-credentials span {
    font-size: 0.75rem;

    padding: 7px 12px;
  }

  .stat-box {
    padding: 16px;
  }

  .stat-box h3 {
    font-size: 1.6rem;
  }
}
.founder-btn {
  position: relative;

  overflow: hidden;
}

.ripple {
  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  animation: ripple 0.6s linear;

  background: rgba(255, 255, 255, 0.45);

  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);

    opacity: 0;
  }
}
/*=========================================
        SUPPORT STRIP
=========================================*/

.support-strip {
  padding: 80px 0;

  background: #ffffff;

  position: relative;

  overflow: hidden;
}

.support-card {
  position: relative;

  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);

  border-radius: 28px;

  padding: 60px;

  overflow: hidden;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

/* Background Glow */

.support-card::before {
  content: "";

  position: absolute;

  top: -120px;

  right: -120px;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.support-card::after {
  content: "";

  position: absolute;

  bottom: -150px;

  left: -100px;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: rgba(59, 130, 246, 0.15);
}

/*=========================================
        CONTENT
=========================================*/

.support-card > * {
  position: relative;

  z-index: 2;
}

.support-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: rgba(255, 255, 255, 0.12);

  color: #ffffff;

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 0.85rem;

  font-weight: 600;

  letter-spacing: 0.5px;

  margin-bottom: 20px;

  backdrop-filter: blur(10px);
}

.support-card h2 {
  color: #ffffff;

  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 18px;

  line-height: 1.2;
}

.support-card p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 1.05rem;

  line-height: 1.8;

  margin-bottom: 0;

  max-width: 600px;
}

/*=========================================
        BUTTON
=========================================*/

.support-btn {
  background: #ffffff;

  color: #2563eb;

  border: none;

  border-radius: 14px;

  padding: 16px 34px;

  font-weight: 600;

  transition: 0.35s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.support-btn:hover {
  background: #2563eb;

  color: #ffffff;

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

.support-btn i {
  font-size: 1.1rem;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .support-card {
    padding: 45px;

    text-align: center;
  }

  .support-card p {
    margin: 0 auto 25px;
  }
}

@media (max-width: 767px) {
  .support-strip {
    padding: 60px 0;
  }

  .support-card {
    padding: 35px 25px;

    border-radius: 22px;
  }

  .support-card h2 {
    font-size: 1.8rem;
  }

  .support-card p {
    font-size: 0.95rem;
  }

  .support-btn {
    width: 100%;

    padding: 15px 20px;
  }
}
/*=========================================
        FINAL CTA
=========================================*/

.final-cta {
  padding: 100px 0;

  background: linear-gradient(135deg, #05359c 0%, #012eac 50%, #05359c 100%);

  position: relative;

  overflow: hidden;
}

.final-cta::before {
  content: "";

  position: absolute;

  top: -250px;

  right: -180px;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.35) 0%,
    transparent 70%
  );
}

.final-cta::after {
  content: "";

  position: absolute;

  bottom: -250px;

  left: -180px;

  width: 450px;

  height: 450px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.25) 0%,
    transparent 70%
  );
}

.final-cta .container {
  position: relative;

  z-index: 2;
}

/*=========================================
        CTA CARD
=========================================*/

.final-cta-card {
  text-align: center;

  max-width: 900px;

  margin: auto;
}

.cta-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 22px;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50px;

  font-size: 0.85rem;

  font-weight: 600;

  letter-spacing: 0.5px;

  margin-bottom: 30px;

  backdrop-filter: blur(12px);
}

.cta-badge i {
  color: #60a5fa;
}

/*=========================================
        HEADING
=========================================*/

.final-cta h2 {
  font-size: 3rem;

  font-weight: 700;

  color: #ffffff;

  line-height: 1.25;

  margin-bottom: 22px;
}

.final-cta h2 span {
  color: #60a5fa;
}

.final-cta p {
  max-width: 720px;

  margin: 0 auto 40px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 1.1rem;

  line-height: 1.9;
}

/*=========================================
        FEATURES
=========================================*/

.cta-features {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 45px;
}

.cta-features div {
  display: flex;

  align-items: center;

  gap: 10px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #ffffff;

  padding: 12px 20px;

  border-radius: 50px;

  font-size: 0.95rem;

  transition: 0.3s;
}

.cta-features div:hover {
  background: rgba(59, 130, 246, 0.18);

  transform: translateY(-3px);
}

.cta-features i {
  color: #60a5fa;
}

/*=========================================
        BUTTONS
=========================================*/

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 16px 34px;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.35s;
}

.cta-buttons .btn-light {
  color: #2563eb;

  background: #ffffff;

  border: none;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-light:hover {
  background: #2563eb;

  color: #ffffff;

  transform: translateY(-4px);
}

.cta-buttons .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-light:hover {
  background: #ffffff;

  color: #2563eb;

  border-color: #ffffff;

  transform: translateY(-4px);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .final-cta {
    padding: 70px 0;
  }

  .final-cta h2 {
    font-size: 1.9rem;
  }

  .final-cta p {
    font-size: 0.98rem;
  }

  .cta-features {
    flex-direction: column;

    align-items: center;
  }

  .cta-features div {
    width: 100%;

    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
/*=========================================
            FOOTER
=========================================*/

.footer {
  background: #0b1220;

  color: #cbd5e1;

  padding: 80px 0 30px;
}

.footer-logo {
  height: 48px;

  margin-bottom: 25px;
}

.footer-about {
  line-height: 1.9;

  color: #94a3b8;

  margin-bottom: 30px;
}

.footer h5 {
  color: #ffffff;

  margin-bottom: 22px;

  font-weight: 600;
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer ul li a {
  color: #94a3b8;

  text-decoration: none;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: #60a5fa;

  padding-left: 6px;
}

.footer-contact li {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #94a3b8;
}

.footer-contact i {
  color: #60a5fa;
}

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 44px;

  height: 44px;

  border-radius: 50%;

  background: #172033;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #ffffff;

  transition: 0.3s;

  text-decoration: none;
}

.footer-social a:hover {
  background: #2563eb;

  transform: translateY(-4px);
}

.footer hr {
  margin: 50px 0 25px;

  border-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

  color: #94a3b8;
}

.footer-links {
  display: flex;

  gap: 25px;
}

.footer-links a {
  color: #94a3b8;

  text-decoration: none;
}

.footer-links a:hover {
  color: #60a5fa;
}

/* Responsive */

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/*=========================================================
                PREMIUM TEMPLATES SECTION
=========================================================*/

.templates-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.templates-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  top: -250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
}

.templates-section .container {
  position: relative;
  z-index: 2;
}

/*=========================================================
                    SECTION HEADER
=========================================================*/

.section-header {
  max-width: 760px;
  margin: auto;
  margin-bottom: 60px;
}

.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;

  background: #eef4ff;

  color: #2563eb;

  font-size: 0.9rem;

  font-weight: 600;

  border-radius: 50px;

  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 52px;

  font-weight: 800;

  color: #0f172a;

  margin-bottom: 20px;

  line-height: 1.15;
}

.section-header h2 span {
  color: #2563eb;
}

.section-header p {
  color: #64748b;

  font-size: 18px;

  line-height: 1.8;
}

/*=========================================================
                    FILTER BUTTONS
=========================================================*/

.template-filter {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-bottom: 60px;
}

.template-filter button {
  border: none;

  outline: none;

  cursor: pointer;

  padding: 12px 28px;

  border-radius: 50px;

  background: white;

  color: #475569;

  font-weight: 600;

  transition: 0.35s ease;

  border: 1px solid #e5e7eb;
}

.template-filter button:hover {
  background: #eef4ff;

  color: #2563eb;
}

.template-filter button.active {
  background: #2563eb;

  color: white;

  border-color: #2563eb;

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

/*=========================================================
                    TEMPLATE CARD
=========================================================*/

.template-card {
  background: white;

  border-radius: 22px;

  overflow: hidden;

  border: 1px solid #e5e7eb;

  transition: 0.4s ease;

  height: 100%;

  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

/*=========================================================
                    BROWSER MOCKUP
=========================================================*/

.browser {
  position: relative;

  background: #fff;

  overflow: hidden;
}

.browser-top {
  height: 48px;

  background: #f8fafc;

  display: flex;

  align-items: center;

  gap: 8px;

  padding-left: 18px;

  border-bottom: 1px solid #e5e7eb;
}

.browser-top span {
  width: 12px;

  height: 12px;

  border-radius: 50%;
}

.browser-top span:nth-child(1) {
  background: #ff5f57;
}

.browser-top span:nth-child(2) {
  background: #febc2e;
}

.browser-top span:nth-child(3) {
  background: #28c840;
}

.browser img {
  width: 100%;

  display: block;

  transition: 0.6s ease;
}

/*=========================================================
                    CARD CONTENT
=========================================================*/

.template-content {
  padding: 28px;
}

.template-tag {
  display: inline-block;

  padding: 7px 14px;

  background: #eef4ff;

  color: #2563eb;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 18px;
}

.template-content h4 {
  font-size: 24px;

  color: #0f172a;

  font-weight: 700;

  margin-bottom: 12px;
}

.template-content p {
  color: #64748b;

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 22px;
}

/*=========================================================
                    RATING
=========================================================*/

.template-rating {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 25px;

  color: #f59e0b;

  font-size: 18px;
}

.template-rating small {
  color: #64748b;

  font-size: 14px;
}

/*=========================================================
                    BUTTONS
=========================================================*/

.template-buttons {
  display: flex;

  gap: 12px;
}

.template-buttons .btn {
  flex: 1;

  border-radius: 12px;

  font-weight: 600;

  padding: 12px;

  transition: 0.3s ease;
}
/*=========================================================
                CARD HOVER EFFECTS
=========================================================*/

.template-card:hover {
  transform: translateY(-12px);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.12),
    0 8px 20px rgba(37, 99, 235, 0.12);

  border-color: rgba(37, 99, 235, 0.25);
}

.template-card:hover .browser img {
  transform: scale(1.05);
}

.template-card:hover .template-tag {
  background: #2563eb;

  color: #fff;
}

.template-card:hover h4 {
  color: #2563eb;
}

.template-card:hover .btn-primary {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.template-card:hover .btn-outline-primary {
  border-color: #2563eb;

  color: #2563eb;
}

.template-card:hover .browser {
  background: #f8fbff;
}

/*=========================================================
                BUTTON EFFECTS
=========================================================*/

.template-buttons .btn {
  position: relative;

  overflow: hidden;
}

.template-buttons .btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.25);

  transition: 0.45s;
}

.template-buttons .btn:hover::before {
  left: 100%;
}

.template-buttons .btn-primary {
  background: #2563eb;

  border-color: #2563eb;
}

.template-buttons .btn-primary:hover {
  background: #1d4ed8;

  border-color: #1d4ed8;
}

.template-buttons .btn-outline-primary:hover {
  background: #2563eb;

  color: white;
}

/*=========================================================
                FILTER ANIMATION
=========================================================*/

.template-item {
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}

.template-item.hide {
  opacity: 0;

  transform: scale(0.9);

  pointer-events: none;
}

.template-item.show {
  opacity: 1;

  transform: scale(1);
}

/*=========================================================
                FOOTER CTA
=========================================================*/

.templates-footer {
  margin-top: 80px;

  padding: 60px;

  border-radius: 24px;

  text-align: center;

  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: white;

  overflow: hidden;

  position: relative;
}

.templates-footer::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  right: -120px;

  top: -120px;
}

.templates-footer::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  left: -70px;

  bottom: -70px;
}

.templates-footer > * {
  position: relative;

  z-index: 2;
}

.templates-footer h4 {
  font-size: 34px;

  font-weight: 700;

  margin-bottom: 15px;
}

.templates-footer p {
  max-width: 650px;

  margin: auto;

  margin-bottom: 30px;

  opacity: 0.95;

  font-size: 17px;

  line-height: 1.8;
}

.templates-footer .btn {
  padding: 16px 40px;

  border-radius: 14px;

  font-weight: 600;

  background: white;

  color: #2563eb;

  border: none;

  transition: 0.35s;
}

.templates-footer .btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media (max-width: 991px) {
  .templates-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .template-filter {
    gap: 10px;
  }

  .template-filter button {
    padding: 10px 20px;

    font-size: 14px;
  }

  .template-content {
    padding: 22px;
  }

  .template-content h4 {
    font-size: 22px;
  }

  .template-buttons {
    flex-direction: column;
  }

  .templates-footer {
    padding: 45px 30px;
  }

  .templates-footer h4 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .templates-section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .section-header p {
    font-size: 16px;
  }

  .template-filter {
    justify-content: flex-start;

    overflow-x: auto;

    flex-wrap: nowrap;

    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .template-filter::-webkit-scrollbar {
    display: none;
  }

  .template-filter button {
    flex-shrink: 0;
  }

  .template-content {
    padding: 20px;
  }

  .template-content h4 {
    font-size: 20px;
  }

  .template-rating {
    flex-direction: column;

    align-items: flex-start;

    gap: 6px;
  }

  .templates-footer {
    padding: 40px 25px;
  }

  .templates-footer h4 {
    font-size: 24px;
  }

  .templates-footer p {
    font-size: 15px;
  }

  .templates-footer .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .browser-top {
    height: 42px;
  }

  .browser-top span {
    width: 10px;

    height: 10px;
  }

  .template-tag {
    font-size: 12px;

    padding: 6px 12px;
  }

  .template-buttons .btn {
    font-size: 14px;

    padding: 11px;
  }
}
.template-buttons .btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.35);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);

    opacity: 0;
  }
}
