@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open Sans');
html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: #000;
  }
  
  /* ---------- Header ---------- */
  header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* padding: 20px 60px; */
  }
  
  .header-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .logo img {
    height: 80px;
  }
  
  .nav-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: inline-block;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: #1E64F1;
  }
  
  /* ---------- Hero Section ---------- */
  .hero {
    display: flex;
    align-items: stretch;         /* Make children equal height */
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    padding-bottom: 3rem;
    gap: 80px;
  }
  
  
  .hero-text,
  .hero-media {
    flex: 1;
    max-width: 50%;
  }
  
  .hero-text h1 {
    font-size: 108px;
    font-family: "STIX Two Text", serif;
    color: #1E64F1;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-block-start: 0.83em;
  }
  
  .hero-text p {
    font-size: 13.6px;
    background-color: #F2F5F5;
    border-radius: 10px;
    padding: 8px 12px;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 14px;
  }

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: stretch; /* Ensure buttons stretch to same height */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px; /* Fixed height for both buttons */
  padding: 0 20px; /* Removed vertical padding since we're using fixed height */
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Ensure SVG icon is properly sized */
.btn svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  flex-shrink: 0; /* Prevent SVG from shrinking */
}

@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
    align-items: center; 
    gap: 15px;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    height: 50px; /* Keep consistent height on mobile */
  }
}

  .hero-text a:active,
  .hero-text a:not(:first):hover {
    color: #1E64F1 !important;
  }

  .hero-text a:first-child:active {
    color: #fff;
    background-color: #1E64F1;
    border-color: #1E64F1;
  }

  .hero-text a:focus-visible {
      color: #fff;
      background-color: #1E64F1;
      /* border-color: var(--bs-btn-hover-border-color); */
      /* outline: 0; */
      /* box-shadow: var(--bs-btn-focus-box-shadow); */
  }

  /* Stack buttons and add space on mobile */
