:root {
 --header-bg: #021526;
 --header-bg-soft: #061d31;
 --gold: #f5b548;
 --gold-deep: #dd9b2c;
 --text: #ffffff;
 --muted: #b9c0c8;
}

* {
 box-sizing: border-box;
}

body {
 margin: 0;
 min-height: 100vh;
 background: #f4f6f8;
 font-family: Arial, Helvetica, sans-serif;
}

.site-header {
 position: sticky;
 z-index: 10;
 display: flex;
 align-items: center;
 gap: clamp(18px, 3vw, 46px);
 min-height: 69px;
 padding: 0 clamp(18px, 4vw, 62px);
 background:
  linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 24%, rgba(0, 0, 0, 0.16)),
  var(--header-bg);
 border-bottom: 1px solid rgba(245, 181, 72, 0.14);

    position: sticky;
    top: 0;
    z-index: 9999;
    /* background: #fff; */

}

.brand {
 display: inline-flex;
 align-items: center;
 gap: 15px;
 min-width: 188px;
 color: #021526;
 text-decoration: none;
 background: white;
 border-radius: 10px;
 padding: 5px;
}

.brand-mark {
 display: grid;
 width: 43px;
 height: 43px;
 place-items: center;
}

.brand-mark svg {
 width: 100%;
 height: 100%;
 fill: var(--gold);
 filter: drop-shadow(0 0 2px rgba(245, 181, 72, 0.35));
}

.brand-copy {
 display: grid;
 line-height: 1;
}

.brand-name {
 font-size: clamp(24px, 2.25vw, 31px);
 font-weight: 800;
 letter-spacing: 0;
}

.brand-subtitle {
 margin-top: 3px;
 color: #021526;
 font-size: 8px;
 font-weight: 800;
 letter-spacing: 0.4px;
 text-transform: uppercase;
}

.primary-nav {
 display: flex;
 align-items: center;
 justify-content: center;
 flex: 1;
 gap: clamp(18px, 3vw, 43px);
 min-width: 0;
}

.nav-link {
 position: relative;
 display: inline-flex;
 align-items: center;
 min-height: 69px;
 color: var(--text);
 font-size: clamp(10px, 0.82vw, 13px);
 font-weight: 700;
 letter-spacing: 0;
 text-decoration: none;
 text-transform: uppercase;
 white-space: nowrap;
 transition: color 180ms ease;
}

.nav-link:hover {
 color: var(--gold);
}


.quote-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 11px;
 min-width: 170px;
 min-height: 40px;
 padding: 0 14px 0 19px;
 color: #121212;
 background: linear-gradient(180deg, #ffc65a 0%, var(--gold) 100%);
 border: 1px solid var(--gold-deep);
 border-radius: 4px;
 box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0;
 text-decoration: none;
 text-transform: uppercase;
 white-space: nowrap;
}

.quote-icon {
 display: grid;
 width: 21px;
 height: 21px;
 place-items: center;
 border: 2px solid rgba(17, 17, 17, 0.52);
 border-radius: 50%;
 font-size: 20px;
 font-weight: 900;
 line-height: 1;
}

.menu-toggle {
 display: none;
 width: 42px;
 height: 42px;
 margin-left: auto;
 padding: 0;
 place-items: center;
 background: transparent;
 border: 1px solid rgba(245, 181, 72, 0.55);
 border-radius: 4px;
 cursor: pointer;
}

.toggle-line {
 display: block;
 width: 21px;
 height: 2px;
 margin: 3px 0;
 background: var(--gold);
}

.sr-only {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}


@media (max-width: 1120px) {
 .site-header {
  gap: 20px;
  padding-inline: 24px;
 }

 .primary-nav {
  gap: 22px;
 }

 .quote-button {
  min-width: 152px;
 }
}

@media (max-width: 920px) {
 .site-header {
  min-height: 68px;
 }

 .brand {
  min-width: 0;
 }

 .menu-toggle {
  display: grid;
 }

 .primary-nav,
 .quote-button {
  display: none;
 }

 .site-header.menu-open .primary-nav,
 .site-header.menu-open .quote-button {
  display: flex;
 }

 .site-header.menu-open {
  flex-wrap: wrap;
  padding-bottom: 16px;
 }

 .site-header.menu-open .primary-nav {
  order: 3;
  flex-basis: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-top: 9px;
 }

 .site-header.menu-open .nav-link {
  min-height: 43px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .site-header.menu-open .nav-link.active::after {
  right: auto;
  bottom: 8px;
  width: 38px;
 }

 .site-header.menu-open .quote-button {
  order: 4;
  width: 100%;
  margin-top: 12px;
 }
}

@media (max-width: 480px) {
 .site-header {
  padding-inline: 14px;
 }

 .brand-mark {
  width: 36px;
  height: 36px;
 }

 .brand-name {
  font-size: 22px;
 }

 .brand-subtitle {
  font-size: 7px;
 }
}

/* footer section */
.site-footer {
 color: var(--text);
 background: linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 35%, rgba(0, 0, 0, .16)), var(--header-bg);
 border-bottom: 2px solid rgba(245, 181, 72, .28);
}

.footer-inner {
 display: grid;
 grid-template-columns: minmax(250px, 1.2fr) minmax(150px, .75fr) minmax(210px, .9fr) minmax(260px, 1fr);
 gap: clamp(28px, 4vw, 58px);
 max-width: 1400px;
 margin: 0 auto;
 padding: 25px clamp(18px, 5vw, 70px) 16px;
}

.footer-col {
 padding-left: clamp(22px, 3vw, 42px);
 border-left: 3px solid rgba(255, 255, 255, .2);
}

.footer-logo {
 min-width: 0;
 margin-bottom: 13px;
}

