/* ===============================
   GLOBAL STYLES (Desktop-First)
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: #ff6600;
}

/* ===============================
   NAVBAR
=============================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  width: 80px;
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  transition: max-height 0.4s ease-in-out;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 5px;
  font-size: 0.9rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #FF6600;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===============================
   HERO SLIDER
=============================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
}

.slides .slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slides .active {
  display: block;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.content {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 10px;
}

.content h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.slide-btn {
  padding: 8px 15px;
  background-color: #FF6600;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.slide-btn:hover {
  background-color: #FF6600;
}

/* ===============================
   SECTIONS (Cards, Features, PO)
=============================== */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.solution-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 30px 25px;
  width: 333px;
  max-width: 90%;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.solution-card h3 {
  margin-bottom: 15px;
  color: #1a1a1a;
}

.solution-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.solution-card ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
}

/* PO ADVANTAGES */
.po-advantages {
  display: grid;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 50px;
  max-width: 1100px;
  margin: 60px auto;
  box-shadow: 0 4px 20px rgba(64,0,128,0.08);
  border-top: 4px solid #400080;
}

@media(max-width: 768px){
      .po-advantages{ grid-template-columns: 1fr; }
}
@media(min-width: 769px){
   .po-advantages{ grid-template-columns: 1fr 1fr; }
}
.po-advantages2 {
    
  align-items: center;
   max-width: 1100px;
  margin: 60px auto;
  
  
}

.po-advantages .po-paragraph p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

.po-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.po-advantages ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #444;
  padding: 10px 0;
}

.po-advantages ul li::before {
  content: "✔";
  color: #ff6600;
  font-weight: bold;
}

.po-advantages .card-footer2 {
  display: flex;
  gap: 20px;
}

.po-advantages .apply-btn {
  background: linear-gradient(135deg, #400080, #5a00b3);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(64,0,128,0.25);
  transition: transform 0.3s;
}

.po-advantages .apply-btn:hover {
  transform: translateY(-2px);
}

.po-advantages .learn-link {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
}

.po-advantages > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid rgba(255,102,0,0.25);
  box-shadow: 0 8px 30px rgba(64,0,128,0.15);
}

.po-paragraph{
    text-align: left;
}

@media(min-width: 769px){
  .card-footer2{
    align-items: center;
    /*justify-content: center;*/
  }
}
/* ===============================
   TESTIMONIALS
=============================== */
.actual-comment{
  display: flex;
  flex-direction: row;
 
  

}

.actual-comment p{
  margin-top: 28px;
}




.name p{
  font-size: 0.9rem;
  margin-left: 50px;
}


.name{
  margin-top: 60px;
}

.testimonials{
  margin-bottom: 20px;
}

.testimonials h3{
  text-align: center;
  font-size: 1.6rem;
  margin: 50px 0 20px 0;
  
}

