a {
  text-decoration: none;
}

.vision-section {
  background: #fff;
  padding: 80px 0;
  /* Info card styles */
}
.vision-section .info-card {
  padding: 40px;
  border-radius: 25px;
  height: 100%;
  /* hover styles */
}
.vision-section .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.vision-section .info-card h3 {
  color: #6b75d6;
  font-weight: 600;
  margin: 15px 0;
}
.vision-section .info-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}
.vision-section {
  /* Card backgrounds */
}
.vision-section .vision-card {
  background: #eceef9;
}
.vision-section .mission-card {
  background: #f6ebf5;
}
.vision-section .values-card {
  background: #ffeaec;
}
.vision-section .goal-card {
  background: #fff5e1;
}
.vision-section {
  /* Icon box */
}
.vision-section .icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  font-size: 22px;
}
.vision-section .icon-box.purple {
  background: linear-gradient(135deg, #6a5cff, #8e6bff);
}
.vision-section .icon-box.pink {
  background: linear-gradient(135deg, #d63384, #ff5ca8);
}
.vision-section .icon-box.red {
  background: linear-gradient(135deg, #ff4d6d, #ff7b54);
}
.vision-section .icon-box.orange {
  background: linear-gradient(135deg, #ff8c00, #ffb347);
}
.vision-section {
  /* Core values list */
}
.vision-section .core-list {
  padding-left: 20px;
  line-height: 2;
}
.vision-section .core-list li {
  margin-bottom: 6px;
}

.alt-feature-section {
  background: linear-gradient(180deg, #f8f9ff, #f2f5ff);
  padding: 100px 0;
}
.alt-feature-section .section-header {
  max-width: 720px;
  margin: auto;
  margin-bottom: 60px;
}
.alt-feature-section .section-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #6b75d6;
  margin-bottom: 15px;
}
.alt-feature-section .section-header p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}
.alt-feature-section .feature-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}
.alt-feature-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.alt-feature-section .feature-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 10px;
}
.alt-feature-section .feature-card p {
  color: #444;
  line-height: 1.7;
  font-size: 16px;
}
.alt-feature-section .feature-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-feature-section .feature-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}
.alt-feature-section .feature-icon.purple {
  color: #5a57d6;
}
.alt-feature-section .feature-icon.violet {
  color: #7a42d9;
}
.alt-feature-section .feature-icon.pink {
  color: #e83e8c;
}

/* Demo Card Page */
.card-demo-section {
  padding: 80px 0 50px;
  background: #fcfcfc;
  background: linear-gradient(180deg, #ffffff, #fff9ff);
}
.card-demo-section .demo-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  margin-bottom: 20px;
}
.card-demo-section .demo-card:hover {
  transform: translateY(-6px);
}
.card-demo-section .demo-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-demo-section .demo-card .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 5s linear;
  will-change: transform;
}
.card-demo-section .demo-card .card-image .badge-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #eef2ff, #fff5ff, #fff);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.card-demo-section .demo-card .card-content {
  padding: 22px;
}
.card-demo-section .demo-card .card-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}
.card-demo-section .demo-card .card-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; /* Added missing hyphen here */
  overflow: hidden;
}
.card-demo-section .demo-card .card-content .card-buttons {
  display: flex;
  gap: 10px;
}
.card-demo-section .demo-card .card-content .card-buttons a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.card-demo-section .demo-card .card-content .card-buttons a svg {
  height: 20px;
  width: 20px;
}
.card-demo-section .demo-card .card-content .card-buttons .btn-light {
  background: #f0f0f5;
}
.card-demo-section .demo-card .card-content .card-buttons .btn-primary {
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: white;
}

