/* aicitys-lite.css — single CSS replacement for:
   bootstrap.min.css (grid only), style.css (used parts), responsive.css (used parts),
   mainpage.css, jquery-ui.css (unused), motion-ui.min.css (unused)
   Keeps: app.css (Tailwind utilities) as separate file */

/* ========== Bootstrap Grid Replacement ========== */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12,
.col-sm-6 { width: 100%; }
@media (min-width: 576px) { .col-sm-6 { width: 50%; } }
@media (min-width: 992px) {
  .col-lg-4 { width: 33.333333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-12 { width: 100%; }
}
.align-items-center { align-items: center; }
.list-unstyled { padding-left: 0; list-style: none; }
.h-100 { height: 100%; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.p-5 { padding: 3rem; }

/* ========== Spacing ========== */
.ptb-100 { padding-top: 100px; padding-bottom: 100px; }
.pt-100 { padding-top: 100px; }
.pb-70 { padding-bottom: 70px; }

/* ========== Section Title ========== */
.section-title {
  max-width: 625px;
  margin: -9px auto 60px;
  text-align: center;
  position: relative;
}
.section-title span {
  font-size: 14px;
  color: #1dd3f8;
  display: inline-block;
  margin-bottom: 5px;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  display: block;
}
.section-title h2:last-child { margin-bottom: 0; }

/* ========== Default Button ========== */
.default-btn {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  padding: 18px 35px;
  line-height: 1;
  transition: all 0.5s;
  z-index: 1;
  text-transform: capitalize;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: #1dd3f8;
  display: inline-block;
  text-decoration: none;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: -20px; left: -40px;
  width: 10px; height: 100px;
  background-color: #ffffff;
  opacity: 0.5;
  transition: all 0.5s;
  transform: rotate(45deg);
}
.default-btn::after {
  content: "";
  position: absolute;
  top: -20px; right: -40px;
  width: 10px; height: 100px;
  background-color: #ffffff;
  opacity: 0.5;
  transition: all 0.5s;
  transform: rotate(45deg);
}
.default-btn:hover { color: #ffffff; }
.default-btn:hover::before { left: 200px; }
.default-btn:hover::after { right: 200px; }

/* ========== Offer Section ========== */
@keyframes animationFramesOne {
  0% { transform: translate(0px, 0px) rotate(0deg); }
  20% { transform: translate(73px, -1px) rotate(36deg); }
  40% { transform: translate(141px, 72px) rotate(72deg); }
  60% { transform: translate(83px, 122px) rotate(108deg); }
  80% { transform: translate(-40px, 72px) rotate(144deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

.offer-area {
  background-color: #f2fefe;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.offer-area .offer-shape img {
  position: absolute;
  z-index: -1;
}
.offer-area .offer-shape img:nth-child(1) { bottom: 0; left: 0; }
.offer-area .offer-shape img:nth-child(2) { top: 0; right: 0; }
.offer-area .offer-shape img:nth-child(3) { top: 100px; left: 200px; animation: animationFramesOne 25s infinite linear; }
.offer-area .offer-shape img:nth-child(4) { bottom: 80px; right: 200px; animation: animationFramesOne 20s infinite linear; }
.offer-area .offer-shape img:nth-child(5) { top: 100px; right: 200px; animation: animationFramesOne 15s infinite linear; }
.offer-area .offer-shape img:nth-child(6) { bottom: 80px; left: 500px; animation: animationFramesOne 10s infinite linear; }

.single-offer {
  position: relative;
  padding: 30px 30px 30px 80px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px dotted #1dd3f8;
  transition: all 0.5s;
  margin-bottom: 30px;
}
.single-offer .offer-icon {
  position: absolute;
  left: 20px;
  top: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #eeeefe;
}
.single-offer .offer-icon svg {
  width: 22px;
  height: 22px;
}
.single-offer h3 { margin-bottom: 10px; }
.single-offer:hover { transform: translateY(-5px); }

/* Offer color variants */
.col-lg-4:nth-child(2) .single-offer { border-color: #76b8f5; }
.col-lg-4:nth-child(2) .single-offer .offer-icon { background-color: #e8f3fd; color: #76b8f5; }
.col-lg-4:nth-child(3) .single-offer { border-color: #1ccdca; }
.col-lg-4:nth-child(3) .single-offer .offer-icon { background-color: #e6fdfc; color: #1ccdca; }
.col-lg-4:nth-child(4) .single-offer { border-color: #f9ca54; }
.col-lg-4:nth-child(4) .single-offer .offer-icon { background-color: #fcf3dc; color: #f9ca54; }
.col-lg-4:nth-child(5) .single-offer { border-color: #ff896b; }
.col-lg-4:nth-child(5) .single-offer .offer-icon { background-color: #fde2db; color: #ff896b; }
.col-lg-4:nth-child(6) .single-offer { border-color: #50d890; }
.col-lg-4:nth-child(6) .single-offer .offer-icon { background-color: #e7fdf1; color: #50d890; }

/* Offer-area-two hover */
.offer-area-two .single-offer:hover { background-color: #1dd3f8; }
.offer-area-two .single-offer:hover h3 { color: #ffffff; }
.offer-area-two .single-offer:hover p { color: #ffffff; }

/* ========== Business Section ========== */
.business-area { overflow: hidden; }
.business-area .default-btn { margin-top: 10px; }
.business-content h2 {
  font-size: 40px;
  margin-top: -9px;
  margin-bottom: 40px;
}

/* ========== FAQ Section ========== */
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-item {
  border-radius: 5px;
  display: block;
  box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
  background: #ffffff;
  margin-bottom: 15px;
}
.faq-accordion .accordion .accordion-item:last-child { margin-bottom: 0; }
.faq-accordion .accordion .accordion-title {
  padding: 20px 60px 17px 25px;
  color: #212121;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}
.faq-accordion .accordion .accordion-title svg {
  position: absolute;
  right: 25px;
  top: 23px;
  width: 20px;
  height: 20px;
  transition: 0.5s;
}
.faq-accordion .accordion .accordion-title.active svg {
  transform: rotate(180deg);
}
.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: -5px;
  padding-bottom: 20px;
  padding-right: 60px;
  padding-left: 25px;
}
.faq-accordion .accordion .accordion-content p { line-height: 1.8; }
.faq-accordion .accordion .accordion-content.show { display: block; }

.faq-img { text-align: center; }
.faq-img img { max-width: 100%; }

/* ========== mainpage.css — Business Cards ========== */
.icon-image {
  object-fit: contain;
  transition: transform 0.3s ease;
}
.single-business:hover .icon-image { transform: scale(1.1); }
.single-business {
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.1);
}
.single-business:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.single-business h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #2d3748;
}
.single-business li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}
.single-business li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #2d3748;
}

/* ========== Chat Widget ========== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
@keyframes vibrate {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(2px, 2px) rotate(2deg); }
  50% { transform: translate(-2px, -2px) rotate(-2deg); }
  75% { transform: translate(1px, -1px) rotate(1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.chat-button {
  cursor: pointer;
  width: 90px;
  height: 90px;
  background: #2d3748;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: vibrate 1.5s ease-in-out infinite;
}
.chat-button:hover { transform: scale(1.1); animation: none; }
.chat-button img { width: 70%; height: auto; pointer-events: none; }

.chat-container {
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
}
.chat-container.active {
  display: flex;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.chat-header {
  background: #2d3748;
  color: white;
  padding: 15px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h3 { color: white; margin: 0; }
.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}
.message {
  margin: 10px 0;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
}
.message.bot { background: #f1f5f9; align-self: flex-start; }
.message.user { background: #2d3748; color: white; margin-left: auto; }
.chat-input {
  padding: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #e2e8f0;
}
.chat-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
}
.send-btn {
  background: #2d3748;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.send-btn svg { width: 16px; height: 16px; }

/* Chat social icons */
.message-social-icons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.3s;
}
.social-link:hover { background: #2d3748; color: white; }
.social-link svg { width: 16px; height: 16px; }

/* Typing indicator */
.typing-indicator {
  background-color: #f1f5f9;
  padding: 12px 16px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: #94a3b8;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

/* ========== Page Title (privacy page) ========== */
.page-title-area {
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 150px;
  background-color: #04063c;
}
.page-title-content h2 {
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}
.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
}
.page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-right: 10px;
  color: #ffffff;
}
.page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -3px;
  background-color: #1dd3f8;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.page-title-content ul li:last-child::before { display: none; }
.page-title-content ul li a { color: #ffffff; }
.page-title-content ul li a:hover { color: #1dd3f8; }

.single-privacy { max-width: 1020px; margin: auto; }
.single-privacy h3 { margin-top: 25px; margin-bottom: 10px; }
.single-privacy p { line-height: 1.8; margin-bottom: 10px; }

/* ========== Responsive ========== */
@media only screen and (max-width: 767px) {
  .ptb-100 { padding-top: 50px; padding-bottom: 50px; }
  .pt-100 { padding-top: 50px; }
  .pb-70 { padding-bottom: 20px; }
  .default-btn { padding: 14px 20px; }
  .section-title { margin: -9px auto 40px; }
  .section-title h2 { font-size: 25px; margin-bottom: 15px; }
  .offer-area .offer-shape img:nth-child(2) { opacity: 0.3; }
  .business-content h2 { font-size: 25px; margin-bottom: 30px; }
  .business-area .default-btn { margin-top: 0; }
  .faq-img { text-align: center; margin-top: 30px; }
  .faq-accordion .accordion .accordion-title { font-size: 16px; }
  .single-offer { padding: 20px; text-align: center; }
  .single-offer .offer-icon { position: static; margin-bottom: 15px; }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-offer { padding-left: 20px; }
  .single-offer .offer-icon { position: static; margin-bottom: 20px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb-100 { padding-top: 60px; padding-bottom: 60px; }
  .pt-100 { padding-top: 60px; }
  .pb-70 { padding-bottom: 30px; }
  .default-btn { padding: 14px 20px; }
  .section-title { margin: -9px auto 40px; }
  .section-title h2 { font-size: 30px; margin-bottom: 15px; }
  .offer-area .offer-shape img:nth-child(2) { opacity: 0.3; }
  .business-content h2 { font-size: 30px; margin-bottom: 30px; }
  .business-area .default-btn { margin-top: 0; }
  .faq-img { margin-top: 30px; text-align: center; }
  .faq-accordion .accordion .accordion-title { font-size: 16px; }
  .single-offer { padding: 20px; text-align: center; }
  .single-offer .offer-icon { position: static; margin-bottom: 15px; }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-offer { padding: 20px; text-align: center; }
  .single-offer .offer-icon { position: static; margin-bottom: 15px; }
}