@media (max-width: 768px) {
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 15px;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px; 
  }
}



  
  .primary {
    background-color: #1D66A3 ;
    color: white;
  }

  .primary p {
    font-weight: 600;
    font-size: 14.4px;
  }

  .primary:hover {
    color: #fff;
    background-color: #1E64F1;
  }
  
  .outline {
    border: 1px solid #1D66A3;
    color: #1D66A3;
  }

  .outline p {
    font-weight: 600;
    font-size: 14.4px;
  }

  .outline:hover {
    border: 1px solid #1E64F1;
    color: #1E64F1 !important;
  }
  
  /* Hero media image and play button */
  .hero-media {
    position: relative;
    max-width: 650px;
  }
  
  .filter-image {
    width: 100%;
    display: block;
  }
  
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    cursor: pointer;
  }

  .play-icon:hover {
    transform: scale(2);
  }
  
  /* ---------- Features Section ---------- */
  .features {
    background: #F2F5F5;
    text-align: center;
  }
  
  .features .container {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .feature {
    max-width: 250px;
  }

  .feature p {
    color: #616F77;
    font-weight: 400;
    font-size: 14.4px;
  }
  
  .feature h3 {
    color: #1E64F1;
    margin-bottom: 10px;
    font-size: 20.8px;
    font-weight: 600;
  }
  
  .feature-icon {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .feature-icon svg {
    display: block;
    margin: 0 auto;
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
  
    .hero-text,
    .hero-media {
      max-width: 100%;
    }
  
    .nav-container {
      position: static;
      transform: none;
      margin-left: auto;
    }
  
    .nav-links {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .header-container {
      flex-direction: column;
      height: auto;
      gap: 15px;
    }
  }
  


  .technology-section {
    max-width: 1280px;
    margin: 80px auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .technology-section h2 {
    font-size: 49.6px;
    text-align: center;
    font-weight: 300;
    margin: 0.83em 0;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
  }
  
  .italic {
    color: #1E64F1;
    font-family: "STIX Two Text", serif;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: normal;
  }
  
  .tech-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
  }
  

  @media (max-width: 768px) {
    .features .container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .feature {
      max-width: 90%;
      text-align: center;
    }
  }
  
  
  .tech-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
  }
  
  .tech-content {
    flex: 1;
    text-align: left;
  }
  
  .tech-content h3 {
    color: #101828;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .tech-content .blue {
    color: #1E64F1;
    font-size: 26px;
  }

  .tech-content .blue1 {
    color: #1E64F1;
    font-size: 32px;
    font-family: "STIX Two Text", serif;
  }
  
  .tech-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
    color: #42515A;
  }
  
  .learn-link {
    color: #457DF5;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
  }

  .learn-link:hover {
    color: #144196;
  }
  
  @media (max-width: 900px) {


    .hero-text h1 {
        font-size: 3rem;
      }
      

    .tech-row {
      flex-direction: column-reverse; /* Text first, image below */
    }
  
    .tech-row.reverse {
      flex-direction: column; /* Keep normal stacking: text first, image below */
    }
  
    .tech-image img {
      max-width: 100%;
    }
  
    .tech-content {
      text-align: left;
    }
  }
  


  .cta-section {
  background-color: #F2F5F5;
  padding: 1.5rem;
}

.cta-container {
  display: flex;
  align-items: center;
  column-gap: 120px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.testimonial {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.testimonial img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(133, 133, 133, 0.44);
  color: white;
  padding: 20px;
  /* border-radius: 8px; */
  font-size: 13px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  line-height: normal;
}

.testimonial-overlay p {
  margin: 0;
}

.testimonial-overlay p:nth-child(1) {
  font-size: 16px;
}

.testimonial-overlay ul {
  padding-left: 20px;
  margin: 10px 0;
  list-style: disc;
}

.testimonial-overlay .author span {
    display: block;
    font-weight: normal;
    color: #FFFFFF;
  }

.testimonial-overlay .author {
  align-self: flex-end;
  text-align: left;
  margin-top: 10px;
  font-style: italic;
  max-width: 300px;
}

@media (max-width: 768px) {
  .testimonial-overlay {
    font-size: 11px;
    padding: 10px;
    min-height: 160px;
  }

  .testimonial-overlay p:nth-child(1) {
    font-size: 12px;
  }

  .testimonial-overlay ul {
    margin: 0;
  }
  
  .testimonial-overlay li {
    text-align: left;
  }

  .testimonial-overlay li::marker {
    border: 1px solid red;
  }

  .testimonial-overlay .author {
    margin-top: 0;
  }

  .author .name,
  .author .role {
    font-size: 11px !important;
  }
}

.author .name {
  font-weight: 400;
  font-size: 16px; 
}

.author .role {
  font-size: 14px; 
  color: #FFFFFF;
  font-weight: 400;

}


.cta-content {
  flex: 1;
  max-width: 500px;
}

.cta-content h3 {
  font-size: 40px;
  color: #101828;
  line-height: normal;
  margin: revert;
}

.cta-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: -20px;
  color: #42515A;
}

.cta-content .btn.primary {
  background-color: #1D66A3 ;
  color: white;
  padding: 15px 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: background-color 0.3s ease;

}

.cta-content .btn.primary:hover {
  background-color: #1E64F1  ;
}

/* Bottom Icons */
/* Icons Bar Section Background */
.cta-icons-bar {
    background-color: #E5E7EB;
  }

.cta-icons p {
    color: #1E64F1;
    font-weight: 600;
}
  
  /* Icons Container */
  .cta-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 60px;
  }
  
  /* Each icon + text */
  .icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
  }
  
  /* Icon Style */
  .icon-item img {
    height: 24px;
  }
  
/* Responsive */
@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    text-align: left;
  }

  .testimonial-overlay {
    background: #3333339a;
    margin-top: 15px;
  }
}
@media (max-width: 900px) {
    .cta-icons {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      padding: 20px;
      gap: 25px;
    }
  
    .icon-item {
      justify-content: flex-start;
    }
  }
  



  .footer {
    /* background-color: #1D66A3; */
    color: white;
    /* padding: 60px 40px 30px; */
    font-size: 0.95rem;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1 1 200px;
    min-width: 200px;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    
    margin-bottom: 16px;
    color: #ffffff;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .newsletter input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
  }
  
  .newsletter label {
    font-size: 0.8rem;
    display: block;
    margin-bottom: 12px;
    color: #e0e0e0;
  }
  
  .newsletter button {
    padding: 10px 20px;
    background-color: white;
    color: #144196;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .newsletter button:hover {
    background-color: #ffc000;
    color: #000;
  }
  
  .social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
  }
  
  .social-icons a img {
    height: 20px;
    filter: brightness(0) invert(1); /* Make white on blue */
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff33;
    padding: 20px 0;
    text-align: center;
    color: #ddd;
  }
  
  .footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-bottom-inner p {
    margin: 0;
  }
  
  .footer-bottom-inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .footer-bottom-inner ul li a {
    color: #ddd;
    text-decoration: none;
  }
  
  .footer-bottom-inner ul li a:hover {
    text-decoration: underline;
  }
  