.footer {
  margin-top: 0 !important;
}

.aia-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1e4d7b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: center;
}
.aia-hero h1 {
  font-size: 22px;
  margin: 20px 0;
  padding: 20px 30px;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  color: #0A2540;
  background-color: #fff;
  border-radius: 0 100px 100px 0;
}
.aia-hero h1 .highlight {
  color: #ffd700;
  font-size: 33px;
}

.aia-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.aia-hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.aia-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}
.aia-hero-video-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.aia-hero-content {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.aia-hero-left {
  text-align: center;
}

.aia-hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.aia-hero-right picture {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aia-hero-right img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.aia-hero-logo {
  margin: auto;
  max-width: 400px;
}

.aia-hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: 4px;
}

.aia-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary {
  background-color: #ffd700;
  color: #0a2540;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section:nth-of-type(odd) {
  background-color: #F9FAFB;
}
section:nth-of-type(even) {
  background-color: #fff;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.bg-g {
  background-color: #F9FAFB;
}

.c-end {
  padding-bottom: 100px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 36px;
  color: #0a2540;
  margin: 20px 0 100px 0;
  font-weight: bold;
  text-align: center;
}
.section-title span {
  font-size: 20px;
  color: #007ED1;
  text-transform: lowercase;
  letter-spacing: 1px;
  margin: 0;
  display: block;
}

.section-border {
  width: 100px;
  height: 2px;
  background-color: #14719C;
  flex-shrink: 0;
}

.description-divider {
  width: 80%;
  max-width: 700px;
  height: 1px;
  background-color: #ddd;
  margin: 30px auto;
}

.description-sub-title {
  font-size: 18px;
  color: #333;
  margin: 20px 30px;
  font-weight: bold;
}

.description-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.description-link-item {
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #007ED1;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
  background-color: #EBF6F7;
}
.description-link-item .material-icons {
  font-size: 20px;
}
.description-link-item:hover {
  opacity: 0.7;
}

.products-text {
  margin: auto;
  padding: 20px 10px;
  line-height: 2;
}
.products-text span {
  font-weight: bold;
  font-size: 110%;
  color: #007ED1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
}
.product-card img {
  max-width: 250px;
  margin: auto;
}

.product-link {
  display: inline-block;
  margin-top: 20px;
  color: #007ED1;
  text-decoration: none;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.product-link:hover {
  text-decoration: none;
  color: #0a2540;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  position: relative;
  overflow: visible;
}
.feature-item:nth-child(odd) {
  margin-right: auto;
  width: 90%;
  padding-left: 80px;
}
.feature-item:nth-child(odd) .feature-text-left,
.feature-item:nth-child(odd) .feature-text-right {
  padding-right: 60px;
}
.feature-item:nth-child(odd) .feature-text-left::before,
.feature-item:nth-child(odd) .feature-text-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #F9FAFB;
  z-index: -1;
}
.feature-item:nth-child(even) {
  margin-left: auto;
  width: 90%;
  padding-right: 80px;
}
.feature-item:nth-child(even) .feature-text-left,
.feature-item:nth-child(even) .feature-text-right {
  order: 2;
  padding-left: 80px;
}
.feature-item:nth-child(even) .feature-text-left::before,
.feature-item:nth-child(even) .feature-text-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: #F9FAFB;
  z-index: -1;
}
.feature-item:nth-child(even) .feature-image {
  order: 1;
}

.feature-text-left {
  border-radius: 0 200px 200px 0;
}

.feature-text-right {
  border-radius: 200px 0 0 200px;
}