/* Demo Card Detail Page */
.demo-details-section {
  padding: 80px 0;
}
.demo-details-section .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.demo-details-section .subtitle {
  color: #555;
  margin-bottom: 10px;
}
.demo-details-section .description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}
.demo-details-section .category-badge {
  background: #e8ebff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}
.demo-details-section .price-box {
  background: #f3f5ff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.demo-details-section .price-box h3 {
  font-weight: 700;
  color: #4a5bdc;
}
.demo-details-section .price-box h3 span {
  font-size: 14px;
  color: #666;
}
.demo-details-section .cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.demo-details-section .cta-buttons a {
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-decoration: none;
}
.demo-details-section .cta-buttons a svg {
  height: 20px;
  width: 20px;
}
.demo-details-section .cta-buttons .btn-primary {
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: white;
}
.demo-details-section .cta-buttons .btn-outline {
  border: 1px solid #ddd;
}
.demo-details-section .info-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
}
.demo-details-section .info-card h5 {
  margin-bottom: 15px;
}
.demo-details-section .info-card ul {
  padding: 0;
  list-style: none;
}
.demo-details-section .info-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.demo-details-section .info-card ul li svg {
  color: #30c77b;
  height: 20px;
  width: 20px;
}
.demo-details-section .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.demo-details-section .tags span {
  background: #eef0ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* gallery */
.gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
}
.gallery-main .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.gallery-main .left {
  left: 10px;
}
.gallery-main .right {
  right: 10px;
}
.gallery-main .image-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.gallery-thumbs .thumb {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery-thumbs .thumb.active {
  border-color: #5f5bff;
}

/* related */
.related-section {
  background: #f7f8fc;
  padding: 70px 0;
}
.related-section .related-card {
  width: 250px;
  margin: auto;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.related-section .related-card img {
  width: 100%;
}
.related-section .related-card .card-body {
  padding: 15px;
  text-align: left;
}
.related-section .related-card .badge {
  background: #eee;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
}
.related-section .view-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(45deg, #5f5bff, #8b3dff);
  color: white;
}

/* blogs list Page */
.blog-demo-section {
  padding: 80px 0 50px;
  background: #f5f6fb;
  background: linear-gradient(180deg, #ffffff, #fff9ff);
}
.blog-demo-section .demo-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  height: 100%;
}
.blog-demo-section .demo-card:hover {
  transform: translateY(-8px);
}
.blog-demo-section .demo-card:hover .card-image img {
  transform: scale(1.08);
}
.blog-demo-section .demo-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-demo-section .demo-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.blog-demo-section .demo-card .card-image .badge-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.blog-demo-section .demo-card .card-content {
  padding: 22px;
}
.blog-demo-section .demo-card .card-content .date-author {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: #777;
}
.blog-demo-section .demo-card .card-content .date-author span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-demo-section .demo-card .card-content .date-author svg {
  width: 16px;
  height: 16px;
}
.blog-demo-section .demo-card .card-content .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: 0.3s;
}
.blog-demo-section .demo-card .card-content .card-title:hover {
  color: #5f5bff;
}
.blog-demo-section .demo-card .card-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
.blog-demo-section .demo-card .card-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #5f5bff;
  text-decoration: none;
}
.blog-demo-section .demo-card .card-content .read-more svg {
  width: 16px;
  transition: 0.3s;
}
.blog-demo-section .demo-card .card-content .read-more:hover svg {
  transform: translateX(4px);
}

