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

body {
  font-family: 'Inter', sans-serif;
}
/* ================= HEADER ================= */




/* ================= HERO ================= */
.hero-section {
height: 750px;
  display: flex;
  align-items: center;
  background: url("/website/images/home-hero.jpeg") no-repeat center;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}

/* overlay fade left */
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;

}

/* content above overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* ================= TEXT ================= */
.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.highlight {
  color: #E31922;
}

/* ================= ANIMATION ================= */
.line {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  animation: fadeUp 0.8s ease forwards;
}

.line1 { animation-delay: 0.3s; }
.line2 { animation-delay: 0.8s; }
.line3 { animation-delay: 1.3s; }

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

/* ================= DESCRIPTION ================= */
.hero-desc {
  margin-top: 20px;
  color: #888;
  max-width: 450px;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

 .hero-title {
     font-size: 20px;
        text-align: center;
        width: 100%;
        position: absolute;
        left: 50%;
        top: 105px;
        transform: translateX(-50%);
        max-width: 275px;
        margin: 0 auto;
        display: block;
    }
    .hero-title br {
    display: none;
  }
  .hero-form {
    display: none;
  }
  .hero-desc{
    display: none;
  }

  .nav-menu {
    display: none;
  }

}




/* SECTION */
.people-section {
    min-height: 436px;
    padding-top: 30px;
}

/* TITLE */
.people-title {
  font-size: 46px;
  font-weight: 600;
   color: #757575;
  line-height: 1.2;
}

/* RED TEXT */
.highlight-text {
 color: #757575;
  position: relative;
  display: inline-block;
}


/* DESCRIPTION */
.people-desc {
    font-size: 16px;
    color: #8a8a8a;
    text-align: justify;
    line-height: 1.8;
    max-width: 520px;

}

/* IMAGE */
.people-img {
  /* max-width: 435px; */
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .people-title {
    font-size: 34px;
  }

  .people-title br {
   display: none;
  }
  .people-img {
    margin-top: 30px;
    max-width: 280px;
  }

  .people-section {
    text-align: center;
        min-height: auto;
  }
}



/* SECTION */
.company-section {
  padding-top: 50px;
}

/* COMMON CARD */
.info-card {
 background: #fff;
    padding: 25px;
      height: 300px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}


.info-card h3 {
      font-size: 46px;
    font-weight: 700;
    color: #757575;
}

.info-card p {
  font-size: 16px;
  color: #727277;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 10px;
}

/* RED */
.red {
  color: #E31922;
}

/* CEO CARD */
.ceo-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
.position-trust br{
  display: none;
}

.ceo-img {
  border-radius: 20px;
  /* max-width: 250px; */
}

/* CEO TITLE */
.ceo-title {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  width: 60%;
  text-align: center;
}

.red {
  color: #e60023;
}

/* quote images */
.quote-img {
  position: absolute;
  width: 40px;  /* adjust size */
}

/* left top */
.quote-img.left {
  left: 30px;
  top: -10px;
    height: 24px;
     width: 30px;
}

/* right bottom */
.quote-img.right {
    right: 25px;
    width: 30px;
    bottom: -15px;
    height: 24px;
}
/* TEXT */
.ceo-text {
       font-size: 16px;
    color: #777;
    font-weight: 400;
    margin-top: 30px;
    padding-left: 22px;
    padding-right: 12px;
    line-height: 1.9;
}

.ceo-author {
  font-size: 13px;
  margin-top: 10px;
      margin-left: 24px;
}

/* TRUST BADGE */

