* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: #ffffff;
  color: #03224c;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #03224c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
}

.get-started-btn:hover {
  background: white;
  color: #00224d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 34, 77, 0.6);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  color: white;
  text-align: left;
}

.banner-left {
  width: 100%;
  text-align: left;
}

.banner-left h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
}

.banner-left em {
  font-style: italic;
  color: #ffcc00;
}

.company-overview {
  padding: 100px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.overview-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.overview-text {
  flex: 1;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #00224D;
  margin-bottom: 30px;
  font-weight: 700;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.overview-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.overview-image:hover {
  transform: translateY(-5px);
}

.overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.overview-image:hover img {
  transform: scale(1.05);
}

.beyond-compare-section {
  padding: 100px 0;
  background: #ffffff;
}

.beyond-compare-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 800px;
}

.beyond-compare-header h2 {
  font-size: 2.5rem;
  color: #00224D;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.beyond-compare-header .subtitle {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00224D, #ffcc00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #00224D;
}

.card-content {
  flex: 1;
}

.card h3 {
  font-size: 1.5rem;
  color: #00224D;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

.hero-section {
  background-color: #03224c;
  color: #fff;
  padding: 80px 5% 0;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 80vh;
}

.hero-text {
  flex: 1.1;
  min-width: 300px;
  padding-bottom: 80px;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e6f0;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 450px;
  margin-bottom: 0;
}

.circle-bg {
  display: none;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  z-index: 2;
  position: relative;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-left,
.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-right,
.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-animation.animate .slide-up,
.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-animation.animate .slide-left:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-left:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-left:nth-child(3) { transition-delay: 0.3s; }

.slide-animation.animate .slide-right:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-right:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-right:nth-child(3) { transition-delay: 0.3s; }

.slide-animation.animate .slide-up:nth-child(1) { transition-delay: 0.1s; }
.slide-animation.animate .slide-up:nth-child(2) { transition-delay: 0.2s; }
.slide-animation.animate .slide-up:nth-child(3) { transition-delay: 0.3s; }
.slide-animation.animate .slide-up:nth-child(4) { transition-delay: 0.4s; }

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}


@media (min-width: 1400px) {
  body {
    font-size: 18px;
    line-height: 1.7;
  }
  
  .banner-content {
    max-width: 1600px;
    text-align: left;
    width: 100%;
    padding: 0 5%;
  }
  
  .banner-left {
    width: 100%;
  }
  
  .banner-left h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
    width: 100%;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    padding-right: 0;
  }
  
  .banner-left p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
  
  .banner-left em {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .get-started-btn {
    padding: 16px 35px;
    font-size: 1.2rem;
    min-height: 55px;
  }
  
  .company-overview {
    padding: 140px 0;
  }
  
  .container {
    max-width: 1600px;
  }
  
  .overview-content {
    gap: 80px;
  }
  
  .overview-text h2 {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
  
  .overview-text p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 30px;
  }
  
  .overview-image {
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  
  .beyond-compare-section {
    padding: 140px 0;
  }
  
  .beyond-compare-header {
    max-width: 1000px;
    margin-bottom: 80px;
  }
  
  .beyond-compare-header h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  
  .cards-container {
    max-width: 1600px;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
  }
  
  .card {
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
  
  .card-icon {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
  
  .card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .card p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  .hero-container {
    max-width: 1600px;
    gap: 60px;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    max-width: 650px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .hero-image img {
    max-width: 600px;
  }
}

@media (min-width: 1800px) {
  .banner-left h1 {
    font-size: 5rem;
  }
  
  .banner-left p {
    font-size: 1.5rem;
  }
  
  .get-started-btn {
    padding: 18px 40px;
    font-size: 1.3rem;
  }
  
  .container {
    max-width: 1800px;
  }
  
  .overview-text h2 {
    font-size: 3.5rem;
  }
  
  .overview-text p {
    font-size: 1.4rem;
  }
  
  .beyond-compare-header h2 {
    font-size: 3.5rem;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1.6rem;
  }
  
  .cards-container {
    max-width: 1800px;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 50px;
  }
  
  .card {
    padding: 60px 50px;
  }
  
  .card h3 {
    font-size: 2rem;
  }
  
  .card p {
    font-size: 1.3rem;
  }
}

@media (max-width: 1200px) {
  .banner-left h1 {
    font-size: 2.5rem;
  }
  
  .overview-content {
    gap: 50px;
  }
  
  .overview-text h2 {
    font-size: 2.3rem;
  }
  
  .beyond-compare-header h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 1024px) {
  .banner-left h1 {
    font-size: 2.3rem;
  }
  
  .overview-content {
    gap: 40px;
  }
  
  .overview-text h2 {
    font-size: 2.1rem;
  }
  
  .overview-text p {
    font-size: 1.05rem;
  }
  
  .beyond-compare-header h2 {
    font-size: 2.1rem;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1.2rem;
  }
  
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .hero-container {
    align-items: center;
  }
}

@media (max-width: 900px) {
  .banner-left h1 {
    font-size: 2.1rem;
  }
  
  .banner-left p {
    font-size: 1rem;
  }
  
  .get-started-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .overview-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .overview-text, .overview-image {
    flex: none;
    width: 100%;
  }
  
  .overview-text h2 {
    font-size: 2rem;
  }
  
  .overview-text p {
    text-align: left;
  }
  
  .beyond-compare-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .beyond-compare-header h2 {
    font-size: 2rem;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .card {
    padding: 35px 25px;
  }
  
  .card h3 {
    font-size: 1.4rem;
  }
  
  .card p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {

  .banner {
    height: 70vh;
    min-height: 500px;
  }
  
  .banner-left h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .banner-left p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .get-started-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 200px;
  }

  .company-overview,
  .beyond-compare-section {
    padding: 70px 0;
  }
  
  .overview-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .overview-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .overview-image {
    border-radius: 8px;
  }
  
  .beyond-compare-header {
    margin-bottom: 40px;
  }
  
  .beyond-compare-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .cards-container {
    gap: 20px;
  }
  
  .card {
    padding: 30px 20px;
    border-radius: 10px;
  }
  
  .card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .card-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-section {
    padding: 60px 15px 0;
  }
  
  .hero-container {
    min-height: auto;
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-text {
    padding-bottom: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin: 0 auto 25px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .btn-primary, 
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 14px 20px;
  }
  
  .hero-image {
    min-height: 250px;
    margin-bottom: 30px;
    align-items: center;
  }
  
  .hero-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {

  body {
    font-size: 14px;
  }
  
  .banner {
    height: 60vh;
    min-height: 400px;
  }
  
  .banner-left h1 {
    font-size: 1.6rem;
  }
  
  .banner-left p {
    font-size: 0.9rem;
  }
  
  .get-started-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 180px;
  }
  
  .company-overview,
  .beyond-compare-section {
    padding: 50px 0;
  }
  
  .container {
    width: 95%;
  }
  
  .overview-text h2 {
    font-size: 1.6rem;
  }
  
  .overview-text p {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .beyond-compare-header h2 {
    font-size: 1.6rem;
  }
  
  .beyond-compare-header .subtitle {
    font-size: 1rem;
  }
  
  .cards-container {
    gap: 15px;
  }
  
  .card {
    padding: 25px 20px;
    border-radius: 8px;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .card p {
    font-size: 0.95rem;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    gap: 8px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 16px;
    font-size: 0.9rem;
    max-width: 220px;
    text-align: center;
  }
  
  .hero-image img {
    max-width: 250px;
  }
}

@media (max-width: 360px) {
  .banner-left h1 {
    font-size: 1.4rem;
  }
  
  .banner-left p {
    font-size: 0.85rem;
  }
  
  .get-started-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    max-width: 160px;
  }
  
  .overview-text h2,
  .beyond-compare-header h2 {
    font-size: 1.4rem;
  }
  
  .card {
    padding: 20px 15px;
  }
  
  .card h3 {
    font-size: 1.1rem;
  }
  
  .hero-text h1 {
    font-size: 1.3rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .get-started-btn,
  .btn-primary, 
  .btn-secondary {
    min-height: 44px; 
  }
  
  .card:hover {
    transform: none;
  }
  
  .overview-image:hover {
    transform: none;
  }
  
  .overview-image:hover img {
    transform: none;
  }
  
  .get-started-btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  height: auto;
}

img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .slide-animation {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .slide-left,
  .slide-right,
  .slide-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}