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

/* Shared chrome */
:root {
  --bg: #0d0f12;
  --muted: #b6bbc5;
  --brand: #8a2be2;
  --brand2: #ff4f86;
  --card: #1a1d22;
}

body {
  overflow-x: hidden;
}

.site-topbar {
  height: 64px;
  background: #000;
}

.brand-name {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.site-footer {
  border-top: 1px solid #262a30;
  background: #0b0d10;
}

/* Landing page shell */
body.landing-page {
  background-color: #111216;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: 40px;
}

body.landing-page * {
  box-sizing: border-box;
}

body.landing-page .site-topbar,
body.landing-page .site-footer {
  display: none;
}

.landing-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #111216;
  color: #ffffff;
}

.landing-shell a {
  color: inherit;
}

.bottom-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #000000;
  z-index: 2000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-text {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  position: absolute;
  will-change: transform;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.landing-header {
  width: 100%;
  height: 100px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
}

.landing-header .logo {
  display: flex;
  align-items: center;
  z-index: 4002;
}

.landing-header .logo img {
  height: 130px;
  width: auto;
  transition: height 0.3s;
}

.landing-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  transition: gap 0.3s ease;
}

.landing-nav a {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  white-space: nowrap;
}

.landing-nav a:hover {
  color: #ffffff;
}

.landing-nav a.active {
  color: #0091ff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 4006;
  background: none;
  border: none;
}

.hamburger .bar {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.landing-section {
  width: 100%;
  position: relative;
  scroll-margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 5%;
  padding-right: 5%;
}

.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  scroll-margin-top: 0;
  padding-top: 150px;
}

.hero-left {
  flex: 1.3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
}

.hero-left img {
  width: 120%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  margin-left: -50px;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding-top: 120px;
  z-index: 10;
}

.hero-right h1 {
  font-size: 120px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: -20px;
}

.hero-right .subtitle {
  font-size: 22px;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 25px;
}

.btn-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  gap: 25px;
  z-index: 20;
}

.free-trial {
  transform: rotate(-5deg);
  z-index: 10;
}

.free-trial img {
  width: 180px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
}

.download-btn img {
  height: 100px;
  cursor: pointer;
  transition: transform 0.2s;
}

.download-btn img:hover {
  transform: scale(1.02);
}

.installer-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
}

.counter {
  font-size: 4.5rem;
  font-weight: 700;
  color: #00bf8e;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
}

.center-bottom-devices {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.device-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.device-icons img {
  height: 45px;
  width: auto;
}

.separator {
  width: 2px;
  height: 50px;
  background-color: #555;
}

.content-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.text-block {
  flex: 1;
}

.text-block h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.text-block p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 400;
}

.signature {
  font-style: italic;
  color: #dcdcdc;
  margin-top: -10px;
  margin-bottom: 30px;
  display: block;
}

.video-btn-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  width: fit-content;
}

.play-btn-circle {
  width: 60px;
  height: 60px;
  background-color: #8b41d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(139, 65, 212, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.play-btn-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(139, 65, 212, 0.6);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.play-btn-circle svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

.video-btn-wrapper:hover .play-btn-circle {
  transform: scale(1.1);
  background-color: #7a31c5;
  box-shadow: 0 0 30px rgba(139, 65, 212, 0.6);
}

.video-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.close-video {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 5001;
}

.close-video:hover {
  color: #8b41d4;
}

.pdf-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.pdf-btn img {
  height: 60px;
  transition: transform 0.2s ease;
}

.pdf-btn img:hover {
  transform: translateY(-3px);
}

.pdf-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  margin-left: 5px;
}

.image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

#about .image-block img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-left: 180px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

#founder .image-block img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-left: 0;
  filter: drop-shadow(0, 0, 20px rgba(0, 0, 0, 0.5));
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 65px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.1s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

#parents-resources {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111216;
  min-height: 80vh;
}

.pr-title {
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 60px;
  padding: 0 15px;
}

.pr-title span {
  color: #ffffff;
}

.slider-viewport {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
  touch-action: pan-y;
}

.slider-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s ease-out;
}

.slide-group {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 5px;
}

.pr-card {
  background-color: white;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.pr-card-content {
  flex: 1;
  padding: 30px;
  color: #333;
  display: flex;
  flex-direction: column;
}

.pr-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #555;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
}