.feature-text-left,
.feature-text-right {
  text-align: left;
  z-index: 2;
  background-color: #F9FAFB;
  padding: 60px 0;
  position: relative;
}
.feature-text-left h3,
.feature-text-right h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #0a2540;
  font-weight: bold;
}
.feature-text-left h3 .highlight,
.feature-text-right h3 .highlight {
  color: #007ED1;
}
.feature-text-left p,
.feature-text-right p {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.feature-image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-image img {
  max-width: 400px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.feature-item:nth-child(odd) .feature-image {
  margin-right: -30%;
}

.feature-item:nth-child(even) .feature-image {
  margin-left: -30%;
}

.feature-icon {
  display: none;
}

.heading-line {
  margin: auto;
}

.functions-intro {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 60px;
  text-align: center;
}

.functions-subtitle {
  text-align: center;
  margin-bottom: 40px;
}
.functions-subtitle h3 {
  font-size: 24px;
  color: #0a2540;
  margin-bottom: 15px;
  font-weight: bold;
}
.functions-subtitle p {
  font-size: 16px;
  padding: 20px 0;
}

.aia-function-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.aia-function-item {
  background: #fff;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: none;
  position: relative;
  overflow: visible;
}
.aia-function-item h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: #000;
  display: block;
  font-weight: bold;
  line-height: 1.6;
  padding: 40px 30px 25px 30px;
  border-bottom: none;
  position: relative;
}
.aia-function-item h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #e0e0e0;
}
.aia-function-item ul {
  list-style: none;
  padding: 30px;
  margin: 0;
}
.aia-function-item ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 45px;
  position: relative;
}
.aia-function-item ul li:before {
  font-family: "Material Icons";
  content: "\e92d";
  color: #007ED1 !important;
  background: none;
  position: absolute;
  left: 0;
  font-size: 25px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.aia-function-item ul li:last-child {
  margin-bottom: 0;
}
.aia-function-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  padding: 30px;
}

.aia-check-icon {
  background: #007ED1;
  color: #fff;
  padding: 5px 20px 5px 10px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: -19px;
  left: 15px;
}
.aia-check-icon:before {
  font-family: "Material Icons";
  content: "\e5ca";
  font-size: 18px;
}

.function-icon {
  display: none;
}

.use-case-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.use-case-card {
  background-color: #F9FAFB;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  width: 340px;
}
.use-case-card h3 {
  font-size: 18px;
  padding: 20px;
  color: #000;
  line-height: 1.6;
  text-align: left;
  font-weight: normal;
}
.use-case-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.8;
  display: none;
}
.use-case-card img {
  margin: auto;
}