.footer-logo .brand-mark {
 width: 54px;
 height: 54px;
}

.footer-logo .brand-name {
 font-size: 35px;
}

.footer-logo .brand-subtitle {
 font-size: 10px;
}

.footer-brand p {
 max-width: 360px;
 margin: 0 0 20px;
 color: rgba(255, 255, 255, .78);
 font-size: 14px;
 font-weight: 700;
 line-height: 1.45;
}

.social-links {
 display: flex;
 flex-wrap: wrap;
 gap: 13px;
}

.social-links a {
 display: grid;
 width: 35px;
 height: 35px;
 place-items: center;
 color: var(--text);
 /* border: 3px solid rgba(255,255,255,.78); */
 /* border-radius: 50%; */
 font-size: 19px;
 font-weight: 900;
 text-decoration: none;
}

.social-links a:hover,
.footer-col a:hover {
 color: var(--gold);
 border-color: var(--gold);
}

.footer-col h3 {
 margin: 0 0 18px;
 color: var(--text);
 font-size: 15px;
 font-weight: 700;
 text-transform: uppercase;
}

.footer-col ul {
 display: grid;
 gap: 8px;
 margin: 0;
 padding: 0;
 list-style: none;
}

.footer-col a,
.footer-col li {
 color: rgba(255, 255, 255, .78);
 font-size: 14px;
 font-weight: 700;
 line-height: 1.28;
 text-decoration: none;
}

.footer-contact li {
 display: grid;
 grid-template-columns: 35px 1fr;
 align-items: start;
 gap: 10px;
}

.footer-contact li+li {
 margin-top: 19px;
}

.contact-icon {
 display: grid;
 width: 26px;
 min-height: 26px;
 place-items: center;
 color: var(--gold);
 font-size: 26px;
 font-weight: 900;
}

.footer-copy {
 max-width: 1320px;
 margin: 0 auto;
 padding: 0 clamp(18px, 5vw, 70px) 17px;
 color: rgba(255, 255, 255, .78);
 font-size: 14px;
 font-weight: 700;
 text-align: center;
}

@media (max-width: 920px) {
 .footer-inner {
  grid-template-columns: 1fr 1fr;
 }

 .footer-col {
  padding-left: 24px;
 }
}

@media (max-width: 480px) {
 .footer-inner {
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 28px;
 }

 .footer-col {
  padding-left: 0;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, .2);
  border-left: 0;
 }

 .footer-logo .brand-mark {
  width: 42px;
  height: 42px;
 }

 .footer-logo .brand-name {
  font-size: 28px;
 }

 .footer-copy {
  text-align: left;
 }
}



/* main section home page */

.hero-section {
 --hero-image: url("/assets/img/home.jpg");
 position: relative;
 display: grid;
 grid-template-columns: minmax(280px, 660px) minmax(190px, 1fr);
 align-items: center;
 gap: clamp(28px, 5vw, 80px);
 min-height: clamp(520px, 64vw, 760px);
 padding: clamp(42px, 6vw, 86px) clamp(18px, 5.5vw, 78px);
 overflow: hidden;
 background:
  linear-gradient(90deg, rgba(2, 21, 38, 0.96) 0%, rgba(2, 21, 38, 0.86) 30%, rgba(2, 21, 38, 0.01) 68%, rgba(2, 21, 38, 0.01) 100%),
  linear-gradient(0deg, rgba(2, 21, 38, 0.72), rgba(2, 21, 38, 0.08) 45%, rgba(2, 21, 38, 0.1)),
  var(--hero-image) center / cover no-repeat,
  var(--header-bg);
}

.hero-content {
 position: relative;
 z-index: 1;
 max-width: 650px;
}

.hero-content h1 {
 margin: 0 0 24px;
 color: var(--text);
 font-size: 50px;
 font-weight: 700;
 line-height: 1.06;
 letter-spacing: 0;
 text-transform: uppercase;
 text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-content h1 span {
 display: block;
}

.gold-text {
 color: var(--gold);
}

.hero-content p {
 max-width: 560px;
 margin: 0 0 31px;
 color: rgba(255, 255, 255, 0.9);
 font-size: 15px;
 font-weight: 700;
 line-height: 1.55;
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 16px;
}

.hero-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 min-height: 58px;
 padding: 0 23px;
 border-radius: 5px;
 font-size: clamp(12px, 1vw, 15px);
 font-weight: 700;
 letter-spacing: 0;
 text-decoration: none;
 text-transform: uppercase;
 white-space: nowrap;
}

.hero-btn span {
 display: grid;
 width: 24px;
 height: 24px;
 place-items: center;
 border-radius: 50%;
 font-size: 17px;
 line-height: 1;
}

