/* Reusable Components Styles */

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-section {
  padding: 5rem 0;
  background-color: var(--grey);
}

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.about-bullets li span {
  color: var(--primary);
  font-weight: bold;
}

.about-img-box {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: scale(0.3);
  opacity: 0.4;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
}

.about-img-sub {
  position: absolute;
  width: 50%;
  top: 70%;
  right: 60%;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--white);
  z-index: 2;
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.about-img-box.in-view .about-img-main {
  transform: scale(1);
  opacity: 1;
}

.about-img-box.in-view .about-img-sub {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════
   TECHNOLOGY SECTION
   ═══════════════════════════════════════════ */
.tech-section {
  padding: 5rem 0 6rem 0;
  background: linear-gradient(135deg, #e8f0f8 0%, #dce8f5 50%, #e4ecf7 100%);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.tech-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.tech-col-left .tech-row:nth-child(2) {
  margin-left: -3rem;
}

.tech-col-right .tech-row:nth-child(2) {
  margin-right: -3rem;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tech-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.tech-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tech-icon-wrap:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tech-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.6) 50%, transparent 65%);
  background-size: 400px 100%;
  opacity: 0;
  pointer-events: none;
}

.tech-icon-wrap:hover::after {
  opacity: 1;
  animation: shimmerPass 0.55s linear forwards;
}

.tech-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Center circle badge */
.tech-center {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-center.in-view {
  transform: scale(1);
  opacity: 1;
}

.tech-center svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}

.tech-center-logo {
  position: relative;
  z-index: 10;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-center-logo img {
  width: 60px;
  height: 60px;
}

@keyframes shimmerPass {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: 200px 0;
  }
}

/* ═══════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════ */
.team-section {
  padding: 5rem 0;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}

.team-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-box {
  position: relative;
  width: 100%;
}

.founder-img-wrap {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.founder-box:hover .founder-img-wrap img {
  transform: scale(1.05);
}

.founder-badge-pulse {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 20;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: softPulse 2.2s infinite ease-in-out;
}

.founder-badge-pulse svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}

.founder-badge-logo {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff9f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-badge-logo img {
  width: 24px;
  height: 24px;
}

.founder-name-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  text-align: center;
}

.founder-name-card p:first-child {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.founder-name-card p:last-child {
  font-size: 0.85rem;
  color: var(--dark);
}

.founder-name-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px 3px 0 0;
}

/* Team grid and flip cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.member-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

/* Ring border effects */
.member-ring::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
  opacity: 0;
  transform: rotate(-30deg) scale(0.9);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.member-ring::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 74, 24, 0.18) 0%, rgba(253, 74, 24, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 9;
}

.member-ring:hover::before {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.member-ring:hover::after {
  opacity: 1;
}

.member-linkedin {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 30;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0065f5e3;
  color: var(--white);
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-linkedin:hover {
  background-color: var(--dark);
  transform: scale(1.05);
}

.flip-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  perspective: 800px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-ring:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.member-ring:hover .flip-front img {
  transform: scale(1.08);
}

.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #1a3c8f 0%, #0d2060 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
}

.flip-back span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.flip-back .line {
  width: 32px;
  height: 1px;
  background-color: var(--primary);
}

.flip-back .name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  text-align: center;
}