.testimonial-text {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.parent-info {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.stars {
  align-self: flex-start;
  color: #ffc107;
  font-size: 22px;
  letter-spacing: 2px;
  margin-top: auto;
}

.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #555555;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #02a7ff;
  transform: scale(1.3);
}

.dot:hover {
  background-color: #888888;
}

#features {
  background-color: #111216;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.features-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  align-items: center;
}

.features-title-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.features-title-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.features-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1050px;
  justify-items: center;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.feature-pill {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #16171d, #1a1c24);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  height: 70px;
  cursor: default;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
  width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #05b179;
  fill: none;
  stroke-width: 1.5;
}

.feature-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 25px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

#plans {
  background-color: #111216;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
}

.plans-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  padding-top: 20px;
}

.plan-card {
  background: linear-gradient(145deg, #16171d, #1a1c24);
  border-radius: 20px;
  padding: 40px 30px;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.card-1 {
  border-top: 3px solid #facf1e;
}

.plan-card.card-2 {
  border-top: 3px solid #05b179;
}

.plan-card.card-3 {
  border-top: 3px solid #8b41d4;
}

.plan-card.card-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(250, 207, 30, 0.2);
}

.plan-card.card-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(5, 177, 121, 0.2);
}

.plan-card.card-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 65, 212, 0.2);
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.old-price {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: -5px;
  font-family: 'Roboto', sans-serif;
}

.discount-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  background-color: #ff4757;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 10;
  animation: float-badge 3s ease-in-out infinite;
}

.badge-yellow {
  background-color: #facf1e !important;
  color: #000000 !important;
  box-shadow: 0 4px 15px rgba(250, 207, 30, 0.4) !important;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

.plan-price {
  font-size: 60px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.plan-price span {
  font-size: 30px;
  margin-top: 5px;
  margin-left: 4px;
  color: #ffffff;
  font-weight: 400;
}

.plan-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}

.features-list {
  list-style: none;
  width: 100%;
  margin-bottom: 40px;
  flex-grow: 1;
  padding-left: 0;
}

.features-list li {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

.features-list li::before {
  content: ">";
  color: #ffffff;
  font-size: 18px;
  margin-right: 10px;
  line-height: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 15px 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
  background: transparent;
  text-decoration: none;
  text-align: center;
}

.plan-btn.btn-1 {
  border: 2px solid #facf1e;
  color: #facf1e;
}

.plan-btn.btn-1:hover {
  background-color: #facf1e;
  color: #000;
}

.plan-btn.btn-2 {
  border: 2px solid #05b179;
  color: #05b179;
}

.plan-btn.btn-2:hover {
  background-color: #05b179;
  color: #fff;
}

.plan-btn.btn-3 {
  border: 2px solid #8b41d4;
  color: #8b41d4;
}

.plan-btn.btn-3:hover {
  background-color: #8b41d4;
  color: #fff;
}

#career {
  background-color: #111216;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
}

.career-container {
  width: 100%;
  max-width: 1000px;
  background: linear-gradient(145deg, #16171d, #1a1c24);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.career-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.career-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.career-type-badge {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
}

.job-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.job-detail-item {
  display: flex;
  flex-direction: column;
}

.job-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.job-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.job-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #00bf8e;
  margin-bottom: 15px;
  margin-top: 30px;
}

.job-text {
  font-size: 16px;
  line-height: 1.6;
  color: #dcdcdc;
  margin-bottom: 20px;
}

.job-list {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.job-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #dcdcdc;
  line-height: 1.5;
}

.job-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #00bf8e;
  font-weight: bold;
}

.earning-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.earning-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.earning-card.option-a {
  border-top: 3px solid #ffc107;
}

.earning-card.option-b {
  border-top: 3px solid #05b179;
}

.ec-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.ec-detail {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 8px;
}

.ec-highlight {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.ec-highlight span {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
}

.disclaimer-box {
  background-color: rgba(255, 87, 87, 0.1);
  border-left: 4px solid #ff5757;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
  color: #ffcccc;
}

.apply-info-box {
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(0, 191, 142, 0.1);
  border: 1px solid #00bf8e;
  border-radius: 12px;
  text-align: center;
}

.apply-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.apply-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  color: #00bf8e;
}