.hero-btn-primary {
 color: #111111;
 background: linear-gradient(180deg, #ffc65a 0%, var(--gold) 100%);
 border: 1px solid var(--gold-deep);
}

.hero-btn-primary span {
 color: var(--gold);
 background: #08213a;
}

.hero-btn-outline {
 color: var(--text);
 background: rgba(2, 21, 38, 0.42);
 border: 2px solid rgba(245, 181, 72, 0.86);
}

.hero-btn-outline span {
 color: var(--gold);
 border: 1px solid rgba(245, 181, 72, 0.86);
}

.hero-stats {
 position: relative;
 z-index: 1;
 justify-self: end;
 width: min(245px, 100%);
 border: 2px solid rgba(245, 181, 72, 0.7);
 border-radius: 5px;
 background: rgba(2, 21, 38, 0.78);
 box-shadow: 0 0 22px rgba(0, 0, 0, 0.32);
 backdrop-filter: blur(4px);
}

.hero-stat {
 display: grid;
 grid-template-columns: 70px 1fr;
 align-items: center;
 min-height: 93px;
 padding: 12px 15px;
 border-bottom: 1px solid rgba(245, 181, 72, 0.36);
}

.hero-stat:last-child {
 border-bottom: 0;
}

.stat-icon {
 display: grid;
 grid-row: span 2;
 width: 56px;
 height: 56px;
 place-items: center;
 color: var(--gold);
 border: 1px solid rgba(245, 181, 72, 0.26);
 border-radius: 50%;
 font-size: 28px;
 font-weight: 950;
 line-height: 1;
}

.hero-stat strong {
 color: var(--text);
 font-size: 25px;
 font-weight: 700;
 line-height: 1;
 text-transform: uppercase;
}

.hero-stat span:last-child {
 color: rgba(255, 255, 255, 0.86);
 font-size: 13px;
 font-weight: 700;
 line-height: 1.2;
 text-transform: uppercase;
}

@media (max-width: 1120px) {
 .hero-section {
  grid-template-columns: 1fr 220px;
  gap: 28px;
 }
}

@media (max-width: 920px) {
 .hero-section {
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
  padding-block: 52px;
  background-position: center;
 }

 .hero-stats {
  justify-self: stretch;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .hero-stat {
  border-right: 1px solid rgba(245, 181, 72, 0.36);
 }

 .hero-stat:nth-child(2n),
 .hero-stat:last-child {
  border-right: 0;
 }
}

@media (max-width: 480px) {
 .hero-section {
  padding: 38px 16px;
  background:
   linear-gradient(90deg, rgba(2, 21, 38, 0.97) 0%, rgba(2, 21, 38, 0.82) 100%),
   var(--hero-image) center / cover no-repeat,
   var(--header-bg);
 }

 .hero-content h1 {
  margin-bottom: 18px;
  font-size: 25px;
 }

 .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
 }

 .hero-btn {
  width: 100%;
  min-height: 52px;
 }

 .hero-stats {
  grid-template-columns: 1fr;
 }

 .hero-stat,
 .hero-stat:nth-child(2n) {
  border-right: 0;
 }
}
/* section two */
.why-section {
  padding: clamp(34px, 5vw, 64px) clamp(14px, 4vw, 56px);
  background:
    radial-gradient(circle at top, rgba(2, 21, 38, 0.06), transparent 38%),
    #f7f8fa;
}

.why-container {
  max-width: 1340px;
  margin: 0 auto;
}

.why-section h2 {
  margin: 0 0 22px;
  color: var(--header-bg);
  font-size:30px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;

}

.why-section h2 span {
  color: var(--gold-deep);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(2, 21, 38, 0.2);
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(2, 21, 38, 0.08);
}

.why-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 280px;
  padding: clamp(22px, 2.4vw, 34px) 20px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 249, 0.96)),
    #ffffff;
  border-right: 1px solid rgba(2, 21, 38, 0.18);
}

.why-card:last-child {
  border-right: 0;
}

.why-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.why-icon path {
  /* fill: var(--header-bg); */
}

.why-icon .gold-fill {
  fill: var(--gold);
}

.why-icon .icon-cut {
  fill: #ffffff;
}

.why-card h3 {
  min-height: 58px;
  margin:0px;
  color: var(--header-bg);
  font-size:18px;
  font-weight:700;
  line-height: 1.22;
  
}

.why-card p {
  max-width: 210px;
  margin: 0;
  color: #021526c7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-card:nth-child(3n) {
    border-right: 0;
  }

  .why-card:nth-child(n + 4) {
    border-top: 1px solid rgba(2, 21, 38, 0.18);
  }
}

@media (max-width: 920px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card,
  .why-card:nth-child(3n) {
    border-right: 1px solid rgba(2, 21, 38, 0.18);
  }

  .why-card:nth-child(2n) {
    border-right: 0;
  }

  .why-card:nth-child(n + 3) {
    border-top: 1px solid rgba(2, 21, 38, 0.18);
  }
}

