.efeature-container {
  padding: 60px 20px;
  text-align: center;
}

.efeature-heading {
  color: #556677;
  margin-bottom: 20px;
  font-weight: 500;
}

.efeature-subtext {
  color: #707986;
  max-width: 800px;
  margin: 0 auto 50px;
}

.efeature-card {
  padding: 30px 20px;
  height: 100%;
  transition: transform 0.3s;
}

.efeature-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.efeature-icon i {
  font-size: 24px;
  color: white;
}

.efeature-icon.purple {
  background-color: #7b42f6;
}

.efeature-icon.orange {
  background-color: #f5784b;
}

.efeature-icon.yellow {
  background-color: #f3c13a;
}

.efeature-title {
  font-weight: 500;
  color: #4d5b6a;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.efeature-text {
  color: #6e7c8c;
  font-size: 15px;
  line-height: 1.6;
}

.efeature-link {
  color: #5d75f7;
  text-decoration: none;
  font-weight: 500;
}

/* promotion */
.promote-banner {
  background-color: #f4f5fa;
  padding: 60px 20px;
  text-align: center;
}

.promote-heading {
  font-size: 2.5rem;
  color: #1e2b3a;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promote-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.promote-feature {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.promote-icon {
  color: #00a67d;
  margin-right: 8px;
  font-size: 1.2rem;
}

.promote-feature-text {
  color: #4d5b6a;
  font-size: 1.1rem;
  font-weight: 500;
}

.promote-button {
  background-color: #2262c6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(12, 228, 122, 0.3);
}

.promote-button:hover {
  background-color: #2262c6;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .promote-heading {
    font-size: 2rem;
  }

  .promote-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .promote-feature {
    margin: 0;
  }
}

/* why us  */
.whyus-container {
  position: relative;
  overflow: hidden;
}

.whyus-section {
  padding: 40px 0;
}

.whyus-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.whyus-subheading {
  margin-bottom: 20px;
  line-height: 1.6;
}

.whyus-highlight {
  font-weight: 700;
}

