/* Generated by script */
@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url('../fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Kakoti Landing Page Custom Styles */
.kakoti-landing {
  background: linear-gradient(135deg, #f8fafc 0%, #f5f7ff 100%);
  min-height: 100vh;
  padding: 0;
}

.kakoti-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px 20px;
  display: flex;
  flex-direction: column;
}

.kakoti-hero-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 32px 0 rgba(80,80,180,0.08);
  border-bottom: 1px solid #e2e8f0;
}

.kakoti-hero {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.kakoti-hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.kakoti-hero-text {
  text-align: right;
  flex: 1;
}

.hero-paragraph {
  margin-top: 12px;
}
.kakoti-logo {
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px #a5b4fc55);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px 0 #a5b4fc22;
}

.kakoti-title {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #102e03;
  margin-bottom: 0.5rem;
}

.kakoti-desc {
  font-size: 1.2rem;
  color: #102e03;
  margin-bottom: 0;
  font-weight: 500;
}

.kakoti-feature {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px 0 #a5b4fc22;
  padding: 32px 28px;
  margin: 0 0 1.5rem 0;
  width: 100%;
  max-width: 100%;
  text-align: right;
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}
.kakoti-feature:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px 0 #6366f155;
  border-color: #818cf8;
}
.kakoti-feature h2 {
  font-size: 1.5rem;
  color: #4c47a7;
  margin-bottom: 0.7rem;
  font-weight: 700;
  text-align: right;
}
.kakoti-feature p {
  color: #333333;
  font-size: 1.08rem;
  margin: 0;
  text-align: right;
}

.kakoti-feature-icon {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}
.kakoti-feature-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  opacity: 0.7;
}

.kakoti-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  border-radius: 1.2rem;
  padding: 36px 24px 32px 24px;
  margin-top: 1.5rem;
  box-shadow: 0 4px 32px 0 #6366f133;
}
.kakoti-cta h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.kakoti-btn {
  display: inline-block;
  background: #fff;
  color: #6366f1;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7em 2.0em;
  border-radius: 0.8em;
  box-shadow: 0 2px 12px 0 #818cf855;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.kakoti-btn:hover {
  background: #393a7c;
  color: #f0f0f0;
  box-shadow: 0 4px 24px 0 #3730a355;
  text-decoration: none;
}
.kakoti-btn-invert {
  background: #6366f1;
  color: #fff;
}
.kakoti-btn-invert:hover {
  background: #4c47a7;
  color: #f0f0f0;
  box-shadow: 0 4px 24px 0 #3730a355;
}

.kakoti-h3 {
  text-align: right;
}

@media (max-width: 600px) {
  .kakoti-container {
    padding: 18px 4px 32px 4px;
  }
  .kakoti-feature, .kakoti-cta {
    padding: 18px 6px;
  }
  .kakoti-title {
    font-size: 2rem;
  }
  .kakoti-feature-icon img {
    width: 65px !important;
    height: 65px !important;
  }
  .kakoti-feature h2 {
    font-size: 1.2rem;
  }
  .kakoti-feature {
    flex-direction: column;
    align-items: center;
  }
  .kakoti-h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
  }
  .kakoti-feature-text {
    text-align: center;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .kakoti-feature h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    text-align: center;
  }
  .kakoti-feature p {
    font-size: 1.08rem;
    margin: 0;
    text-align: center;
  }
  .kakoti-cta h2 {
    text-align: center;
    font-size: 1.2rem;
  }
}
body { 
    direction: rtl;
    font-family: Vazirmatn, sans-serif;
}
h1,h2,h3,h4,h5,h6,p,span,div,ul,li,ol,a {
  font-family: Vazirmatn, sans-serif;
}

.kakoti-landing, .kakoti-container, .kakoti-hero, .kakoti-title, .kakoti-desc, .kakoti-feature, .kakoti-feature h2, .kakoti-feature p, .kakoti-cta, .kakoti-cta h2, .kakoti-btn {
  font-family: Vazirmatn, sans-serif;
}

