/*
Copyright 2026
You may not use this file except in compliance with the license.
Developed by: Poleify Inc
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

/* Custom Gradient Background */
.gradient-bg {
 background: linear-gradient(135deg, black 0%, #3D3DFF 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


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

.five-star{
  font-size: 15px
}
.no-credit-card{
  font-size: 15px
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Navigation */
nav {
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
}

nav > div {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#company-logo img{
  height: 28px;
}

nav .flex {
  display: flex;
}

nav .items-center {
  align-items: center;
}

nav .gap-2 {
  gap: 0.5rem;
}

nav .gap-6 {
  gap: 1rem;
}

nav .hidden {
  display: none;
}

nav a {
  text-decoration: none;
}

nav .text-gray-700 {
  color: rgb(55, 65, 81);
  font-size: 0.875rem;
}

nav .hover\:text-indigo-600:hover {
  color: rgb(79, 70, 229);
}

nav .font-medium {
  font-weight: 500;
}

nav .text-white {
  color: white;
}

nav .px-6 {
  padding-left: 1rem;
  padding-right: 1rem;
}

nav .px-4 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

nav .py-2 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

nav .rounded-lg {
  border-radius: 0.375rem;
}

nav .font-semibold {
  font-weight: 600;
}

nav .hover\:opacity-90:hover {
  opacity: 0.9;
}

nav .text-sm {
  font-size: 0.8125rem;
}

/* Hero Section */
section {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pt-24 {
  padding-top: 4.5rem;
}

.pb-20 {
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-white {
  color: white;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
}

.gap-12 {
  gap: 2rem;
}

.gap-8 {
  gap: 1.5rem;
}

.gap-6 {
  gap: 1rem;
}

.gap-4 {
  gap: 0.75rem;
}

.gap-3 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 0.375rem;
}

.gap-1 {
  gap: 0.25rem;
}

.items-center {
  align-items: center;
}

.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.mb-6 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.375rem;
}

.mb-8 {
  margin-bottom: 1.5rem;
}

.mb-12 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 2.5rem;
}

.mt-4 {
  margin-top: 0.75rem;
}

.mt-6 {
  margin-top: 1rem;
}

.mt-12 {
  margin-top: 2rem;
}

.inline-block {
  display: inline-block;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1.1;
}

.text-4xl {
  font-size: 1.75rem;
  line-height: 1.2;
}

.text-3xl {
  font-size: 1.5rem;
  line-height: 1.3;
}

.text-2xl {
  font-size: 1.25rem;
  line-height: 1.4;
}

.text-xl {
  font-size: 1.0625rem;
  line-height: 1.5;
}

.text-lg {
  font-size: 1rem;
  line-height: 1.5;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-indigo-100 {
  color: rgb(224, 231, 255);
}

.text-indigo-600 {
  color: rgb(79, 70, 229);
}

.text-indigo-700 {
  color: rgb(67, 56, 202);
}

.text-gray-400 {
  color: rgb(156, 163, 175);
}

.text-gray-500 {
  color: rgb(107, 114, 128);
}

.text-gray-600 {
  color: rgb(75, 85, 99);
}

.text-gray-700 {
  color: rgb(55, 65, 81);
}

.text-gray-800 {
  color: rgb(31, 41, 55);
}

.text-gray-900 {
  color: rgb(17, 24, 39);
}

.text-red-600 {
  color: grey;
  font-size: 20px
}

.text-green-600 {
  color: rgb(22, 163, 74);
}

.text-green-700 {
  color: rgb(21, 128, 61);
}

.text-green-800 {
  color: rgb(22, 101, 52);
}

.text-green-300 {
  color: rgb(134, 239, 172);
}

.text-blue-600 {
  color: rgb(37, 99, 235);
}

.text-blue-700 {
  color: rgb(29, 78, 216);
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: rgb(249, 250, 251);
}

.bg-gray-200 {
  background-color: rgb(229, 231, 235);
}

.bg-gray-900 {
  background-color: rgb(17, 24, 39);
}

.bg-red-50 {
  display: flex;
  flex-direction: column;
  background-color: rgb(254, 242, 242);
  justify-content: center;
  align-items: center;
}

.bg-red-500 {
  background-color: rgb(239, 68, 68);
}

.bg-orange-50 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 247, 237);
}

.bg-yellow-50 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(254, 252, 232);
}

.bg-green-50 {
  background-color: rgb(240, 253, 244);
}

.bg-green-100 {
  background-color: rgb(220, 252, 231);
}

.bg-blue-100 {
  background-color: rgb(219, 234, 254);
}

.bg-indigo-600 {
  background-color: rgb(79, 70, 229);
}

.bg-indigo-700 {
  background-color: rgb(67, 56, 202);
}

.hover\:bg-gray-100:hover {
  background-color: rgb(243, 244, 246);
}

.hover\:bg-indigo-800:hover {
  background-color: rgb(55, 48, 163);
}