@media (max-width: 480px) {
  .why-section {
    padding-inline: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card:nth-child(2n),
  .why-card:nth-child(3n) {
    min-height: auto;
    border-right: 0;
  }

  .why-card + .why-card {
    border-top: 1px solid rgba(2, 21, 38, 0.18);
  }

  .why-card h3 {
    min-height: 0;
  }
}
/* section three */
.ampl-about-section {
   width: 100%;
   padding: 80px 20px;
   background: #ffffff;
   font-family: 'Poppins', sans-serif;
   box-sizing: border-box;
  }

  .ampl-about-wrapper {
   max-width: 1280px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1.05fr 1fr;
   gap: 55px;
   align-items: center;
  }

  .ampl-about-image-box {
   width: 100%;
  }

  .ampl-about-image-box img {
   width: 100%;
   height: 450px;
   object-fit: cover;
   display: block;
   border-radius: 10px;
  }

  .ampl-about-content-box {
   text-align: left;
  }

  .ampl-about-tagline {
   margin: 0 0 12px;
   color: #021526;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 1px;
   /* text-transform: uppercase; */
   font-family: 'arial', helvetica, sans-serif;
  }

  .ampl-about-heading {
   margin: 0 0 20px;
   color: #021526;
   font-size: 30px;
   line-height: 1.25;
   font-weight: 700;
   font-family: 'arial', helvetica, sans-serif;
  }

  .ampl-about-description {
   margin: 0 0 22px;
   color: #021526;
   font-size: 15px;
   line-height: 1.8;
   font-weight: 400;
   font-family: 'arial', helvetica, sans-serif;
  }

  .ampl-about-feature-list {
   margin: 0 0 30px;
   padding: 0;
   list-style: none;
   font-family: 'arial', helvetica, sans-serif;
  }

  .ampl-about-feature-list li {
   position: relative;
   margin-bottom: 14px;
   padding-left: 34px;
   color: #222222;
   font-size: 16px;
   line-height: 1.5;
   font-weight: 600;
   font-family: 'arial', helvetica, sans-serif;
  }

  .ampl-about-feature-list li::before {
   content: "✓";
   position: absolute;
   left: 0;
   top: -2px;
   color: #021526;
   font-size: 24px;
   font-weight: 900;
  }

  .ampl-about-btn {
   display: inline-block;
   padding: 15px 32px;
   background: #021526;
   color: #ffffff;
   text-decoration: none;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 700;
   transition: 0.3s ease;
   box-shadow: 0 6px 16px rgba(2, 21, 38, 0.25);
   font-family: 'arial', helvetica, sans-serif;
  }

  .ampl-about-btn:hover {
   background: #021526;
   color: #ffffff;
  }

  /* Tablet */

  @media (max-width: 1024px) {

   .ampl-about-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
   }

   .ampl-about-image-box img {
    height: 380px;
   }

   .ampl-about-heading {
    font-size: 32px;
   }
  }

  /* Mobile */

  @media (max-width: 600px) {

   .ampl-about-section {
    padding: 50px 15px;
   }

   .ampl-about-image-box img {
    height: 260px;
   }

   .ampl-about-heading {
    font-size: 26px;
   }

   .ampl-about-description {
    font-size: 15px;
    line-height: 1.7;
   }

   .ampl-about-feature-list li {
    font-size: 15px;
    padding-left: 28px;
   }

   .ampl-about-feature-list li::before {
    font-size: 20px;
   }

   .ampl-about-btn {
    width: 100%;
    text-align: center;
   }
  }
  /* section four */
 


/* SECTION */

.ampl-capability-section{
    width:100%;
    padding:40px 20px;
    background:linear-gradient(rgba(0,17,40,.92),rgba(0,17,40,.92)),
    url("images/factory-bg.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.ampl-capability-container{
    max-width:1300px;
    margin:auto;
}

/* HEADING */

.ampl-capability-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.ampl-capability-heading::before,
.ampl-capability-heading::after{
    content:"";
    width:80px;
    height:2px;
    background:rgba(255,255,255,.35);
}

.ampl-capability-heading h2{
    color:#ffffff;
    font-size:30px;
    font-weight:700;
    /* text-transform:uppercase; */
    text-align:center;
}

.ampl-capability-heading h2 span{
    color:#f6b01a;
}

/* SWIPER */

.amplCapabilitySwiper{
    width:100%;
    overflow:hidden;
}

.amplCapabilitySwiper .swiper-slide{
    height:auto;
}

/* CARD */

.ampl-capability-card{
    background:rgba(0,25,55,.95);
    border:1px solid rgba(255,255,255,.20);
    overflow:hidden;
    transition:.4s;
    height:100%;
}

.ampl-capability-card:hover{
    transform:translateY(-6px);
    border-color:#f6b01a;
}

.ampl-capability-image{
    width:100%;
    height:220px;
    overflow:hidden;
}

.ampl-capability-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.ampl-capability-content{
    padding:16px 12px;
    text-align:center;
}

.ampl-capability-content h3{
    color:#ffffff;
    font-size:18px;
    font-weight:700;
    line-height:1.35;
    margin-bottom:10px;
    /* text-transform:uppercase; */
}

.ampl-capability-content p{
    color:#e5e5e5;
    font-size:14px;
    line-height:1.5;
}

/* TABLET */

@media(max-width:991px){

    .ampl-capability-heading h2{
        font-size:26px;
    }

}

/* MOBILE */

@media(max-width:767px){

    .ampl-capability-section{
        padding:30px 15px;
    }

    .ampl-capability-heading{
        gap:10px;
    }

    .ampl-capability-heading::before,
    .ampl-capability-heading::after{
        width:35px;
    }

    .ampl-capability-heading h2{
        font-size:22px;
    }

    .ampl-capability-image{
        height:240px;
    }

}
/* section five */
:root {
    --header-bg: #021526;
    --header-bg-soft: #061d31;
    --gold: #f5b548;
    --gold-deep: #dd9b2c;
    --text: #ffffff;
    --muted: #b9c0c8;
}

.ampl-process-section{
    padding:70px 20px;
    background:#fff;
}

.ampl-process-container{
    max-width:1300px;
    margin:auto;
}

.ampl-process-heading{
    text-align:center;
    margin-bottom:50px;
}

.ampl-process-heading h2{
    font-size:30px;
    font-weight:700;
    color:var(--header-bg);
    line-height:1.3;
}

.ampl-process-heading span{
    color:var(--gold);
}

.ampl-process-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    position:relative;
}

.ampl-process-item{
    text-align:center;
    position:relative;
}

.ampl-process-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:32px;
    left:70%;
    width:100%;
    border-top:2px dashed #b7bec8;
}

.ampl-process-item:not(:last-child)::before{
    content:"➜";
    position:absolute;
    top:20px;
    right:-12px;
    color:var(--header-bg);
    font-size:18px;
    z-index:2;
}

.ampl-process-icon{
    width:64px;
    height:64px;
    margin:0 auto 18px;
    border-radius:50%;
    background:var(--header-bg);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    position:relative;
    z-index:5;
}

.ampl-process-icon svg{
    width:30px;
    height:30px;
}