/*** Blogs Details Page ***/
.blog-details {
  padding: 140px 0 50px;
  background: #f6f7fb;
}
.blog-details .blog-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.blog-details .blog-top .back-link {
  color: #6b75d6;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.blog-details .blog-top .badge-tech {
  background: #6b75d6;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}
.blog-details .blog-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-details .blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.blog-details .blog-meta img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.blog-details .blog-meta .meta-info {
  margin-left: auto;
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
}
.blog-details .blog-image img {
  width: 100%;
  border-radius: 15px;
}
.blog-details .blog-content-part {
  align-items: flex-start;
}
.blog-details .blog-content-part .left-box {
  flex: 1;
}
.blog-details .blog-content-part .right-box {
  position: sticky;
  top: 100px;
}
.blog-details .blog-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.blog-details .blog-content h5.tag-tile {
  font-weight: 600;
}
.blog-details .blog-content .tags {
  margin-top: 25px;
}
.blog-details .blog-content .tags span {
  background: #eeeeee;
  color: #000000;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.blog-details {
  /* SIDEBAR */
}
.blog-details .sidebar-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}
.blog-details .sidebar-box h6 {
  margin-bottom: 15px;
  font-weight: 600;
}
.blog-details .share-icons {
  display: flex;
  gap: 10px;
}
.blog-details .share-icons a {
  background: #eef1ff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  color: #fff;
  text-decoration: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.blog-details .share-icons a.twitter-share {
  background-color: #1da1f2;
}
.blog-details .share-icons a.facebook-share {
  background-color: #1877f2;
}
.blog-details .share-icons a.linkedin-share {
  background-color: #0a66c2;
}
.blog-details .share-icons a.link-share {
  background-color: #6c757d;
}
.blog-details .author-box {
  text-align: center;
}
.blog-details .author-box h6 {
  margin-bottom: 0;
}
.blog-details .author-box span {
  color: #969696;
  font-size: 14px;
}
.blog-details .author-box p {
  font-size: 14px;
}
.blog-details .author-box img {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.blog-details .cta-box {
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: white;
  text-align: center;
}
.blog-details .cta-box h5 {
  font-weight: 600;
}
.blog-details .cta-box a {
  text-decoration: none;
  font-weight: 600;
}
.blog-details .cta-box .btn-gradient {
  background: white;
  color: #6b75d6;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 10px;
}

/* blog details page RELATED */
.blog-related-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #eef2ff, #fff5ff, #fff);
}
.blog-related-section .related-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}
.blog-related-section .related-card img {
  width: 100%;
}
.blog-related-section .related-card .content {
  padding: 15px;
}
.blog-related-section .related-card .content .category {
  color: #6b75d6;
  font-size: 12px;
}
.blog-related-section .related-card .content h6 {
  margin: 10px 0;
  font-weight: 600;
}
.blog-related-section .related-card .content a {
  color: #6b75d6;
  font-weight: 500;
  font-size: 14px;
}