.flip-back .connect-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.flip-back .connect-btn:hover {
  background-color: var(--primary);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

.member-role {
  font-size: 0.85rem;
  color: var(--secondary);
  text-align: center;
}

@keyframes softPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 74, 24, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(253, 74, 24, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(253, 74, 24, 0);
  }
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.pricing-section {
  padding: 5rem 0;
  background-color: #1e293b;
  color: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header p:first-child {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.pricing-header h2 {
  color: var(--white);
}

.pricing-header p:last-child {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Desktop Table View */
.pricing-table-container {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.pricing-table th,
.pricing-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  width: 34%;
}

.pricing-table th {
  background-color: rgba(30, 41, 59, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table th.premium-col {
  background: linear-gradient(to bottom, var(--primary) 0%, #e03e0f 100%);
}

.pricing-table td.premium-col {
  background-color: rgba(253, 74, 24, 0.08);
  border-left: 1.5px solid rgba(253, 74, 24, 0.2);
  border-right: 1.5px solid rgba(253, 74, 24, 0.2);
}

.plan-header-title {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.plan-header-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.pricing-table .badge {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.pricing-table th.premium-col .badge {
  background-color: var(--white);
  color: var(--primary);
}

.feature-label-cell {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.check-icon {
  color: #4ade80;
  font-size: 1.2rem;
}

.premium-col .check-icon {
  color: var(--white);
}

.cross-icon {
  color: rgba(255, 255, 255, 0.15);
  font-size: 1rem;
}

.feature-value-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.premium-col .feature-value-text {
  color: var(--white);
}

.pricing-table tr:hover td {
  background-color: rgba(253, 74, 24, 0.05);
}

.pricing-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(253, 74, 24, 0.2);
  background: linear-gradient(90deg, rgba(253, 74, 24, 0.1) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pricing-footer-cta h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.pricing-footer-cta p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Mobile Pricing (Toggle tabs + cards) */
.pricing-tabs-mobile {
  display: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.25rem;
  max-width: 320px;
  margin: 0 auto 2.5rem auto;
}

.pricing-tab-btn-mobile {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

.pricing-tab-btn-mobile.active {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(253, 74, 24, 0.2);
}

.pricing-card-mobile {
  display: none;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.pricing-card-mobile.active {
  display: block;
}

.pricing-card-mobile.premium-card {
  background: linear-gradient(135deg, var(--primary) 0%, #b82700 100%);
  border: none;
}

.mobile-plan-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.mobile-plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.premium-card .mobile-plan-badge {
  background-color: var(--white);
  color: var(--primary);
}

.mobile-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.03);
}

.mobile-feature-item span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.mobile-feature-item span:last-child {
  font-weight: 700;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   TESTIMONIAL SECTION
   ═══════════════════════════════════════════ */
.testimonial-section {
  padding: 5rem 0;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 33.333%;
  padding: 0 15px;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--grey);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('../images/bg-image/7.webp');
  background-size: cover;
  background-position: center;
}

.testimonial-quote {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1.5px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-avatar .verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: var(--white);
  color: #3b82f6;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.testimonial-info p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 100px);
  left: -50px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonial-nav-btn {
  pointer-events: auto;
  background-color: var(--white);
  border: 1px solid var(--grey);
  color: var(--dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   CHATBOT WIDGET
   ═══════════════════════════════════════════ */
.chatbot-trigger {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
  border: none;
  padding: 0.25rem 1rem 0.25rem 0.25rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: softPulse 2.5s infinite;
}

.chatbot-trigger img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.chatbot-trigger span {
  font-size: 0.85rem;
}

.chatbot-box {
  position: fixed;
  bottom: 20px;
  left: 24px;
  width: 400px;
  height: 480px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chatbot-box.open {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-header-avatar {
  position: relative;
  width: 36px;
  height: 36px;
}

.chatbot-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chatbot-header-avatar .dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  border: 1.5px solid var(--white);
}

.chatbot-header-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.chatbot-header-text p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
}

.chatbot-header-actions {
  display: flex;
  gap: 0.5rem;
}

.chatbot-header-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem;
  border-radius: 4px;
}

.chatbot-header-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Chatbot Area */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: linear-gradient(to bottom, #fffcf9 0%, var(--white) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overscroll-behavior: contain;
}

.chat-msg-row {
  display: flex;
  gap: 0.5rem;
  max-width: 85%;
}

.chat-msg-row.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--white);
  font-size: 0.7rem;
}

.chat-msg-row.user .chat-msg-avatar {
  background-color: var(--primary);
}

.chat-msg-bubble {
  padding: 0.5rem 0.85rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}

.chat-msg-row.bot .chat-msg-bubble {
  background-color: var(--white);
  border: 1px solid var(--grey);
  color: var(--dark);
  border-top-left-radius: 0;
}

.chat-msg-row.user .chat-msg-bubble {
  background-color: var(--primary);
  color: var(--white);
  border-top-right-radius: 0;
}

.chat-msg-time {
  font-size: 0.6rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 0.25rem;
}

.chat-msg-row.user .chat-msg-time {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.chat-input-area {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--grey);
  background-color: var(--white);
}

.chat-input-wrap {
  display: flex;
  gap: 0.5rem;
}

.chat-input-wrap input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}

.chat-input-wrap button {
  background: var(--primary);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat scrollbar */
.chatbot-messages::-webkit-scrollbar {
  width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #fffcf9;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ═══════════════════════════════════════════
   JOB NOTIFICATION WIDGET
   ═══════════════════════════════════════════ */
.job-notify-widget {
  position: fixed;
  top: 240px;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
}

.job-notify-body {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  border-radius: 16px 0 0 16px;
  padding: 0.5rem;
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.job-notify-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
}

.job-notify-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
}

.job-notify-content {
  display: flex;
  flex-direction: column;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.job-notify-body:hover .job-notify-content,
.job-notify-body.hovered .job-notify-content {
  max-width: 180px;
  opacity: 1;
  margin-right: 0.5rem;
}

.job-notify-title {
  font-size: 0.85rem;
  font-weight: 800;
}

.job-notify-sub {
  font-size: 0.7rem;
  opacity: 0.9;
}

.job-notify-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.7;
}

.job-notify-close:hover {
  opacity: 1;
}

/* Float social switcher box (mini list) */
.job-notify-switcher {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--white);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.job-notify-body:hover .job-notify-switcher {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.job-notify-switcher-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.job-notify-switcher-btn.whatsapp {
  background-color: #22c55e;
  color: var(--white);
}

.job-notify-switcher-btn.phone {
  background-color: #3b82f6;
  color: var(--white);
}

.job-notify-switcher-btn.email {
  background-color: #a855f7;
  color: var(--white);
}

/* Keyframe animations */
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Components */
@media (max-width: 1023px) {

  .about-split,
  .team-split {
    grid-template-columns: 1fr;
  }

  .about-img-box {
    height: 380px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-col-left .tech-row:nth-child(2),
  .tech-col-right .tech-row:nth-child(2) {
    margin: 0 !important;
  }

  .tech-center {
    display: none;
  }

  .founder-img-wrap {
    height: 380px;
  }

  .pricing-table-container {
    display: none;
  }

  .pricing-tabs-mobile {
    display: flex;
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .chatbot-box {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    height: 70vh;
  }

  /* About image fix for mobile */
  .about-img-box {
    height: 280px;
    overflow: hidden;
  }

  .about-img-sub {
    display: none;
  }

  /* Graphics overlap fix for mobile */
  .graphics-overlap {
    min-height: 220px;
  }

  .graphics-img-1,
  .graphics-img-2 {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .graphics-img-2 {
    margin-bottom: 0;
  }

  /* Services fix */
  .services-info {
    padding: 1.5rem;
  }

  .services-info-header h3 {
    font-size: 1.4rem;
  }

  /* Pricing tab mobile fix */
  .pricing-mobile-card {
    padding: 1.5rem;
  }

  /* Testimonial section */
  .testimonial-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  /* Job notify widget */
  .job-notify-widget {
    top: auto;
    bottom: 80px;
  }

  /* Swiper overflow fix */
  .swiper {
    overflow: hidden;
  }

  /* Section headings */
  h2 {
    font-size: 1.6rem !important;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Top bar completely hidden */
  .top-bar {
    display: none;
  }

  /* Banner buttons fix */
  .slide-buttons {
    flex-direction: column;
  }

  /* Section padding reduction */
  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Stats row */
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Container padding */
  .container {
    padding: 0 15px;
  }
}