/* STORY */
.story-card {
    background: #fff;
    padding: 42px;
    border-radius: 65px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.story-title {
    font-size: 46px;
    font-weight: 700;
}

.story-text {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ceo-title {
    font-size: 26px;
        width: 100%;
        margin-bottom: 30px;
  }
  .hero-section {
    height: 450px;
    position: relative;
    background: url("/website/images/home-hero-mob.jpeg") no-repeat center center / cover;
    
  }
  .hero-title{
        color: #fff;
  }
  .hero-section::before{
    background: none;
  }

  .story-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .ceo-img {
    margin-bottom: 20px;
  }
}


/* new */


.glance-heading {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
 
  color: #757575;
  /* dark navy */
  margin: 40px 0;
}

.glance-heading .highlight {
  color: #E31922;
  /* red color */
}


/* new */

    /* ════════════════════════════════════════════
     DESKTOP LAYOUT  (> 768px)
  ════════════════════════════════════════════ */
    .desktop-scene {
      position: relative;
      width: 100%;
      max-width: 1080px;
      height: 310px;
      margin-top: 36px;
      display: block;
    }

    .path-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      overflow: visible;
    }

    .seg {
      fill: none;
      stroke: #d42b2b;
      stroke-width: 2;
      stroke-linecap: round;
      opacity: 0.8;
    }

    /* Desktop stat cards */
    .stat-d {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 120px;
      transform: translateX(-50%) scale(0);
      opacity: 0;
      z-index: 2;
    }

    /* ABOVE: circle → value → label */
    .above .circle {
      order: 1;
      margin-bottom: 10px;
    }

    .above .stat-value {
      order: 2;
    }

    .above .stat-label {
      order: 3;
     
      margin-top: 3px;
    }

    /* BELOW: value → label → circle */
    .below .stat-value {
      order: 1;
    }

    .below .stat-label {
      order: 2;
      margin-top: 3px;
      margin-bottom: 10px;
    }

    .below .circle {
      order: 3;
    }

    .sd1 {
      left: 8%;
      top: 8px;
    }

    .sd2 {
      left: 27%;
      top: 56px;
    }

    .sd3 {
      left: 50%;
      top: 8px;
    }

    .sd4 {
      left: 73%;
      top: 56px;
    }

    .sd5 {
      left: 92%;
      top: 8px;
    }

    /* ════════════════════════════════════════════
     MOBILE LAYOUT  (≤ 768px)
  ════════════════════════════════════════════ */
    .mobile-grid {
      display: none;
      width: 100%;
      max-width: 420px;
      margin-top: 36px;
    }

    .grid-rows {
      display: flex;
      flex-direction: column;
      gap: 36px;
      align-items: center;
    }

    .grid-row {
      display: flex;
      justify-content: center;
      gap: 24px;
      width: 100%;
    }

    /* Mobile stat card */
    .stat-m {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 150px;
      opacity: 0;
      transform: scale(0.45);
    }

    .stat-m .circle {
      margin-bottom: 12px;
    }

   

    .stat-m .stat-label {
      margin-top: 4px;
    }

    /* ════ SHARED CARD STYLES ════ */
    .circle {
     width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    }

    .circle svg {
      width: 44px;
      height: 44px;
      fill: none;
      stroke: #222;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .badge {
      position: absolute;
      top: -4px;
      left: -4px;
      width: 26px;
      height: 26px;
      background: #d42b2b;
      border-radius: 50%;
      color: #fff;
      font-size: 11.5px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(212, 43, 43, 0.45);
    }

  


    /* ════ RESPONSIVE SWITCH ════ */
    @media (max-width: 768px) {
      .desktop-scene {
        display: none !important;
      }

      .mobile-grid {
        display: block !important;
      }

      .stat-value {
        font-size: 28px;
         color: #FF3B3F;
      }

      .stat-label {
        font-size: 13px;
      }
      .info-card br{
  display: none;
}
    }
/* end */

/* SECTION */
.stats-section {
  padding: 0px 0 0px;
  background: #fff;
}

/* ── Outer stage — fixed height to hold zigzag ── */
.stats-stage {
 position: relative;
    width: 100%;
    margin: auto;
    height: 280px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  /* enough room for top + bottom rows + labels */
}

/* ── Wave SVG spans full stage ── */
.wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