/* Contact Us Page */
.contact-section {
  padding: 80px 0;
  background: #f5f6fb;
}
.contact-section .section-header {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}
.contact-section .section-header h2 {
  color: #6b75d6;
  font-weight: 600;
}
.contact-section .section-header p {
  color: #666;
}
.contact-section .contact-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.contact-section .contact-card .icon-box i {
  background: linear-gradient(45deg, #5f5bff, #8b3dff);
  color: white;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.contact-section .contact-card h6 {
  font-weight: 600;
}
.contact-section .contact-card p {
  margin-bottom: 0;
}
.contact-section .contact-card span {
  color: #5f5bff;
  font-size: 14px;
  font-weight: 600;
}
.contact-section .form-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.contact-section .form-box input,
.contact-section .form-box textarea,
.contact-section .form-box select {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.contact-section .map-box iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  border: none;
}
.contact-section .office-box {
  margin-top: 20px;
  padding: 25px;
  border-radius: 15px;
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  color: white;
}
.contact-section .office-box .text-node {
  font-size: 14px;
}
.contact-section .office-box .office-btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.contact-section .office-box .office-btns a {
  text-decoration: none;
  font-weight: 600;
  width: 50%;
  justify-content: center;
  text-align: center !important;
}
.contact-section .office-box .office-btns .btn-light {
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
}
.contact-section .office-box .office-btns .btn-gradient {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 10px;
}
.contact-section .btn-gradient {
  background: linear-gradient(135deg, #7c6cff, #6b63d9);
  border: 0;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9ff, #f2f5ff);
}
.faq-section .accordion-item {
  background: white;
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.faq-section .accordion-item .accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: white;
  border: none;
  font-weight: 500;
}
.faq-section .accordion-item .accordion-header .faq-icon {
  transition: 0.3s;
  float: right;
}
.faq-section .accordion-item {
  /* when open */
}
.faq-section .accordion-item .accordion-header[aria-expanded=true] .faq-icon {
  transform: rotate(180deg);
}
.faq-section .accordion-item .accordion-body {
  padding: 15px;
  color: #666;
}

/**** Privacy Policy Page ****/
.privacy-page {
  padding: 140px 0 50px;
  background: linear-gradient(180deg, #f8f9ff, #f2f5ff);
  /* HEADER */
}
.privacy-page .privacy-header {
  margin-bottom: 50px;
}
.privacy-page .privacy-header h1 {
  font-size: 42px;
  font-weight: 600;
  color: #6b75d6;
}
.privacy-page .privacy-header p {
  color: #888;
}
.privacy-page {
  /* SIDEBAR */
}
.privacy-page .privacy-sidebar {
  position: sticky;
  top: 100px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.privacy-page .privacy-sidebar a {
  display: block;
  padding: 8px 0;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.privacy-page .privacy-sidebar a:hover {
  color: #5f5bff;
  padding-left: 5px;
}
.privacy-page {
  /* CONTENT */
}
.privacy-page .privacy-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.privacy-page .privacy-content section {
  margin-bottom: 30px;
  scroll-margin-top: 120px;
}
.privacy-page .privacy-content section h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.privacy-page .privacy-content section p,
.privacy-page .privacy-content section li {
  color: #666;
  line-height: 1.7;
}
.privacy-page .privacy-content section ul {
  padding-left: 18px;
}

/**** Terms & Condination Page ****/
.terms-page {
  padding: 140px 0 50px;
  background: linear-gradient(180deg, #f8f9ff, #f2f5ff);
  /* HEADER */
}
.terms-page .terms-header {
  margin-bottom: 50px;
}
.terms-page .terms-header h1 {
  font-size: 42px;
  font-weight: 600;
  color: #6b75d6;
}
.terms-page .terms-header p {
  color: #888;
}
.terms-page {
  /* SIDEBAR */
}
.terms-page .terms-sidebar {
  position: sticky;
  top: 100px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.terms-page .terms-sidebar a {
  display: block;
  padding: 8px 0;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.terms-page .terms-sidebar a:hover {
  color: #5f5bff;
  padding-left: 5px;
}
.terms-page {
  /* CONTENT */
}
.terms-page .terms-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.terms-page .terms-content section {
  margin-bottom: 30px;
  scroll-margin-top: 120px;
}
.terms-page .terms-content section h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.terms-page .terms-content section p,
.terms-page .terms-content section li {
  color: #666;
  line-height: 1.7;
}
.terms-page .terms-content section ul {
  padding-left: 18px;
}

/* ================================
   Inquiry Modal
================================ */
.inquiry-modal .modal-dialog {
  max-width: 720px;
}
.inquiry-modal .modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18), 0 8px 25px rgba(15, 23, 42, 0.08);
}
.inquiry-modal {
  /* Header */
}
.inquiry-modal .modal-header {
  position: relative;
  align-items: flex-start;
  padding: 30px 34px 24px;
  border-bottom: 1px solid #eef1f5;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 35%), #ffffff;
}
.inquiry-modal .modal-label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #6366f1;
}
.inquiry-modal .modal-title {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
}
.inquiry-modal .modal-subtitle {
  max-width: 500px;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}
.inquiry-modal {
  /* Close Button */
}
.inquiry-modal .btn-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 38px;
  height: 38px;
  padding: 0;
  background-size: 12px;
  background-color: #f5f7fa;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.25s ease;
}
.inquiry-modal .btn-close:hover {
  background-color: #e9edf3;
  transform: rotate(90deg);
}
.inquiry-modal {
  /* Modal Body */
}
.inquiry-modal .modal-body {
  padding: 30px 34px;
}
.inquiry-modal {
  /* Labels */
}
.inquiry-modal .form-label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #344054;
}
.inquiry-modal .form-label span {
  color: #ef4444;
}
.inquiry-modal {
  /* Input Wrapper */
}
.inquiry-modal .input-wrapper {
  position: relative;
}
.inquiry-modal .input-wrapper > svg {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 5;
  width: 18px;
  height: 18px;
  color: #98a2b3;
  transform: translateY(-50%);
  pointer-events: none;
}
.inquiry-modal {
  /* Inputs */
}
.inquiry-modal .form-control {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px 12px 46px;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.25s ease;
}
.inquiry-modal .form-control::placeholder {
  color: #98a2b3;
}
.inquiry-modal .form-control:hover {
  border-color: #cbd5e1;
}
.inquiry-modal .form-control:focus {
  color: #111827;
  background: #ffffff;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.inquiry-modal {
  /* Price Plan Dropdown */
}
.inquiry-modal .form-select {
  width: 100%;
  min-height: 52px;
  padding: 12px 45px 12px 46px;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  background-color: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.inquiry-modal .form-select:hover {
  border-color: #cbd5e1;
}
.inquiry-modal .form-select:focus {
  background-color: #ffffff;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.inquiry-modal .select-wrapper {
  position: relative;
}
.inquiry-modal .select-wrapper > svg {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 5;
  width: 18px;
  height: 18px;
  color: #98a2b3;
  transform: translateY(-50%);
  pointer-events: none;
}
.inquiry-modal {
  /* Textarea */
}
.inquiry-modal .textarea-wrapper > svg {
  top: 18px;
  transform: none;
}
.inquiry-modal textarea.form-control {
  min-height: 130px;
  padding-top: 15px;
  resize: vertical;
}
.inquiry-modal {
  /* Captcha */
}
.inquiry-modal .captcha-wrapper {
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 15px;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
}
.inquiry-modal {
  /* Footer */
}
.inquiry-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 34px 28px;
  background: #ffffff;
  border-top: 1px solid #eef1f5;
}
.inquiry-modal {
  /* Cancel */
}
.inquiry-modal .btn-cancel {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: #475467;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 11px;
  transition: all 0.25s ease;
}
.inquiry-modal .btn-cancel:hover {
  color: #111827;
  background: #f9fafb;
  border-color: #b8c0cc;
}
.inquiry-modal .captcha-wrapper {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 14px;
}
.inquiry-modal .captcha-wrapper .captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  min-height: 65px;
  padding: 10px 15px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  flex-wrap: wrap;
}
.inquiry-modal .captcha-wrapper .captcha-code {
  position: relative;
  padding: 8px 18px;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 7px;
  color: #4f46e5;
  background: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(99, 102, 241, 0.08) 6px, transparent 7px);
  user-select: none;
}
.inquiry-modal .captcha-wrapper .captcha-code::before, .inquiry-modal .captcha-wrapper .captcha-code::after {
  content: "";
  position: absolute;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #ef4444;
  opacity: 0.55;
}
.inquiry-modal .captcha-wrapper .captcha-code::before {
  top: 45%;
  transform: rotate(-7deg);
}
.inquiry-modal .captcha-wrapper .captcha-code::after {
  top: 58%;
  transform: rotate(5deg);
}
.inquiry-modal .captcha-wrapper .captcha-refresh {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  font-size: 22px;
  color: #6366f1;
  background: #f5f7fa;
  border: 1px solid #e4e7ec;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}
.inquiry-modal .captcha-wrapper .captcha-refresh:hover {
  color: #ffffff;
  background: #6366f1;
  border-color: #6366f1;
  transform: rotate(180deg);
}
.inquiry-modal .captcha-wrapper .captcha-input {
  padding-left: 16px;
}
.inquiry-modal {
  /* Submit */
}
.inquiry-modal .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.2);
  transition: all 0.25s ease;
}
.inquiry-modal .btn-submit svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}
.inquiry-modal .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.28);
}
.inquiry-modal .btn-submit:hover svg {
  transform: translateX(3px);
}
.inquiry-modal {
  /* ================================
     Mobile
  ================================ */
}
@media (max-width: 767px) {
  .inquiry-modal .modal-dialog {
    margin: 15px;
  }
  .inquiry-modal .modal-content {
    border-radius: 18px;
  }
  .inquiry-modal .modal-header {
    padding: 25px 22px 20px;
  }
  .inquiry-modal .modal-title {
    padding-right: 35px;
    font-size: 23px;
  }
  .inquiry-modal .modal-subtitle {
    padding-right: 15px;
  }
  .inquiry-modal .btn-close {
    top: 18px;
    right: 18px;
  }
  .inquiry-modal .modal-body {
    padding: 25px 22px;
  }
  .inquiry-modal .modal-footer {
    padding: 18px 22px 24px;
  }
}
.inquiry-modal {
  /* ================================
     Small Mobile
  ================================ */
}
@media (max-width: 480px) {
  .inquiry-modal .modal-footer {
    flex-direction: column-reverse;
  }
  .inquiry-modal .btn-cancel,
  .inquiry-modal .btn-submit {
    width: 100%;
  }
  .inquiry-modal .captcha-wrapper {
    overflow-x: auto;
  }
}

/*# sourceMappingURL=innerPage.css.map */