.ampl-step-number{
    display:block;
    color:var(--gold);
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.ampl-process-item h3{
    font-size:18px;
    font-weight:700;
    line-height:1.5;
    color:var(--header-bg);
    margin-bottom:6px;
}

.ampl-process-item p{
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* Tablet */

@media(max-width:991px){

    .ampl-process-grid{
        grid-template-columns:repeat(3,1fr);
        row-gap:50px;
    }

    .ampl-process-item::before,
    .ampl-process-item::after{
        display:none;
    }

}

/* Mobile */

@media(max-width:767px){

    .ampl-process-heading h2{
        font-size:26px;
    }

    .ampl-process-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .ampl-process-item::before,
    .ampl-process-item::after{
        display:none;
    }

    .ampl-step-number{
        font-size:26px;
    }

    .ampl-process-item h3{
        font-size:16px;
    }

}

/* section six */
:root{
 --header-bg:#021526;
 --header-bg-soft:#061d31;
 --gold:#f5b548;
 --gold-deep:#dd9b2c;
 --text:#ffffff;
 --muted:#b9c0c8;
}

.ampl-industry-section{
    background:linear-gradient(
        180deg,
        var(--header-bg),
        var(--header-bg-soft)
    );
    padding:50px 20px;
}

.ampl-industry-container{
    max-width:1340px;
    margin:auto;
}

.ampl-industry-heading{
    text-align:center;
    margin-bottom:30px;
}

.ampl-industry-heading h2{
    font-size:30px;
    font-weight:700;
    color:var(--text);
}

.ampl-industry-heading span{
    color:var(--gold);
}

/* TOP GRID */

.ampl-industry-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
    margin-bottom:25px;
}

.ampl-industry-card{
    background:#062038;
    border:1px solid rgba(255,255,255,.20);
    overflow:hidden;
    transition:.3s ease;
}
.ampl-industry-card:hover{
    border-color:var(--gold);
    transform:translateY(-4px);
    transition:.3s;
}
.ampl-industry-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.ampl-industry-card h3{
    color:var(--text);
    text-align:center;
    padding:18px 10px;
    font-size:18px;
    font-weight:700;
    line-height:1.4;
}

/* Tablet */

@media(max-width:1199px){

    .ampl-industry-grid{
        grid-template-columns:repeat(3,1fr);
    }

    
}

/* Mobile */

@media(max-width:767px){

    .ampl-industry-heading h2{
        font-size:30px;
    }

    .ampl-industry-grid{
        grid-template-columns:1fr;
    }

    .ampl-stats-grid{
        grid-template-columns:1fr;
    }

    .ampl-stat-box{
        min-height:160px;
    }

    .ampl-stat-box span{
        font-size:42px;
    }

    

}
/* section seven */
:root{
 --header-bg:#021526;
 --header-bg-soft:#061d31;
 --gold:#f5b548;
 --gold-deep:#dd9b2c;
 --text:#ffffff;
 --muted:#b9c0c8;
}

.ampl-readiness-section{
    padding:60px 20px;
    background:#ffffff;
}

.ampl-readiness-container{
    max-width:1340px;
    margin:auto;
    display:grid;
    grid-template-columns:340px 1fr;
    gap:15px;
    align-items:stretch;
}

/* LEFT BOX */

.ampl-readiness-content{
    border:1px solid #e5e5e5;
    border-radius:6px;
    padding:30px;
    background:#fff;
}

.ampl-readiness-content h2{
    font-size:20px;
    font-weight:700;
    color:var(--header-bg);
    margin-bottom:10px;
    line-height:1.3;
}

.ampl-readiness-content h2 span{
    color:var(--gold);
}

.ampl-readiness-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.ampl-readiness-content li{
    position:relative;
    padding-left:34px;
    margin-bottom:18px;
    font-size:12px;
    line-height:1.6;
    color:#333;
    font-weight:500;
}

.ampl-readiness-content li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:15px;
    height:15px;
    border:1px solid var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:9px;
    font-weight:600;
}

/* RIGHT IMAGES */

.ampl-readiness-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2px;
    border-radius:6px;
    overflow:hidden;
}

.ampl-gallery-item{
    overflow:hidden;
}

.ampl-gallery-item img{
    width:100%;
    height:100%;
    min-height:280px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.ampl-gallery-item:hover img{
    transform:scale(1.05);
}

/* TABLET */

@media(max-width:1024px){

    .ampl-readiness-container{
        grid-template-columns:1fr;
    }

    .ampl-readiness-gallery{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:767px){

    .ampl-readiness-section{
        padding:40px 15px;
    }

    .ampl-readiness-content{
        padding:25px;
    }

    .ampl-readiness-content h2{
        font-size:30px;
    }

    .ampl-readiness-gallery{
        grid-template-columns:1fr;
    }

    .ampl-gallery-item img{
        min-height:240px;
    }

}

/* section eight */
:root{
 --header-bg:#021526;
 --header-bg-soft:#061d31;
 --gold:#f5b548;
 --gold-deep:#dd9b2c;
 --text:#ffffff;
 --muted:#b9c0c8;
}

.ampl-client-slider-section{
    padding:60px 20px;
    background:#fff;
}

.ampl-client-slider-container{
    max-width:1340px;
    margin:auto;
}

.ampl-client-slider-container h2{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:var(--header-bg);
    margin-bottom:35px;
}

.ampl-client-slider-container h2 span{
    color:var(--gold);
}

.ampl-client-slider{
    overflow:hidden;
    position:relative;
}

.ampl-client-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:amplClientScroll 25s linear infinite;
}

.ampl-client-slider:hover .ampl-client-track{
    animation-play-state:paused;
}

.ampl-client-card{
    width:300px;
    min-width:300px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    background:#fff;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.ampl-client-card img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.ampl-client-card span{
    font-size:18px;
    font-weight:700;
    color:var(--header-bg);
    line-height:1.4;
}

@keyframes amplClientScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-50%));
    }

}

