/*-----------------------------------------------------------------------------

#AMI section

-----------------------------------------------------------------------------------*/


.section .aminewsection {
      padding: 80px 0;
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      margin: 50px 20px;
    }
   .aminewsection .video-container video {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    }
    .aminewsection .btn-modern {
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: bold;
    }
	
	.aminewsection h2{
		
		font-size: 3rem;
        color: #fff;
        text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
	}


/* Video styles */
.custom-video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-video-wrapper .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 20px;
    transition: background 0.5s ease;
}
.hover-overlay {
  pointer-events: none; /* Allow clicks to pass through */
}

.custom-video-wrapper:hover iframe {
    transform: scale(1.05);
}

.custom-video-wrapper:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Modern Text */
.modern-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1F2937; /* dark gray */
    line-height: 1.2;
}

.modern-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #4B5563; /* lighter gray */
    line-height: 1.6;
}

/* Modern Button */
.btn-modern {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    background: linear-gradient(135deg, #6366F1, #8B5CF6); /* nice purple gradient */
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
}

@keyframes fadeInMoveUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-page-header-amiassistantnew {
  animation: fadeInMoveUp 1.5s ease-out forwards;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-page-header-amiassistantnew .container h2{
	 font-size:60px;
	
	
}

.single-page-header-amiassistantnew .container{
	position: absolute;
  top: 50%;
  left: 20px;
	
	
}



 .svideo-card {
      background-color: #2c2c2c;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
    .svideo-card video {
      width: 100%;
      height: auto;
      display: block;
    }
    .svideo-card .content {
      padding: 20px;
    }
    .svideo-card .title {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .svideo-card .subtitle {
      font-size: 1rem;
      color: #a0a0a0;
      margin-top: 5px;
    }
    .svideo-card .author {
      font-size: 0.9rem;
      color: #00d1b2;
      margin-top: 10px;
    }



/*-----------------------------------------------------------------

MEETINGS section

-----------------------------------------------------------------------*/


 .section-meetings {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* h2 { */
      /* text-align: center; */
      /* font-size: 36px; */
      /* color: #333; */
      /* margin-bottom: 40px; */
    /* } */

    .meeting {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .meeting:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .meeting h3 {
      font-size: 28px;
      color: #2c3e50;
      margin-right: 20px;
      flex-basis: 25%;
    }

    video {
      border-radius: 8px;
      width: 320px;
      height: 240px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    p {
      flex-grow: 1;
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    /* Animation for heading */
    h2 {
      animation: fadeIn 1s ease-out;
    }

    /* Hover animation */
    .meeting:hover h3 {
      color: #3498db;
    }

    /* Keyframes for fade-in effect */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
	
	
	
/*----------------------------------------------------------------

In-car Communication
------------------------------------------------------------------*/

 .incarsection {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      animation: slideIn 1s ease-out;
    }

    .incarsection h2 {
      text-align: center;
      font-size: 36px;
      color: #333;
      margin-bottom: 40px;
      animation: fadeInUp 1s ease-out;
    }

    .incarsection .feature {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .incarsection .feature:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .incarsection .feature h3 {
      font-size: 28px;
      color: #2c3e50;
      margin-right: 20px;
      flex-basis: 25%;
    }

   .incarsection  .feature video {
      border-radius: 8px;
      width: 320px;
      height: 240px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .incarsection .feature p {
      flex-grow: 1;
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    /* Animation for fade-in */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Slide-in effect for section */
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-100%);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Hover animation for feature title */
   .incarsection .feature:hover h3 {
      color: #3498db;
    }

    /* Live Translation Section */
   .incarsection .translation {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      margin-top: 20px;
    }

   .incarsection .translation video {
      width: 280px;
      height: 200px;
      margin-left: 20px;
    }

    .incarsection .translation p {
      flex-grow: 1;
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      text-align: left;
    }	
	
	
	.testimonials {
  position: relative;
  padding: 0;
  background: linear-gradient(to right, rgba(153, 38, 240, 0.95), rgba(209, 34, 227, 0.95));
}
.testimonials__card {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem 1.25rem;
  border-radius: 0.625rem;
  height: auto;
  text-align: center;
}
.testimonials__card i {
  font-size: 1.5rem;
  color: rgba(153, 38, 240, 0.7);
}
.testimonials__card .ratings i {
  color: rgba(153, 38, 240, 0.7);
  font-size: 1rem;
}
.testimonials__picture {
  width: 6rem;
  height: 6rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonials__picture img {
  border: 0.325rem solid rgba(153, 38, 240, 0.7);
}
.testimonials__name {
  padding-top: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
}
.testimonials__name h3 {
  padding-top: 0.8rem;
  text-transform: capitalize;
}
.testimonials__name p {
  padding-bottom: 2rem;
  text-transform: capitalize;
}







.testimoniaal .testimoniaal-brand {
  fill: currentColor;
  margin-bottom: 1.35rem;
}
.testimoniaal .testimoniaal-brand svg {
  height: 3rem;
}
.testimoniaal .testimoniaal-quote {
  font-size: 1.4rem;
  font-weight: 300;
}
.testimoniaal .testimoniaal-name {
  font-weight: bold;
}
.testimoniaal .testimoniaal-position {
  font-weight: lighter;
}

.px-5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

@media (min-width: 992px) {
  .divider-right {
    border-right: 0.0625rem solid #e0e5ec;
  }
}
 .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  @media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}
.mb-5 {
    margin-bottom: 2.5rem !important;
}
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (min-width: 992px) {
    .p-lg-5 {
        padding: 2.5rem !important;
    }
}
.text-gray-400 {
    color: #c5ccd6 !important;
}
.testimoniaal .testimoniaal-quote {
    font-size: 1.4rem;
    font-weight: 300;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}


.o-section.v--borderless {
    border: none;
}
.u-overflow--visible {
    overflow: visible;
}
.u-padding-bottom--large {
    padding-bottom: 1.5rem!important;
}
.u-padding-top--medium {
    padding-top: 1rem!important;
}
.o-section {
    border-top: 1px solid #ebeaeb;
    padding: 3rem 0;
    overflow: hidden;
}
@media screen and (width >= 48rem){
.o-content-container {
    padding: 0 4vw;
}
}
.o-content-container {
    margin: 0 auto;
    padding: 0 8vw;
}
@media screen and (width >= 80rem){
.c-promo-blade .c-card--customer.v--homepage {
    margin-top: inherit;
    flex-direction: row;
    justify-content: space-between;
}
}


.c-promo-blade .c-card--customer.v--homepage {
    border-radius: 16px;
    flex-direction: column;
    max-width: 76.875rem;
    overflow: hidden;
    box-shadow: 0 5px 20px #0000001a;
}
@media screen and (width >= 48rem){
.c-promo-blade .c-card--customer.v--homepage {
    border-bottom: none;
    flex-direction: column;
}
}
.c-card--customer.v--homepage.v--showcase.v--inverse {
    background: linear-gradient(#daeefe 0%,#e3f0ff 23.12%,#f9f7ff 70%,#fff 100%);
    margin-bottom: 4rem;
}

.c-promo-blade .c-card--customer {
    overflow: hidden;
}
.c-card--customer.v--homepage {
    background: unset;
    box-shadow: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
@media screen and (width >= 48rem){
.c-card--customer.v--showcase {
    flex-direction: row;
    max-width: 63.75rem;
}
}
.c-card--customer.v--showcase {
    flex-direction: column;
    max-width: 289px;
    margin: 2rem auto;
    padding: 0;
    display: flex;
}
.c-card--customer {
    border-radius: 0.5rem;
}
.c-card--customer {
    width: 100%;
    max-width: 400px;
    color: inherit;
    text-align: center;
    z-index: 1;
    break-inside: avoid;
    background: #fff;
    border-bottom: none;
    flex-direction: column;
    margin: 15px auto;
    padding: 10px 10px 35px;
    transition: transform .42s cubic-bezier(.165,.84,.44,1);
    display: block;
    position: relative;
    box-shadow: 0 5px 20px #0000001a;
}
@media screen and (width >= 80rem){
.c-promo-blade .c-card--customer__copy {
    width: 44%;
    margin: 3rem 0 3rem 3rem;
}
}

.c-promo-blade .c-card--customer__copy {
    text-align: left;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    margin: 32px 24px 16px;
    display: flex;
}
@media screen and (width >= 48rem){
.c-promo-blade .c-card--customer__copy {
    margin: 2rem 0 2rem 2rem;
}
}
.c-billboard__kicker {
    align-items: center;
    margin-bottom: 0.5rem;
    display: flex;
}
@media screen and (width >= 80rem){
.c-promo-blade .c-card--customer__copy h2 {
    margin-right: 0.5rem;
}
}
.c-promo-blade .c-card--customer__copy h2 {
    order: 1;
    margin-bottom: 1rem;
}
.c-card--customer__copy h2 {
    text-align: unset;
}
.u-margin-top--flush {
    margin-top: 0!important;
}
.c-promo-blade .c-card--customer__copy .c-billboard__kicker__text {
    display: flex;
}
.u-text--uppercase {
    text-transform: uppercase!important;
}
.c-billboard__kicker__text {
    letter-spacing: 0;
    white-space: nowrap;
    color: var(--theme-text);
    letter-spacing: .057em;
    margin-bottom: 0;
    margin-right: 10px;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.429;
    display: inline-block;
}
.c-promo-blade .u-kicker-highlight {
    padding-right: 4px;
}
.u-kicker-highlight {
    color: #1264a3;
}
.c-promo-blade .c-card--customer__copy .c-billboard__kicker__text svg {
    margin-right: 7px;
}
.c-promo-blade .c-card--customer__copy p {
    order: 1;
    margin-bottom: 1rem;
}
@media screen and (width >= 48rem){
.c-promo-blade .c-card--customer__copy .o-section--feature__link {
    order: 1;
    align-self: flex-start;
    margin-top: 8px;
}
}
.c-promo-blade .c-card--customer__copy .o-section--feature__link {
    align-self: left;
    order: 2;
}
@media screen and (width >= 64rem){
.c-promo-blade .c-card--customer__copy .o-section--feature__link {
    align-self: center;
}
}
.o-section--feature__link {
    border-bottom: none;
}
@media screen and (width >= 64rem)
.o-section--feature__link {
    letter-spacing: .012em;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.555;
}
.o-section--feature__link {
    letter-spacing: .012em;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.555;
}
@media screen and (width >= 80rem){
.c-promo-blade .c-card--customer__illustration {
    width: 48%;
}
}
.c-card--customer {
    width: 100%;
    max-width: 400px;
    color: inherit;
    text-align: center;
    z-index: 1;
    break-inside: avoid;
    background: #fff;
    border-bottom: none;
    flex-direction: column;
    margin: 15px auto;
    padding: 10px 10px 35px;
    transition: transform .42s cubic-bezier(.165,.84,.44,1);
    display: block;
    position: relative;
    box-shadow: 0 5px 20px #0000001a;
}
@media screen and (width >= 80rem){
.c-promo-blade .c-card--customer__illustration video {
    width: 95%;
    height: 85%;
    margin-top: 2rem;
}
}
@media screen and (width >= 64rem){
.c-promo-blade .c-card--customer__illustration video {
    width: 60%;
    height: 60%;
}
}
.c-promo-blade .c-card--customer__illustration video {
    z-index: 10;
    position: inherit;
    border-radius: 0.5rem;
    width: 68%;
    height: 68%;
}
.bold-text {
  font-weight: bold; /* or 700 */
}
/*need to recheck */

/* img, video { */
    /* max-width: 100%; */
    /* height: auto; */
/* } */
/* audio, canvas, progress, video { */
    /* vertical-align: baseline; */
    /* display: inline-block; */
/* } */
/* *, :before, :after { */
    /* box-sizing: inherit; */
/* } */

/* video { */
    /* object-fit: contain; */
    /* overflow-clip-margin: content-box; */
    /* overflow: clip; */
/* } */

/* p { */
    /* margin: 0 0 1rem; */
/* } */
/* p, ul, ol, address { */
    /* letter-spacing: -.0012em; */
    /* margin-bottom: 1rem; */
    /* font-size: 1.125rem; */
    /* font-weight: 400; */
    /* line-height: 1.555; */
/* } */
/* a, .t-default-link, .t-contains-reverse-links .t-default-link { */
    /* color: #1264a3; */
    /* cursor: pointer; */
    /* word-break: break-word; */
    /* border-bottom: 1px solid #1264a3; */
    /* text-decoration: none; */
/* } */
/* a { */
    /* background: 0 0; */
/* } */
@media screen and (min-width: 64rem) {
  .c-card--customer.v--homepage.v--showcase.v--inverse {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 64rem) {
  .c-card--customer__copy,
  .c-card--customer__illustration {
    flex: 1;
    max-width: 50%;
  }

  .c-card--customer__illustration {
    display: flex;
    justify-content: center;
  }
}

.o-section--feature__link:after {
    content: "";
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%206a.5.5%200%200%200%200%201V6zM12.854.646a.5.5%200%200%200-.708.708l.708-.708zM18%206.5l.354.354a.5.5%200%200%200%200-.708L18%206.5zm-5.854%205.146a.5.5%200%200%200%20.708.708l-.708-.708zM1%207h16.5V6H1v1zm16.646-.854l-5.5%205.5.708.708%205.5-5.5-.708-.708zm-5.5-4.792l2.75%202.75.708-.708-2.75-2.75-.708.708zm2.75%202.75l2.75%202.75.708-.708-2.75-2.75-.708.708z%22%20fill%3D%22%231264A3%22%2F%3E%3C%2Fsvg%3E);
    width: 19px;
    height: 13px;
    margin-left: 0.5em;
    display: inline-block;
}
/*--------------------------------------------------------------
# meetabout Section
--------------------------------------------------------------*/
.meetabout .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.meetabout .content h2 {
  font-weight: 700;
}

.meetabout .content p:last-child {
  margin-bottom: 0;
}

.meetabout .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.meetabout .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.meetabout .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.meetabout .content .read-more:hover i {
  margin-left: 10px;
}

.meetabout .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.meetabout .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.meetabout .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.meetabout .icon-box p {
  margin-bottom: 0;
}

.meetabout .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.meetabout .icon-boxes .col-md-6:nth-child(2) .icon-box,
.meetabout .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .meetabout .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .meetabout .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}


/*----------------------------------------------------------------
another section
-------------------------------------------------------------------*/
.top-c {
  background: url("../images/slider-bg.png") no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 504px;
  margin-top: 120px;
  position: relative;
  z-index: 12;
}
.top-c .topc-img {
  margin-top: 60px;
  overflow: hidden;
}
.top-c .topc-img img {
  width: 100%;
}
.top-c ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.top-c ul li {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}
.top-c ul i {
  margin-right: 10px;
}
.top-c h3.topc-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin: 110px 0 30px 0;
}



/*mobile compatable for maps*/
@media (max-width: 768px){
.top-c {
    text-align: center;
}
}
@media (max-width: 992px){
.top-c {
    background-image: none;
    background-color: #39c8e2;
    background-position: top;
    height: auto;
    padding-bottom: 60px;
}
}
@media (max-width: 768px){
.top-c .topc-img {
    margin-top: 60px;
    margin-left: 70px;
}
}
@media (max-width: 992px){
.top-c .topc-img {
    margin-top: 100px;
}
}
@media (max-width: 768px){
.top-c h3.topc-title {
    margin-top: 60px;
}
}
@media (max-width: 992px){
.top-c h3.topc-title {
    margin-top: 100px;
}
}