.apply-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider {
  color: #555;
  font-size: 14px;
}

#contact {
  background-color: #111216;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.contact-card {
  background: linear-gradient(145deg, #16171d, #1a1c24);
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-header {
  max-width: 600px;
  margin-bottom: 50px;
}

.contact-info-header h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info-header p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  padding-left: 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.04);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 145, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0091ff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 145, 255, 0.1);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-text h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-text p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.4;
}

.landing-footer {
  background-color: #000000;
  padding: 60px 5% 20px 5%;
  color: #dcdcdc;
  font-family: 'Roboto', sans-serif;
  border-top: 1px solid #222;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
  display: block;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0091ff;
  padding-left: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #aaa;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: #0091ff;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.social-icon-link.fb:hover {
  background-color: #1877f2;
}

.social-icon-link.insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon-link.yt:hover {
  background-color: #ff0000;
}

.social-icon-link.in:hover {
  background-color: #0a66c2;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #666;
}

@media (max-width: 1400px) {
  .hero-right h1 {
    font-size: 3.5rem;
  }

  .hero-left img {
    max-width: 650px;
    width: 100%;
    margin-left: 0;
  }

  .counter {
    font-size: 3.5rem;
  }

  .landing-nav ul {
    gap: 20px;
  }

  .landing-nav a {
    font-size: 12px;
  }

  .hero-right {
    padding-top: 60px;
  }
}

@media (max-width: 1024px) {
  .landing-header {
    padding: 0 20px;
  }

  .landing-header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .landing-header .logo img {
    height: 80px;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .landing-nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000000;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
    z-index: 3005;
  }

  .landing-nav.active {
    height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .landing-nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    height: 100%;
    width: 100%;
  }

  .landing-nav a {
    font-size: 18px;
    display: block;
    text-align: center;
  }

  .landing-nav.active ul {
    opacity: 1;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .landing-hero {
    flex-direction: column;
    text-align: center;
    padding-bottom: 60px;
    padding-top: 120px;
  }

  .hero-right {
    display: contents;
  }

  .hero-right h1 {
    order: 1;
    font-size: 13vw;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .hero-right .subtitle {
    order: 1;
    font-size: 1.2rem;
  }

  .hero-left {
    order: 2;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    margin-bottom: 25px;
  }

  .hero-left img {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  .btn-wrapper {
    order: 3;
    margin-top: 0;
    gap: 25px;
    margin-bottom: 15px;
  }

  .download-btn img {
    height: 65px;
  }

  .free-trial img {
    width: 160px;
  }

  .installer-text {
    order: 3;
    font-size: 0.9rem;
  }

  .counter {
    order: 3;
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .center-bottom-devices {
    order: 5;
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 30px;
  }

  .landing-section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-section {
    height: auto;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .text-block h2 {
    font-size: 26px;
  }

  .video-btn-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .pdf-wrapper {
    align-items: center;
    justify-content: center;
  }

  #about .image-block,
  #founder .image-block {
    order: -1;
    margin-bottom: 30px;
  }

  .image-block {
    width: 100%;
    justify-content: center;
  }

  #about .image-block img,
  #founder .image-block img {
    margin-left: 0;
    max-width: 300px;
  }

  .slide-group {
    grid-template-columns: 1fr;
  }

  .pr-card {
    flex-direction: column;
    height: auto;
  }

  .pr-card-content {
    padding: 30px 20px;
  }

  .pr-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .features-title-wrapper h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .features-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-col {
    width: 100%;
  }

  .feature-pill {
    width: 100%;
  }

  .plans-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .plan-card {
    width: 100%;
    max-width: 350px;
  }

  .career-container {
    padding: 30px 20px;
  }

  .earning-box-wrapper {
    grid-template-columns: 1fr;
  }

  .job-details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .apply-details {
    flex-direction: column;
    gap: 10px;
  }

  .divider {
    display: none;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-card {
    min-width: 100%;
    width: 100%;
    padding: 30px 20px;
  }

  .landing-footer {
    padding: 40px 20px 20px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px auto;
  }

  .footer-text {
    margin: 0 auto 20px auto;
  }

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

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

  .video-container {
    width: 95%;
  }

  .close-video {
    right: 20px;
    top: 10px;
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-details-list {
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}