/* Tablet */

@media(max-width:991px){

    .ampl-client-card{
        width:260px;
        min-width:260px;
    }

}

/* Mobile */

@media(max-width:767px){

    .ampl-client-slider-container h2{
        font-size:30px;
    }

    .ampl-client-card{
        width:230px;
        min-width:230px;
        padding:15px;
    }

    .ampl-client-card span{
        font-size:15px;
    }

}
:root{
 --header-bg:#021526;
 --header-bg-soft:#061d31;
 --gold:#f5b548;
 --gold-deep:#dd9b2c;
 --text:#ffffff;
 --muted:#b9c0c8;
}

.ampl-cta-section{
    position:relative;
    overflow:hidden;
    /* border-radius:10px; */
    /* margin:30px auto; */
    /* max-width:1340px; */

    background:url("images/cta-bg.jpg")
    center center/cover no-repeat;

    min-height:220px;
}

.ampl-cta-overlay{
    position:absolute;
    inset:0;

    background:
   linear-gradient(180deg, var(--header-bg), var(--header-bg-soft));
}

.ampl-cta-container{
    position:relative;
    z-index:2;

    display:flex;
    justify-content:space-between;
    align-items:center;

    
    min-height:220px;
    max-width: 1340px;
    margin: auto;
}

.ampl-cta-content{
    max-width:650px;
}

.ampl-cta-content h2{
    color:var(--text);
    font-size:30px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:20px;
    /* text-transform:uppercase; */
}

.ampl-cta-content p{
    color:var(--muted);
    font-size:16px;
    line-height:1.7;
    font-weight:500;
}

.ampl-cta-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
    min-width:320px;
}

.ampl-quote-btn,
.ampl-call-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;

    text-decoration:none;

    height:68px;
    padding:0 25px;

    font-size:20px;
    font-weight:700;

    border-radius:4px;

    transition:.35s;
}

.ampl-quote-btn{
    background:var(--gold);
    color:black;
}

.ampl-quote-btn:hover{
    background:var(--gold-deep);
}