.use-case-number {
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 60px;
  color: #007ED1;
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.tag {
  background-color: #007ED1;
  color: #fff;
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}
.tag.etc {
  background-color: transparent;
  color: #007ED1;
  padding: 10px 0;
  font-weight: bold;
  position: absolute;
  right: 20px;
  bottom: 5px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }
  .hero h1 {
    font-size: 28px;
    order: 3;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-left {
    text-align: center;
    display: contents;
  }
  .hero-logo {
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-buttons {
    justify-content: center;
    order: 4;
  }
  .btn-primary {
    padding: 15px 35px;
    font-size: 16px;
  }
  .hero-right {
    order: 2;
    align-self: center;
    max-width: 300px;
    margin: 0;
  }
  .section-title {
    font-size: 24px;
    margin: 20px 0 40px 0;
  }
  .section-title span {
    font-size: 14px;
  }
  .section-container {
    padding: 20px 20px;
  }
  .section-border {
    width: 100px;
  }
  .section-header {
    gap: 10px;
  }
  .feature-item {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 20px !important;
  }
  .feature-item:nth-child(even) .feature-text-left,
  .feature-item:nth-child(even) .feature-text-right,
  .feature-item:nth-child(even) .feature-image {
    order: 0;
  }
  .feature-item:nth-child(odd) .feature-text-right, .feature-item:nth-child(even) .feature-text-right {
    padding: 20px 0 20px 60px !important;
  }
  .feature-item:nth-child(odd) .feature-text-left, .feature-item:nth-child(even) .feature-text-left {
    padding: 20px 30px 20px 0 !important;
  }
  .feature-item:nth-child(odd) .feature-image, .feature-item:nth-child(even) .feature-image {
    margin: 0px !important;
  }
  .feature-image img {
    max-width: 80% !important;
  }
  .feature-text-left h3,
  .feature-text-right h3 {
    font-size: 24px;
  }
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
  .mobile-overlay.active {
    display: block;
  }
  .product-grid,
  .feature-grid,
  .aia-function-list {
    grid-template-columns: 1fr;
  }
  .use-case-card {
    width: 100%;
  }
  .products-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .products-text span {
    font-size: 108%;
  }
  .description-sub-title {
    font-size: 15px;
  }
  .description-link-item {
    font-size: 13px;
    padding: 8px 12px;
  }
  .feature-text-left p,
  .feature-text-right p {
    font-size: 14px;
  }
  .functions-subtitle h3 {
    font-size: 18px;
  }
  .functions-subtitle p {
    font-size: 14px;
  }
  .aia-function-item h3 {
    font-size: 16px;
    padding: 30px 20px 20px;
  }
  .aia-function-item ul {
    padding: 20px;
  }
  .aia-function-item ul li {
    font-size: 14px;
    padding-left: 35px;
  }
  .aia-function-item ul li:before {
    font-size: 22px;
  }
  .aia-function-item p {
    font-size: 13px;
    padding: 20px;
  }
  .aia-check-icon {
    font-size: 12px;
    padding: 4px 16px 4px 8px;
    top: -16px;
  }
  .use-case-number {
    font-size: 42px;
    top: -22px;
  }
  .use-case-card h3 {
    font-size: 15px;
    padding: 15px;
  }
  .tag {
    font-size: 12px;
    padding: 5px 9px;
  }
  .faq-question {
    padding: 20px 60px 20px 20px;
  }
  .faq-question span:not(.faq-question-icon):not(.faq-toggle) {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 14px;
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .aia-hero {
    height: 520px;
  }
  .aia-hero h1 {
    font-size: 20px;
    padding: 18px 28px;
    margin: 16px 0;
    letter-spacing: 1.5px;
  }
  .aia-hero h1 .highlight {
    font-size: 29px;
  }
  .aia-hero-content {
    gap: 40px;
  }
  .aia-hero-logo {
    max-width: 340px;
  }
}
@media (max-width: 1024px) {
  .aia-hero {
    height: 460px;
  }
  .aia-hero h1 {
    font-size: 18px;
    padding: 16px 24px;
    margin: 14px 0;
    border-radius: 0 80px 80px 0;
  }
  .aia-hero h1 .highlight {
    font-size: 26px;
  }
  .aia-hero-content {
    gap: 24px;
  }
  .aia-hero-logo {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .aia-hero {
    height: auto;
  }
  .aia-hero h1 {
    font-size: 16px;
    padding: 14px 22px;
    margin: 12px 0;
    line-height: 1.5;
    letter-spacing: 1px;
    border-radius: 0 60px 60px 0;
  }
  .aia-hero h1 .highlight {
    font-size: 23px;
  }
  .aia-hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .aia-hero-right {
    position: static;
    width: 100%;
    order: -1;
    height: auto;
  }
  .aia-hero-right picture {
    height: auto;
  }
  .aia-hero-right img {
    height: auto;
    max-width: 500px;
  }
  .aia-hero-left {
    padding: 0 0 20px;
  }
  .aia-hero-logo {
    max-width: 240px;
  }
}
@media (max-width: 480px) {
  .aia-hero h1 {
    font-size: 13px;
    padding: 10px 16px;
    margin: 8px 0;
    letter-spacing: 0.5px;
    border-radius: 0 50px 50px 0;
  }
  .aia-hero h1 .highlight {
    font-size: 19px;
  }
  .aia-hero-right {
    padding: 0;
  }
  .aia-hero-right img {
    width: 70%;
    max-width: 450px;
  }
  .aia-hero-left {
    padding: 0 0 15px;
  }
  .aia-hero-logo {
    max-width: 180px;
  }
}/*# sourceMappingURL=ai-agent.css.map */