.border-2 {
  border-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-red-200 {
  border-color: rgb(254, 202, 202);
}

.border-orange-200 {
  border-color: rgb(254, 215, 170);
}

.border-yellow-200 {
  border-color: rgb(254, 240, 138);
}

.border-green-500 {
  border-color: rgb(34, 197, 94);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.625rem;
}

.p-4 {
  padding: 0.875rem;
}

.p-6 {
  padding: 1.25rem;
}

.p-8 {
  padding: 1.5rem;
}

.pb-3 {
  padding-bottom: 0.625rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-4 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.px-6 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-8 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-10 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1 1 0%;
}

.justify-between {
  justify-content: space-between;
}

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

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

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

.w-5 {
  width: 1.125rem;
}

.w-8 {
  width: 1.75rem;
}

.w-12 {
  width: 2.5rem;
}

.w-16 {
  width: 3.5rem;
}

.w-full {
  width: 100%;
}

.h-2 {
  height: 0.5rem;
}

.h-5 {
  height: 1.125rem;
}

.h-8 {
  height: 1.75rem;
}

.h-12 {
  height: 2.5rem;
}

.h-16 {
  height: 3.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transition {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.leading-relaxed {
  line-height: 1.625;
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  max-width: 800px;
  margin: 20px auto;
  background: white;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #6366f1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-size: 19px;
  font-style: italic;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 16px;
  color: #6b7280;
  font-weight: 600;
}

/* Responsive - Small screens (640px+) */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .text-5xl {
    font-size: 2.5rem;
  }

  .text-4xl {
    font-size: 2rem;
  }

  .text-3xl {
    font-size: 1.75rem;
  }

  .text-2xl {
    font-size: 1.375rem;
  }

  .text-xl {
    font-size: 1.125rem;
  }

  .py-20 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .py-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pt-24 {
    padding-top: 5rem;
  }

  .pb-20 {
    padding-bottom: 3.5rem;
  }

  .gap-12 {
    gap: 2.5rem;
  }

  .gap-8 {
    gap: 1.75rem;
  }

  #company-logo img {
    height: 32px;
  }

  nav > div {
    height: 3.75rem;
  }

  nav .px-6 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  nav .text-gray-700 {
    font-size: 0.9375rem;
  }
}

/* Responsive - Medium screens (768px+) */
@media (min-width: 768px) {
  nav .md\:flex {
    display: flex;
  }

  nav .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .text-5xl {
    font-size: 2.75rem;
  }

  .text-4xl {
    font-size: 2.25rem;
  }

  .text-3xl {
    font-size: 1.875rem;
  }

  .text-2xl {
    font-size: 1.5rem;
  }

  .text-xl {
    font-size: 1.25rem;
  }

  .md\:text-5xl {
    font-size: 2.75rem;
    line-height: 1.1;
  }

  .md\:text-6xl {
    font-size: 3.25rem;
    line-height: 1.05;
  }

  .py-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .py-16 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .pt-24 {
    padding-top: 5.5rem;
  }

  .pb-20 {
    padding-bottom: 4rem;
  }

  .gap-12 {
    gap: 3rem;
  }

  .gap-8 {
    gap: 2rem;
  }

  .gap-6 {
    gap: 1.25rem;
  }

  .mb-16 {
    margin-bottom: 3rem;
  }

  .mb-12 {
    margin-bottom: 2.5rem;
  }

  .mb-8 {
    margin-bottom: 1.75rem;
  }

  .mb-6 {
    margin-bottom: 1.25rem;
  }

  .p-8 {
    padding: 1.75rem;
  }

  .p-6 {
    padding: 1.5rem;
  }

  .p-4 {
    padding: 1rem;
  }

  #company-logo img {
    height: 35px;
  }

  nav > div {
    height: 4rem;
  }

  nav .gap-6 {
    gap: 1.5rem;
  }

  nav .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  nav .text-gray-700 {
    font-size: 1rem;
  }
}


@media (max-width: 480px) {
  .text-5xl {
    font-size: 2rem;
  }
  .sub-header{
    font-size: 1.1rem;
  }
  .header-btn-1{
    font-size: 14px;
  }
  .header-btn-2{
    font-size: 14px;
  }
  .five-star{
    font-size: 13px
  }
  .no-credit-card{
    font-size: 13px
  }
}


/* Responsive - Large screens (1024px+) */
@media (min-width: 1024px) {
  .text-5xl {
    font-size: 3rem;
  }

  .text-4xl {
    font-size: 2.5rem;
  }

  .text-3xl {
    font-size: 2rem;
  }

  .text-2xl {
    font-size: 1.625rem;
  }

  .text-xl {
    font-size: 1.375rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .pt-24 {
    padding-top: 6rem;
  }

  .pb-20 {
    padding-bottom: 5rem;
  }

  .gap-12 {
    gap: 3rem;
  }

  .mb-16 {
    margin-bottom: 4rem;
  }

  .mb-12 {
    margin-bottom: 3rem;
  }

  .mb-8 {
    margin-bottom: 2rem;
  }

  .mb-6 {
    margin-bottom: 1.5rem;
  }

  .p-8 {
    padding: 2rem;
  }

  .p-6 {
    padding: 1.5rem;
  }

  .p-4 {
    padding: 1rem;
  }

  .px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* SVG Fill */
svg {
  fill: currentColor;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Image handling */
img {
  max-width: 100%;
  height: auto;
}



/* Thank you screen */
.container-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, black 0%,  #3D3DFF 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, black 0%, #3D3DFF 100%);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.checkmark svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw 0.5s ease-out 0.5s forwards;
    fill: none
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.thank-you-header {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 700;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.thank-you-msg {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.back-to-home-button{
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, black 0%,  #3D3DFF 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.back-to-home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.back-to-home-button:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }

    .thank-you-header {
        font-size: 2rem;
    }

    .thank-you-msg {
        font-size: 1rem;
    }
}