@media (min-width: 768px){
  .slider{
    overflow: hidden;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
   
  }

  .test-layout{
    display: flex;
    flex-direction: row;
  }

  .testimonial, .testimonial2{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80vw;
    margin-left: 3%;
    background-color: #f4f2f7;
   height: 250px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   border-radius: 25px;
   
  }

  .customer-pic{
    width: 50%;
    height:350px;
    border-top-left-radius: 25px;
    border-bottom-left-radius:25px ;
   
  } 

  .quotes{
    width: 55px;
    height: 55px;
    
  }
  
  .slider figure{
    width:150%;
    position: relative;
    animation:  slider 20s   infinite;
    display: flex;
    flex-wrap: nowrap;
   
    
  }
  
  .slider .testimonial{
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  
    
  }

  
  
  .slider .testimonial2{
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
      
    }
  
    @keyframes slider {
      0% { transform: translateX(10%); }
      5% { transform: translateX(5%); }
      10% { transform: translateX(0%); }
    15% { transform: translateX(-5%); }
    20% { transform: translateX(-10%); }
 25% { transform: translateX(-25%); }
 35% { transform: translateX(-35%); }
      45% { transform: translateX(-45%); }
      55% { transform: translateX(-55%); }
 65% { transform: translateX(-65%); }
 75% { transform: translateX(-75%); }
 85% { transform: translateX(-85%); }
 95% { transform: translateX(-95%); }
100% { transform: translateX(10%); }
    }
    
  
}
/* ===============================
   FOOTER
=============================== */
.footer {
  background-color: #400080;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #222;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #FF6600;
  text-decoration: underline;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.subscribe-form input {
  padding: 8px 10px;
  border: none;
  border-radius: 4px;
}

.subscribe-form button {
  background-color: #FF6600;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.subscribe-form button:hover {
  background-color: #FF6600;
}

.footer-bottom p, .footer-links a {
  font-size: 0.85rem;
}

.footer-links a {
  color: #999;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #FF6600;
  text-decoration: underline;
}

.accreditation {
   margin: 50px auto 0;
  text-align: center;
  font-size: 13px;
  color: #999;
 
}

/* ===============================
   WHATSAPP CTA
=============================== */
.whatsapp-cta {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}

.whatsapp-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.whatsapp-cta a:hover {
  background-color: #128c7e;
}

.whatsapp-cta i {
  font-size: 20px;
}

/* ===============================
   POPUP MODAL
=============================== */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background-color: #fff;
  color: #333;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

.popup-box h2 {
  margin-top: 0;
  font-size: 24px;
  color: #000;
}

.popup-box p,
.popup-box ul {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.popup-box ul {
  padding-left: 20px;
}

.popup-box ul li {
  margin-bottom: 6px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

/* ===============================
   ANIMATIONS
=============================== */
.animate-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-card.delay {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===============================
   MOBILE OVERRIDES
=============================== */
@media (max-width: 768px) {
  /* NAVBAR */
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
  }
  .nav-links.active { max-height: 500px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-top:1px solid #eee;}
  .nav-left, .nav-right { flex-direction: column; gap:15px; padding:10px 0; }
  .logo img { width:60px; }

  /* HERO SLIDER */
  .content h1 { font-size: 1.4rem; }
  .content p { font-size: 0.8rem; }
  .slide-btn { padding:6px 10px; }

  /* SECTIONS */
  .solution-card, .po-advantages { width: 100%; padding:20px; }
  .po-advantages > img { order:-1; height:280px; }
  .po-advantages .card-footer2 { flex-direction: column; align-items: stretch; }
  .po-advantages .apply-btn, .po-advantages .learn-link { text-align:center; }

  .features-grid, .features-grid2 { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  /*.test-layout { flex-direction: column; }*/
  /*.testimonial, .testimonial2 { flex-direction: column; width:80vw; height:fit-content; margin-bottom:50px; }*/
  /*.customer-pic { width:80vw; height:50vw; border-radius:25px 25px 0 0; }*/
  /*.actual-comment { font-size: 10px; margin:0 50px 0 0; }*/
  /*.name { margin-right:50px; }*/

  /* FOOTER */
  .footer-container { flex-direction: column; text-align: center; }
  .footer-col { align-items: center; }
  .footer-bottom { display: flex; flex-direction: column; gap: 10px; text-align:center; border-top:1px solid #4a1e64; }
  .footer-links { margin-top:10px; }
}

/* =========================
   WHY CHOOSE / FEATURES GRID
========================= */
.why-choose {
  padding: 4rem 2rem;
  background: #f9f7fd;
}
.why-choose .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.carousel{
  width: 100%;
  overflow-x: auto;
margin: 3em 3em 1em 3em;
display: flex;
gap: 2em;
scroll-behavior: smooth;
anchor-name: --carousel;
scroll-snap-type: x mandatory;
scroll-marker-group: after;
align-items: center;
justify-content: flex-start;
  padding-inline: 2rem;
}

.carousel::scroll-marker-group{
  display: flex;
  justify-content: center;
  gap: .5em;
  margin-bottom
 :4em;
}

.card-item::scroll-marker{
  content: '';
  height: 1em;
  width: 1em;
  background-color: #5a5a5a;
  border-radius: 50%;
 

}


.card-item::scroll-marker:target-current{
  background-color: #400080;
}
.carousel::-webkit-scrollbar{
  display: none;
}

.carousel::scroll-button(right), .carousel::scroll-button(left) {
  content: '›';
  border: none;
  background-color: #400080;
  color: white;
  font-size: 3rem;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  padding-bottom: .1em;
  cursor: pointer;
  position: fixed;
  position-anchor: --carousel;
  position-area: right center ;
  translate: -50%;
  
}
.carousel::scroll-button(left){
  content: '‹';
   position-area: left center ;
    translate: 50%;
  }

  .carousel::scroll-button(right):disabled, .carousel::scroll-button(left):disabled{
    opacity: 0.4;
    cursor: auto;
  }

  

.card-item{
  scroll-snap-align: start;
  flex: 0 0 20em;
  aspect-ratio: 5 / 3;
padding: 1em;
align-content: center;
text-align: center;


}






/* =========================

   RESPONSIVE

========================= */

@media(max-width: 500px){
  .card-item{
    flex : 0 0 100%;
  }
}

@media(min-width:769px){
  .carousel{
    display: none;
  }
}

.features-grid2 {
   
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: center;
}

.features-grid2 div:first-of-type{
    border-top: 3px solid #400080;
    border-bottom: 3px solid #FF6600 ;
    
}
.features-grid2 div:last-of-type{
    border-bottom: 3px solid #400080;
    border-top : 3px solid #FF6600;
    
}

.feature-grid{
    margin-bottom: 24px;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .features-grid, .features-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
 
  .test-layout {
    flex-direction: column;
    align-items: center;
  }
  .customer-pic {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
.features-grid{
    display: none;
}
  
  .features-grid2{
      flex-direction: column;
  }
  .slider {
    overflow-x: scroll;
    padding-bottom: 1rem;
    height: 600px;
  }
    .test-layout{
      height:550px;
    }
    /*.testimonials{*/
    /*  margin: 0;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/

    /*}*/
.testimonial, .testimonial2{
  display: flex;
  flex-direction: column;
  width:80vw;
  background-color: #f4f2f7;
height: 550px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
 border-radius: 25px;

 margin-bottom: 50px;
 

 
}

.quotes{
  width: 36px;
  height: 36px;
}

.actual-comment{
  font-size: 10px;
  margin: 0 50px 0 0;
    flex-grow: 1;
  
}

.name{
  margin-right: 50px;
}

.customer-pic{
  width: 80vw;
  
 
  height: 50vw;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;

}
.comment{
display: flex;
  flex-direction: column;
  flex-grow: 1;


}

.comment p{
  flex-wrap: wrap;
 
}

.quotes{
  width: 55px;
}
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .subscribe-form {
    flex-direction: column;
  }
  
  /* Auto sliding animation */

  .slider figure {

    width: max-content;

    
animation: slider 20s infinite;
    display: flex;

  

   


  }



  .slider .testimonial,

  .slider .testimonial2 {

    flex-shrink: 0;

    overflow: hidden;

    justify-content: center;

    align-items: center;

  }



  @keyframes slider {

    0%   { transform: translateX(10%); }

    5%   { transform: translateX(5%); }

    10%  { transform: translateX(0%); }

    15%  { transform: translateX(-5%); }

    20%  { transform: translateX(-10%); }

    25%  { transform: translateX(-25%); }

    35%  { transform: translateX(-35%); }

    45%  { transform: translateX(-45%); }

    55%  { transform: translateX(-55%); }

    65%  { transform: translateX(-65%); }

    75%  { transform: translateX(-75%); }

    85%  { transform: translateX(-85%); }

    95%  { transform: translateX(-95%); }

    100% { transform: translateX(10%); }

  }

  figure{
    display: flex;
    gap: 2em;
  }
}

@media(min-width: 769px){
    .features-grid2{
        flex-direction: row;
    }
}

@media (max-width: 480px) {
  .feature-card h3 {
    font-size: 1.1rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .testimonials h2,
  .testimonials h3 {
    font-size: 1.2rem;
  }
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  margin-bottom: 20px;
}

.testimonials h3 {
  text-align: center;
  font-size: 1.6rem;
  margin: 50px 0 20px 0;
}

/* Slider wrapper */
.slider {
  width: 100%;
}

/* Layout */
/*.test-layout {*/
/*  display: flex;*/
/*}*/

/* Individual testimonial cards */
.testimonial,
.testimonial2 {
  background-color: #f4f2f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border-radius: 25px;
}

/* Customer image */
.customer-pic {
  object-fit: cover;
}

/* Quote icon */
.quotes {
  width: 55px;
  height: 55px;
}

/* Comment section */
.comment {
  padding: 60px;
}

.actual-comment {
  display: flex;
  flex-direction: row;
}

.actual-comment p {
  margin-top: 28px;
}

/* Name */
.name {
  margin: 60px 0 24px 0;
}

.name p {
  font-size: 0.9rem;
  margin-left: 50px;
}

/* =========================
   DESKTOP (≥ 768px)
========================= */
@media (min-width: 768px) {

  .slider {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .test-layout {
    flex-direction: row;
  }

  .testimonial,
  .testimonial2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80vw;
    height: 250px;
    margin-left: 3%;
  }

  .customer-pic {
    width: 50%;
    height: 350px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }

  /* Auto sliding animation */
  .slider figure {
    width: 150%;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    animation: slider 20s infinite;
  }

  .slider .testimonial,
  .slider .testimonial2 {
    flex-shrink: 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }

  @keyframes slider {
    0%   { transform: translateX(10%); }
    5%   { transform: translateX(5%); }
    10%  { transform: translateX(0%); }
    15%  { transform: translateX(-5%); }
    20%  { transform: translateX(-10%); }
    25%  { transform: translateX(-25%); }
    35%  { transform: translateX(-35%); }
    45%  { transform: translateX(-45%); }
    55%  { transform: translateX(-55%); }
    65%  { transform: translateX(-65%); }
    75%  { transform: translateX(-75%); }
    85%  { transform: translateX(-85%); }
    95%  { transform: translateX(-95%); }
    100% { transform: translateX(10%); }
  }
}

/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {
    
    .start-application{
        margin-left:  4em ;
        margin-top:8rem;
    }

  .test-layout {
    flex-direction: column;
  }

  .testimonials {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonial,
  .testimonial2 {
    display: flex;
    flex-direction: column;
    width: 80vw;
    height: fit-content;
    margin-bottom: 50px;
    flex-wrap: wrap;
    
  
  }

  .customer-pic {
    width: 80vw;
    height: 50vw;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  .comment {
    padding: 0;
    width: 90vw;
    margin: 0;
  }

  .actual-comment {
    font-size: 10px;
    margin-right: 50px;
  }

  .name {
    margin-right: 50px;
  }

  .quotes {
    width: 36px;
    height: 36px;
  }
  
  .testimonial,
.testimonial2 {
  margin: 0 auto 50px auto;
}

}

  .financial-solutions {
    background-color: #f9fafc;
    padding: 60px 20px;
    text-align: center;
  }
  
    .footer-bottom { display: flex; flex-direction: column; gap: 10px; text-align:center; border-top:1px solid #4a1e64; }
    
    @media (max-width: 968px) {
  .po-advantages .po-advantages2 {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px;
  }
  
  .po-advantages img {
    height: 300px;
    order: -1;
  }
  
  .financial-solutions {
    padding: 50px 0;
  }
}

    .ant-strip {
      background: #ffffff;
      width: 100%;
      overflow: hidden;
      border-top: 3px solid #C24E00;
      border-bottom: 3px solid #C24E00;
    }

    .ant-strip__inner {
      display: flex;
      align-items: stretch;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .ant-strip__label {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 24px 36px 24px 32px;
      flex-shrink: 0;
      min-width: 220px;
      border-right: 1px solid #ebebeb;
    }

    .ant-strip__accent {
      width: 24px;
      height: 2px;
      background: #C24E00;
      margin-bottom: 10px;
    }

    .ant-strip__label-top {
      font-size: 16px;
      font-weight: 600;
      color: #400080;
      letter-spacing: 0.02em;
      line-height: 1.3;
    }

    .ant-strip__label-sub {
      font-size: 10px;
      color: #aaaaaa;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      margin-top: 5px;
    }

    .ant-strip__stats {
      display: flex;
      flex: 1;
      flex-wrap: wrap;
    }

    .ant-strip__stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 20px;
      flex: 1 1 140px;
      border-left: 1px solid #ebebeb;
      position: relative;
      text-align: center;
      transition: transform 0.25s ease;
    }

    .ant-strip__stat:hover {
      transform: translateY(-3px);
    }

    .ant-strip__number {
      font-size: 34px;
      font-weight: 600;
      color: #E8893A;
      line-height: 1;
      white-space: nowrap;
    }

    .ant-strip__text {
      font-size: 10px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 7px;
      line-height: 1.5;
      max-width: 110px;
    }

    .ant-strip__sub {
      font-size: 11px;
      font-style: italic;
      color: #bbb;
      margin-top: 3px;
    }

    .ant-strip__dot {
      width: 5px;
      height: 5px;
      background: #C24E00;
      border-radius: 50%;
      position: absolute;
      top: 14px;
      right: 14px;
      animation: ant-pulse 2.5s infinite;
      opacity: 0.6;
    }

    @keyframes ant-pulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 0.15; transform: scale(1.6); }
    }

    @media (max-width: 768px) {
      .ant-strip__inner {
        flex-direction: column;
      }

      .ant-strip__label {
        width: 100%;
        padding: 18px 24px;
        border-right: none;
        border-bottom: 1px solid #ebebeb;
      }

      .ant-strip__stat {
        flex: 1 1 calc(50% - 1px);
        border-left: none;
        border-top: 1px solid #ebebeb;
        padding: 18px 16px;
      }

      .ant-strip__stat:nth-child(even) {
        border-left: 1px solid #ebebeb;
      }

      .ant-strip__number {
        font-size: 30px;
      }
    }

    @media (max-width: 480px) {
      .ant-strip__number { font-size: 28px; }
      .ant-strip__text { font-size: 9px; }
      .ant-strip__stat { padding: 16px 12px; }
    }