.ampl-call-btn{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

.ampl-call-btn:hover{
    border-color:var(--gold);
}

.ampl-quote-btn span,
.ampl-call-btn span{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-left:1px solid rgba(255,255,255,.20);

    font-size:24px;
}

/* Tablet */

@media(max-width:991px){

    .ampl-cta-container{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .ampl-cta-buttons{
        width:100%;
        max-width:500px;
        align-items: center;
    }

    .ampl-cta-content h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .ampl-cta-section{
        margin:40px 15px;
    }

    .ampl-cta-container{
        padding:30px 20px;
    }

    .ampl-cta-content h2{
        font-size:30px;
    }

    .ampl-cta-content p{
        font-size:16px;
    }

    .ampl-quote-btn,
    .ampl-call-btn{
        height:60px;
        font-size:18px;
        width:80%;
    }

}
/* section ten */
:root{
 --header-bg:#021526;
 --header-bg-soft:#061d31;
 --gold:#f5b548;
 --gold-deep:#dd9b2c;
 --text:#ffffff;
 --muted:#b9c0c8;
}

.ampl-cert-leader-section{
    padding:70px 20px;
    background:#ffffff;
}

.ampl-cert-leader-container{
    max-width:1340px;
    margin:auto;
    display:grid;
    grid-template-columns:380px 1fr;
    gap:25px;
}

.ampl-cert-box,
.ampl-leader-box{
    border:1px solid #e5e5e5;
    border-radius:8px;
    background:#fff;
    padding:25px;
}

.ampl-cert-box h2,
.ampl-leader-box h2{
    text-align:center;
    color:var(--header-bg);
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

/* Certification */

.ampl-cert-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.ampl-cert-card{
    border:1px solid #ececec;
    padding:25px 15px;
    text-align:center;
}

.ampl-cert-card img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:15px;
}

.ampl-cert-card h3{
    font-size:16px;
    font-weight:700;
    color:var(--header-bg);
    margin-bottom:8px;
}

.ampl-cert-card p{
    font-size:14px;
    line-height:1.6;
    color:#444;
}

/* Leadership */

.ampl-leader-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.ampl-leader-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.ampl-leader-image{
    width:230px;
    flex-shrink:0;
}

.ampl-leader-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    border:1px solid #ececec;
}

.ampl-leader-content h3{
    font-size:17px;
    font-weight:700;
    color:var(--header-bg);
    margin-bottom:8px;
}

.ampl-leader-content span{
    display:block;
    color:#555;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.ampl-leader-content ul{
    padding:0;
    margin:0;
    list-style:none;
}

.ampl-leader-content li{
    position:relative;
    padding-left:22px;
    margin-bottom:15px;
    color:#333;
    font-size:14px;
    line-height:1.7;
}

.ampl-leader-content li::before{
    content:"●";
    position:absolute;
    left:0;
    top:0;
    color:var(--gold);
    font-size:12px;
}

/* Tablet */

@media(max-width:1200px){

    .ampl-cert-leader-container{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media(max-width:768px){

    .ampl-cert-grid{
        grid-template-columns:1fr;
    }

    .ampl-leader-grid{
        grid-template-columns:1fr;
    }

    .ampl-leader-card{
        flex-direction:column;
    }

    .ampl-leader-image{
        width:100%;
    }

    .ampl-leader-image img{
        height:350px;
    }

    .ampl-cert-box h2,
    .ampl-leader-box h2{
        font-size:30px;
    }

    .ampl-leader-content h3{
        font-size:20px;
    }

}
/* section ten  */

.contact-strip-unique {
  width: 100%;
  padding: 26px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.contact-strip-container-unique {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border: 1px solid #021526;
}

.contact-item-unique {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 30px;
  border-right: 1px solid #021526;
}

.contact-item-unique:last-child {
  border-right: none;
}

.contact-icon-unique {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #021526;
  color: #021526;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-unique svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.contact-text-unique {
  text-align: left;
}

.contact-text-unique h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-text-unique a {
  color: #222222;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-text-unique a:hover {
  color: #021526;
}

@media (max-width: 1100px) {
  .contact-strip-container-unique {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-item-unique:nth-child(2) {
    border-right: none;
  }

  .contact-item-unique:nth-child(1),
  .contact-item-unique:nth-child(2) {
    border-bottom: 1px solid rgba(248, 0, 0, 0.18);
  }
}

@media (max-width: 600px) {
  .contact-strip-unique {
    padding: 22px 14px;
  }

  .contact-strip-container-unique {
    grid-template-columns: 1fr;
  }

  .contact-item-unique {
    padding: 22px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(248, 0, 0, 0.18);
  }

  .contact-item-unique:last-child {
    border-bottom: none;
  }

  .contact-icon-unique {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .contact-icon-unique svg {
    width: 27px;
    height: 27px;
  }

  .contact-text-unique h3 {
    font-size: 16px;
  }

  .contact-text-unique a {
    font-size: 15px;
  }
}
/* contact page section  */

/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

.contact-container{
    width:100%;
    max-width:1340px;
    margin:auto;
    padding:0 15px;
}

/* =========================
   HERO
========================= */

.contact-hero{
    background:
    linear-gradient(
        rgba(2,21,38,.1),
        rgba(2,21,38,.1)
    ),
    url("/assets/img/contact-bg.png");

    background-size:cover;
    background-position:center;
    padding:120px 0;
}

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:30px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
}

.hero-content p{
    font-size:16px;
    line-height:1.8;
    color:#d9d9d9;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:80px 0;
    background:#f8f9fb;
}

.contact-grid{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
}

/* =========================
   LEFT
========================= */

.contact-info h2{
    font-size:30px;
    font-weight:700;
    color:#021526;
    margin-bottom:15px;
}

.contact-info > p{
    color:#555;
    line-height:1.7;
    margin-bottom:30px;
}

.info-card{
    display:flex;
    gap:15px;
    align-items:flex-start;
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.icon-box{
    width:55px;
    height:55px;
    background:#021526;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.info-card h3{
    color:#021526;
    font-size:18px;
    margin-bottom:8px;
}

.info-card a{
    text-decoration:none;
    color:#021526;
    font-weight:600;
}

.info-card p{
    color:#555;
    line-height:1.6;
}

/* =========================
   FORM
========================= */

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}
.contact-form-h-p-both{
    display:flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom:30px;
}
.contact-form-h-p-both p{
    color:#555;
    line-height:1.7;
    font-size:14px;
}
.contact-form-box h2{
    font-size:30px;
    font-weight:700;
    color:#021526;
    
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    flex:1;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#021526;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #d8d8d8;
    border-radius:8px;
    padding:14px 15px;
    outline:none;
    font-size:15px;
    font-family:Arial, Helvetica, sans-serif;
}

.form-group textarea{
    resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#021526;
}

.full-width{
    margin-bottom:20px;
}

.submit-btn{
    border:none;
    background:#021526;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    width: 100%;
}

.submit-btn:hover{
    background:#03305b;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .form-row{
        flex-direction:column;
    }

    .contact-form-box{
        padding:25px;
    }

    .contact-info h2,
    .contact-form-box h2{
        font-size:26px;
    }

}

@media(max-width:576px){

    .contact-hero{
        padding:80px 0;
    }

    .hero-content h1{
        font-size:30px;
    }

    .contact-section{
        padding:60px 0;
    }

    .info-card{
        padding:20px;
    }

}

.secure-text {
  margin-top: 14px;
  color: #697088;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.secure-text svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vertical-align: -3px;
}
.office-section{
    padding:50px 15px;
    background:#f7f8fa;
    font-family:Arial, Helvetica, sans-serif;
}

.office-wrapper{
    max-width:1310px;
    margin:auto;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.office-map{
    width:50%;
    position:relative;
}

.office-map iframe{
    width:100%;
    height:390px;
    border:none;
}

.map-card{
    position:absolute;
    top:35px;
    left:25px;
    width:240px;
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.map-card h3{
    font-size:18px;
    font-weight:700;
    color:#021526;
    margin-bottom:10px;
}

.map-card p{
    color:#444;
    font-size:13px;
    line-height:1.6;
    margin-bottom:10px;
}

.map-card a{
    color:#021526;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

.office-content{
    width:50%;
    padding:40px;
}

.office-content h2{
    font-size:30px;
    font-weight:700;
    color:#021526;
    margin-bottom:12px;
}

.office-desc{
    color:#555;
    line-height:1.6;
    font-size:14px;
    margin-bottom:25px;
}

.office-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:20px;
}

.office-icon{
    width:42px;
    height:42px;
    border:2px solid #021526;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.office-item h3{
    font-size:18px;
    font-weight:700;
    color:#021526;
    margin-bottom:4px;
}

.office-item p{
    color:#444;
    font-size:14px;
    line-height:1.6;
}

/* TABLET */

@media(max-width:991px){

    .office-wrapper{
        flex-direction:column;
    }

    .office-map,
    .office-content{
        width:100%;
    }

    .office-content{
        padding:30px;
    }

    .office-map iframe{
        height:350px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .office-section{
        padding:35px 15px;
    }

    .office-content{
        padding:25px 20px;
    }

    .office-content h2{
        font-size:26px;
    }

    .map-card{
        position:relative;
        top:auto;
        left:auto;
        width:calc(100% - 80px);
        margin:-60px auto 15px;
        z-index:2;
    }

    .office-map iframe{
        height:280px;
    }

    .office-item{
        gap:12px;
        margin-bottom:16px;
    }

    .office-icon{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .office-item h3{
        font-size:16px;
    }

    .office-item p{
        font-size:13px;
    }
}
.faq-section{
    padding:70px 15px;
    background:#f7f8fa;
    font-family:Arial, Helvetica, sans-serif;
}

.faq-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
}


.faq-heading h2{
    font-size:30px;
    font-weight:700;
    color:#021526;
}

.faq-heading em{
    color:#e84c96;
    font-style:normal;
}

.faq-grid{
    max-width:1340px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.faq-column{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:12px;
    overflow:hidden;
}

.faq-btn{
    width:100%;
    border:none;
    background:#fff;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px 25px;

    color:#021526;
    font-size:16px;
    font-weight:700;
    text-align:left;
}

.faq-btn svg{
    width:18px;
    height:18px;
    transition:.3s;
    flex-shrink:0;
}

.faq-btn path{
    fill:none;
    stroke:#021526;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-content p{
    padding:0 25px 20px;
    line-height:1.8;
    color:#555;
    font-size:14px;
}

.faq-item.active .faq-content{
    max-height:250px;
}

.faq-item.active .faq-btn{
    color:#5b21b6;
}

.faq-item.active svg{
    transform:rotate(180deg);
}

@media(max-width:991px){

    .faq-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .faq-heading h2{
        font-size:24px;
        text-align:center;
    }

    .faq-btn{
        padding:18px;
        font-size:15px;
    }

}
.gold{
    color:var(--gold);
}
/* about page section  */
.about-modern{
    position:relative;
    width:100%;
    min-height:600px;
    background:url("/assets/img/about-bg.jpg") center center/cover;
    overflow:hidden;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(2,21,38,3.5) 0%,
        rgba(2,21,38,.5) 45%,
        rgba(2,21,38,) 100%
    );
}

.about-container{
    max-width:1400px;
    margin:auto;
    min-height:566px;
    display:flex;
    align-items:center;
    position:relative;
    z-index:2;
    padding:0 30px;
}

.about-left{
    width:55%;
    color:#fff;
}

.about-tag{
    color:var(--gold);
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:25px;
    position:relative;
}

.about-tag::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:120px;
    height:3px;
    background:var(--gold);
}

.about-left h2{
    font-size:30px;
    line-height:1.05;
    font-weight:700;
    margin-bottom:30px;
}

.about-left h2 span{
    color:var(--gold);
}

.about-left p{
    max-width:700px;
    font-size:16px;
    line-height:1.9;
    color:#e4e8ef;
    margin-bottom:40px;
}

.about-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:var(--gold);
    color:#000000;
    padding:18px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:18px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.about-right{
    width:45%;
    text-align:right;
}

.about-right img{
    max-width:100%;
    height:auto;
}
@media(max-width:991px){

    .about-container{
        flex-direction:column;
        padding:60px 20px;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .about-left h2{
        font-size:42px;
    }

    .about-left p{
        font-size:16px;
    }

    .about-right{
        margin-top:40px;
        text-align:center;
    }

}

@media(max-width:576px){

    .about-left h2{
        font-size:32px;
    }

    .about-tag{
        font-size:16px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

}

.our-story-section{
    padding:80px 15px;
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.story-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.story-image{
    width:48%;
}

.story-image img{
    width:100%;
    height:65vh;
    display:block;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.story-content{
    width:52%;
}

.story-tag{
    display:flex;
    align-items:center;
    gap:15px;

    color:#f58220;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}

.story-tag::after{
    content:"";
    width:60px;
    height:2px;
    background:#f58220;
}

.story-content h2{
    font-size:30px;
    line-height:1.1;
    font-weight:700;
    color:#021526;
    margin-bottom:25px;
}

.story-content h2 span{
    display:block;
    color:#021526;
}

.story-content p{
    color:#021526;
    font-size:16px;
    /* line-height:1.9; */
    margin-bottom:18px;
}

/* TIMELINE */

.story-timeline{
    margin-top:40px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.timeline-item{
    text-align:center;
    position:relative;
}

.timeline-icon{
    width:50px;
    height:50px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    border:2px solid #f58220;
    border-radius:50%;

    font-size:20px;
    margin-bottom:12px;
}

.timeline-item h4{
    color:#021526;
    font: size 18px;
    font-weight:700;
    margin-bottom:5px;
}

.timeline-item span{
    color:#666;
    font-size:12px;
    display:block;
    line-height:1.4;
}

/* DESKTOP LINE */

.timeline-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:32px;
    left:75%;
    width:100%;
    height:2px;
    background:#f58220;
    opacity:.3;
}

/* TABLET */

@media(max-width:991px){

    .story-container{
        flex-direction:column;
        gap:40px;
    }

    .story-image,
    .story-content{
        width:100%;
    }

    .story-content h2{
        font-size:42px;
    }

    .story-timeline{
        grid-template-columns:repeat(3,1fr);
    }

    .timeline-item::after{
        display:none;
    }

}

/* MOBILE */

@media(max-width:768px){

    .our-story-section{
        padding:60px 15px;
    }

    .story-content h2{
        font-size:32px;
    }

    .story-content p{
        font-size:15px;
        line-height:1.8;
    }

    .story-timeline{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .timeline-icon{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .timeline-item h4{
        font-size:18px;
    }

    .timeline-item span{
        font-size:13px;
    }

}

@media(max-width:480px){

    .story-timeline{
        grid-template-columns:1fr;
    }

}