
/* Custom variables using CSS variables */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sen:wght@400..800&display=swap");

:root {
  --primary-color: #3490dc;
  --secondary-color: #ffed4a;
}

p {
  font-feature-settings: 'liga' off;
}

/* SVG Icon styles */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

/* Icon sizes */
.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

/* Icon colors */
.icon-primary {
  color: var(--primary-color);
}

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

.icon-white {
  color: white;
}

.icon-black {
  color: black;
}

.w-contain {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .w-contain {
    width: 80%;
  }
}

@media (min-width: 1536px) {
  .w-contain {
    max-width: 1400px;
  }
}

.btn {
  font-size: 0.875rem;
  /* text-sm */
  text-align: center;
  font-weight: 400;
  border-radius: 0.5rem;
  /* rounded-lg */
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  /* text-base */
  text-align: center;
  font-weight: 600;
  border-radius: 0.5rem;
  /* rounded-lg */
  display: inline-flex;
  font-family: "Inter", sans-serif;
}

.btn-primary:disabled {
  background-color: #f6f8fa;
  color: #cdd0d5;
  cursor: not-allowed;
}

.e_link {
  color: #0347f5;
  font-weight: 400;
  cursor: pointer;
}

.hero {
  position: relative;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/* Store badge styling */
.store-link {
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.store-link:hover {
  transform: translateY(-2px);
}

.hero-frame-1 {
  border-radius: 32px;
  background: rgba(245, 245, 245, 0.5);

  flex-shrink: 0;
}

.hero-frame-2 {
  border-radius: 32px;
  background: #F5F5F5;
  flex-shrink: 0;
}

.hero-ball {
  border-radius: 140px;
  background-image: url('../images/pattern-1.jpg');
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #FFF;
}

.feature-item:nth-child(2),
.feature-item:nth-child(4),
.feature-item:nth-child(6) {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  /* margin-top: -200px; */

}

.feature-item:nth-child(5) {
  position: relative;
}

.feature-item:nth-child(3),
.feature-item:nth-child(3) {
  position: relative;
}

.benefit-item {
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon {
  border-radius: 106px 0px 106px 106px;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: #3B82F6;
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.contact-us-section {
  background: linear-gradient(0deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.05) 100%), #FFF;
}

.contact-us-section .icon-container {
  border-radius: 65px 0px 65px 65px;
  background: #F5F5F5;
}

/* Privacy policy styles */
.policy-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
}
.bg-layout-pattern{
    background-image: url('../images/pattern-1.jpg');
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #FFF;
}

.terms-conditions-content {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.terms-conditions-content:last-child {
  border-bottom: none;
}

.terms-conditions-content ul li {
  margin-bottom: 0.75rem;
}