/* ── Each stat item — absolutely positioned ── */
.stat-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  /* width set inline per item so text wraps nicely */
  width: 130px;
}

/* ── Circle ── */
.icon-circle {
  width: 100px;
  height: 100px;

  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.icon-box-img {
  height: 20px;
}

.state-logo {
  height: 40px;
}

.icon-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.icon-circle svg {
  width: 42px;
  height: 42px;
  stroke: #1a1a3e;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Red badge number ── */
.badge-num {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #E31922;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Stat number ── */
.stat-number {
    font-size: 48px;
    color: #FF3B3F;
    margin-top: 12px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 8px;
    font-weight: 700 !important;
  
    line-height: 1;
}

/* ── Stat label ── */
.stat-label {
  font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    color: #46404E;
    line-height: 1.25;
     text-align: center;
}


/* ── Responsive: collapse to vertical list on mobile ── */
@media (max-width: 640px) {
  .stats-stage {
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

 .stat-item {
        position: static !important;
        width: 45%;
        margin-bottom: 20px;
        text-align: center;
    }

  /* Last item full width (5th) */
  .stat-item:nth-child(6) {
    width: 100%;
  }

  /* Hide wave on mobile */
  .wave-svg {
    display: none;

  }


  .glance-heading {
    font-size: 22px;
    margin: 40px 0;
  }
  .stats-section {
    padding: 0px 0 40px;
  }


}


/* end */

.enterprise-offeringsapple {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0 40px;
    background: url(/website/images/buytryweb.png) center center / cover no-repeat;
    position: relative;
    height: 430px;
    max-width: 1400px;
    margin: auto;
    width: 100%;
}


/* Laptop */
@media (min-width: 1025px) and (max-width: 1366px) {
    .enterprise-offeringsapple {
               height: 405px;

        padding: 50px 0 35px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .enterprise-offeringsapple {
        height: 280px;
        padding: 40px 0 30px;
    }
}

/* Mobile */
@media (max-width: 450px) {
    .enterprise-offeringsapple {
      background: url(/website/images/buytrymob.png) center center / cover no-repeat;
        
        height: 700px;
    }
    .people-desc {
      display: none;
    }
    .company-section {
           padding-bottom: 12px;
    background: #F3F3F6;
}
.ceo-card{
  position: relative;
}

.ceo-text {
   font-size: 14px;
    margin-top: 30px;
            padding: 0;
}
.story-card {
  box-shadow: unset;
  text-align: center;
}
.position-trust br{
  display: block;
}
.info-card {
    background: transparent;
    padding: 25px;
    height: auto;

    border-radius: 18px;
    box-shadow:none ;
}
.info-card h3 {
    font-size: 27px;
}


}

/* end */

/* new  */

.trusted-section {
   
    /* padding: 80px 0; */
    padding-bottom: 2px;
    padding-top: 50px;
    position: relative;
}
.trusted-title {
    font-size: 42px;
    font-weight: 700;
   margin-bottom: 35px;
}
.trusted-title span {
    color: #FF3B3F;
}
.trusted-desc {
    max-width: 720px;
    margin: 15px auto 60px;
    color: #6c757d;
    font-size: 14px;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 55px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
}

/* LOGO STYLE */
.logo-box {
  width: 120px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  border-radius: 12px;
  width: 100%;
}



/* LEFT SCROLL */
.marquee-left .marquee-track {
  animation: scroll-left 15s linear infinite;
}

/* RIGHT SCROLL */
.marquee-right .marquee-track {
  animation: scroll-right 15s linear infinite;
}

/* KEYFRAMES */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* end */



/* SECTION */
.corp-banner {
background: url(/website/images/apple-form.png) no-repeat center center / cover;
  border-radius: 15px;
  padding: 40px 50px;
  min-height: 180px;
}
.corp-text{
  margin-left: 30px;
}
.corp-actions{
   margin-right: 30px;
}
/* TEXT */

.corp-text h3 {
  color: #E31922;
  font-weight: 600;
  
  margin-bottom: 10px;
  font-size: 46px;
}

.corp-text p {
    color: #333;
    font-size: 14px;
    max-width: 520px;
    font-weight: 400;
    line-height: 1.6;
}

/* BUTTON */
.corp-actions .know-btn {
  background: #E31922;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
}

.corp-actions .know-btn:hover {
  background: #c4001d;
}


/* HEADING */
.corp-heading {
  font-size: 40px;
  font-weight: 700;
  color: #0d0d2b;
}

.corp-heading span {
  color: #e31b23;

  position: relative;
}


/* CARD */
.corp-card {
  background: transparent;
  padding: 20px;
    position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 14px;
  gap: 20px;
  align-items: center;
 border: 0.8px solid #ccc;
  transition: 0.3s;
}

.corp-card img {
    width: 175px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
     display: block;
}
.corp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;

  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);

  transition: left 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Hover */
.corp-card:hover::before {
  left: 120%;
}
.corp-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.corp-card h5 {
  font-weight: 600;
      line-height: 1.4;
  font-size: 20px;
}

.corp-card p {
  font-size: 16px;
  color: #666;
  font-weight: 400;
      line-height: 1.6;
}
/* end */



/* RESPONSIVE */
@media (max-width: 768px) {
  .corp-banner {
    text-align: center;
    gap: 20px;
  }
  .trusted-title {
    font-size: 24px;
  }
  .corp-text h3 {
    font-size: 24px;
  }
  .corp-actions{
    margin: auto;
  }
  .corp-text{
  margin-left: 0px;
}
.corp-actions {
        margin-right: auto;
    }
  .corp-actions .know-btn {
    background: #E31922;
    color: #fff;
    padding: 12px 46px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    width: 100%;
    margin: auto;
    display: inline-block;
    transition: 0.3s;
}.corp-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0d0d2b;
}


  .corp-text p {
    max-width: 100%;
    font-size: 14px;
  }
  .corp-card {
    border: none;
    display: flex;
    align-items: start;
    padding: 0;
    gap: 0px;
        flex-direction: column;
  }
  .corp-card img {
    width: 100%;
    height: 200px;
  }
  .corp-card p {
    display: none;

  }
  .innovation br{
    display: none;
  }
  .corp-card h5 {
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
  overflow: hidden;
    text-align: start;
    
    font-size: 14px;
    display: ruby-text;
  }
  .position-trust br{
  display: block;
}
  .highlight-text br{
    display: none;
  }


}
@media (max-width: 430px) {
  .hero-section {
background: url(/website/images/home-hero-mob.jpeg) no-repeat center center / contain;
  }
  .circle {
    width: 80px;
        height: 80px;
  }
  .stat-m .circle {
    margin-bottom: 2px;
}
  .circle svg {
    width: 30px;
    height: 30px;
  }
  .stat-m .stat-label {
    margin-top: -3px;
}
.innovation{
  height: 20px;
    margin-bottom: 8px;
    margin-top: 5px;
}


  .stat-value {
        font-size: 28px;
        font-size: 2rem;
        color: #FF3B3F;
        /* margin-top: 12px; */
        font-family: 'Open Sans', sans-serif;
        /* margin-bottom: 8px; */
        font-weight: 700 !important;
    }
    .stat-label {
        margin-top: 4px;
        font-size: .9rem;
        max-width: 100px;
    }
    .position-trust{
position: absolute;
line-height: 1;
    font-size: 12px;
            right: 35px;

top: 46%;
}
.ceo-author {
    font-size: 13px;
    margin-top: 10px;
    margin-left: 0px;
}
.company-section {
    padding-top: 0px;
}


 
}

@media (max-width: 390px) {
   .quote-img.right {
    right: -2px;
    }
    .quote-img.left {
    left: 3px;
    }
        .position-trust {
        position: absolute;
        line-height: 1;
        font-size: 12px;
        right: 35px;
        background: #fff;
        top: 42%;
    }
}