.whyus-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.whyus-icon {
  color: #4caf50;
  font-size: 1.5rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.whyus-feature-text {
  font-size: 1rem;
  color: #333;
}

.whyus-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  border: 2px solid #222;
  border-radius: 50px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whyus-cta:hover {
  background-color: #222;
  color: white;
}

.whyus-image {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {


  .whyus-heading {
    font-size: 2rem;
  }

  .whyus-image-col {
    margin-bottom: 30px;
  }
}



/* video */

.main-title {
  color: #4A5568;
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0;
  font-weight: 600;
}

.language-card {
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-color: #fff;
}

.language-card.active {
  background-color: #EF4444;
  color: white;
}

.language-card:not(.active):hover {
  border-color: #EF4444;
  background-color: #FEE2E2;
}

.language-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.language-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

.videos-section {
  border-radius: 15px;
  padding: 1rem;
  height: 100%;
  overflow: hidden;
}

.videos-carousel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  transition: transform 0.5s ease;
}

.video-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button::after {
  content: '';
  border-left: 20px solid #006B4C;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
}

.close-modal {
  position: absolute;
  top: -35px;
  right: 0;
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.youtube-frame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.language-content {
  background-color: #f8f9fa;
  padding: 2rem;
  height: 100%;
  border-radius: 15px;
}

.video-container {
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.video-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  min-width: 100%;
  flex-shrink: 1;
}

/* pricing */



.pricing-container {
  padding: 60px 15px;
}

.pricing-card {
  background-color: #f4f5fa;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f1f2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.pricing-icon {
  font-size: 32px;
}

.pricing-icon.basic {
  color: #8BC34A;
}

.pricing-icon.professional {
  color: #5B7CFA;
}

.pricing-icon.enterprise {
  color: #E91E63;
}

.pricing-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2038;
  margin-bottom: 20px;
}

.pricing-price {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0a1733;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature {
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.pricing-feature-icon {
  margin-right: 10px;
  flex-shrink: 0;
}

.pricing-feature-icon.available {
  color: #4CAF50;
}

.pricing-feature-icon.unavailable {
  color: #F44336;
}

.pricing-feature-text {
  color: #444;
}

.pricing-feature-text.unavailable {
  text-decoration: line-through;
  color: #999;
}

.pricing-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 120px;
  background-color: #e91e63;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  letter-spacing: 1px;
}

/* testimonials section */



.testimonial-container {
  position: relative;
  padding: 0 50px;
  margin: 0 auto;
  max-width: 1000px;
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-card {
  background: white;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 0 0 auto;
  width: calc(33.333% - 20px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.initials {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.user-info {
  overflow: hidden;
}

.user-info h4 {
  margin: 0;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-info p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-body {
  color: #343a40;
  font-style: italic;
  line-height: 1.6;
}

.quote-icon {
  color: #e9ecef;
  font-size: 24px;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  margin-top: 10px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  color: #343a40;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #007bff;
  color: white;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .testimonial-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: calc(100% - 20px);
  }

  .testimonial-container {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .testimonial-container {
    padding: 0 30px;
  }

  .nav-button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .initials {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testimonial-card {
    padding: 15px;
  }
}

/* contact form */

.contact-container {
  /* min-height: 100vh; */
  background-color: white;
  color: black;
}

.contact-left {
  padding: 4rem 2rem;
}

.contact-right {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  color: #333;
}

.contact-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-highlight {
  color:#2262c6 ;
}

.contact-info {
  margin-top: 4rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  /* padding: 0.8rem 1rem; */
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
  margin-right: 1rem;
  color: #00b881;
}

.contact-social {
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
}

.contact-social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-social-icon.primary {
  background-color: #00b881;
}

.contact-social-icon:hover {
  background-color: #00b881;
  transform: translateY(-3px);
}

.contact-form-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #444;
}

.contact-interest {
  margin-bottom: 1.5rem;
}

.contact-interest-btn {
  margin: 0.25rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  background-color: white;
  color: #666;
  transition: all 0.2s ease;
}

.contact-interest-btn.active {
  background-color: #00b881;
  color: white;
  border-color: #00b881;
}

.contact-input {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}

.contact-submit-btn {
  background-color: #2262c6;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #2262c6;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .contact-left {
    padding: 2rem 1rem;
  }

  .contact-right {
    margin: 1rem;
  }

  .contact-heading {
    font-size: 2.5rem;
  }
}

/* integrated solution */
.sol-header {
  text-align: center;
  margin: 2rem 0;
  color: #333;
  font-weight: 600;
}

.sol-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.sol-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sol-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.sol-feature-name {
  font-weight: 500;
  font-size: 1.25rem;
  color: #333;
}

.sol-container {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 2rem 0;
}

@media (max-width: 767px) {
  .sol-feature-item {
      margin-bottom: 1rem;
  }
}

/* why us  */
.best-card {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  border: none;
  background: #fff;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.best-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.best-card-title {
  font-weight: bold;
  color: #212529;
}

.best-card-text {
  color: #495057;
}

.best-center-image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.best-phone-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.best-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 991px) {
  .best-center-image {
      margin-top: 20px;
      margin-bottom: 20px;
  }
}


  /* Center the modal vertically */
  .offerpopup-center .modal-dialog {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Smooth fade-in effect */
.offerpopup-fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}

.offerpopup-show .modal-dialog {
    transform: scale(1);
}

/* Popup Styling */
.offerpopup-content {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.offerpopup-header {
    background-color: #2262c6;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.offerpopup-body {
    text-align: center;
    padding: 20px;
}

.offerpopup-btn {
    background-color: #fd7e14;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.offerpopup-btn:hover {
    background-color: #e5be66;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .offerpopup-content {
        width: 90%;
        margin: auto;
    }

    .offerpopup-body {
        font-size: 14px;
        padding: 15px;
    }

    .offerpopup-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.freetrail{
  color: white !important;
}

