* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Goldman", sans-serif;
}
@font-face {
  font-family: 'Epillox Bold';
  src: url('fonts/Epillox-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
  overflow-x: hidden !important;
  width: 100vw;
  background-image: url(photo/background-image.jpg);
}

/* Scroll-in animation (handled by IntersectionObserver) */
.title-animate {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 2s ease, opacity 1.8s ease;
}

.title-animate.title-active {
  opacity: 1;
  transform: translateY(0);
}



.scroll-animate {
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
}

/* Use a large animation distance */
.scroll-animateL {
  transform: translateX(100px);
}

/* Optional: animation from right to left */
.scroll-animateR {
  transform: translateX(-100px);
}

.scroll-animate.active {
  opacity: 1;
  transform: translateX(0);
}

/* Prevent animation from affecting layout */
.scroll-animateL,
.scroll-animateR {
  display: inline-block;         /* Ensure it doesn’t stretch layout */
  overflow-x: hidden;            /* Hide animated overflow */
  max-width: 100%;               /* Prevent wider than parent */
  backface-visibility: hidden;  /* Rendering optimization */
}




/*scroll animate top to bottom*/
.scroll-animateY {
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 1.5s ease, opacity 1.5s ease;
}

.scroll-animateY-right {
  transform: translateY(100%);
}

.scroll-animateY.active {
  opacity: 1;
  transform: translateY(0);
}











.hero-section {
  display: flex;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.hero-left {
  flex: 1;
  color: rgb(0, 0, 0);
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}


.hero-left > * {
  position: relative;
  z-index: 2; /* bring text above watermark */
}
.armex-shield{
  font-family: 'Epillox Bold', sans-serif;
}

.hero-title {
  font-family: 'Epillox Bold', sans-serif;
  font-size: 6rem;
  font-weight: 100;
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
  z-index: 3;
  width: 80%;
  color: rgb(0, 0, 0);
}



.hero-left-image-x{
  max-width: 20%;
  padding-left: 5vh;
}


.hero-slogan{
  font-size: 2.5rem;
  margin-bottom: 5vh;
}
.hero-left p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #000000;
  width: 80%;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.7s ease;
}

.btn.quote {
  background-color: transparent;
  border: solid 0.5px rgb(0, 0, 0);
  color: #000000;
}

.btn.learn {
  background-color: transparent;
  border: solid 0.5px rgb(0, 0, 0);
  color: #000000;
  text-align: center;
}
.btn:hover{
  transform: scale(1.03);
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}

.hero-right {
  flex: 1;
  background-image: url('photo/riot-home.jpeg'); /* replace with your path */
  background-size: cover;
  background-position: left;
  position: relative;
  height: 90vh;
}
.hero-right::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.428);
  pointer-events: none;
  z-index: 0;
}



/* Scroll Arrow - always centered */
.section-border {
  height: 0.1px;
}

.scroll-arrow {
  font-size: 1.3rem;
  color: rgb(0, 0, 0);
  cursor: pointer;
  position: absolute;
  right: 0px;
  bottom: 150px;
  transform: translateX(-50%);
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 50%;
  border: solid 1px rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1.5s infinite;
  z-index: 90;
  transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-arrow:hover {
  background: #ffffff;
  transform: translateX(-50%) scale(1.2);
  color: rgb(0, 0, 0);
}

/* Bounce Animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (min-width: 900px) and (max-height: 800px) {
  .hero-title {
  font-size: 4rem !important;
  padding-top: 8vh;
  font-weight: 100;
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
  z-index: 3;
  width: 80%;
}
.hero-left-image-x{
  max-width: 10%;
  padding-left: 3vh;
}
.hero-slogan{
  font-size: 1.2rem !important;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5vh;
}
.hero-left p {
  font-size: 1rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
  width: 90%;
}
.hero-buttons{
  margin: 0 auto;
}
}

@media (max-width: 1550px) {
.hero-left{
  padding: 75px;
}
.hero-title{
  width: 100%;
}
}

@media (max-width: 1450px) {
.hero-left{
  padding: 75px;
}
.hero-title{
  width: 100%;
}
}

@media (max-width: 1300px) {
.scroll-arrow{
  bottom: 250px;
}

.hero-title {
  font-size: 4.5rem;
  padding-top: 5vh;
  font-weight: 100;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: left;
  margin: 0px;
  line-height: 1;
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0; /* fill the section */
  background: url(photo/shield-defense-black-x.png) no-repeat center;
  background-size: 90%; /* adjust size */
  background-position: center right;
  opacity: 0.05; /* watermark transparency */
  z-index: 1; /* behind text */
}
.hero-buttons a{
  font-size: 1.3rem;
}
.hero-slogan{
  font-size: 1.5rem;
  margin-bottom: 5vh;
}
.hero-left p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ccc;
  width: 90%;
}
}
@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    overflow-x: hidden;
    padding-top: 5vh;
  }

  .hero-left {
    padding: 10vh 30px;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 7rem;
    width: 90%;
  }
  .hero-slogan{
    font-size: 2rem;
  }
  .hero-left::before {
    content: "";
    position: absolute;
    inset: 0; /* fill the section */
    background: url(photo/shield-defense-black-x.png) no-repeat center;
    background-size: 50%; /* adjust size */
    background-position: bottom ;
  }
  .line-target::after {
    left: 50%;
    transform: translateX(-50%);
    width: 30vh;
  }

  .hero-left p {
    margin: 0 auto 30px auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-buttons a{
    font-size: 1.5rem;
    padding: 1vh 5vh;
  }
  .hero-right {
    min-height: 400px;
  }

  .scroll-arrow {
    left: 50%;
  bottom: 50px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  color: #000;
}
}

@media (max-width: 1099px) {
  .hero-section {
    flex-direction: column;
    overflow-x: hidden;
    padding-top: 10vh;
  }

  .hero-left {
    padding: 3vh 30px;
    padding-top: 7vh;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 5rem;
    width: 90%;
    text-align: center;
  }
  .hero-left::before {
    content: "";
    position: absolute;
    inset: 0; /* fill the section */
    background: url(photo/shield-defense-black-x.png) no-repeat center;
    background-size: 45%; /* adjust size */
    background-position: bottom ;
  }
  .line-target::after {
    left: 50%;
    transform: translateX(-50%);
    width: 30vh;
  }

  .hero-left p {
    margin: 0 auto 30px auto;
  }

  .hero-buttons a{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
  }

  .hero-right {
    min-height: 300px;
  }

.scroll-arrow {
  bottom: 50px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  color: #000;
}
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    overflow-x: hidden;
    padding-top: 10vh;
  }

  .hero-left {
    padding: 2vh 30px;
    padding-top: 5vh;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 4rem;
    width: 90%;
  }
  .hero-left-image-x{
    max-width: 12% !important;
    padding-left: 3vh;
  }
  .hero-left::before {
    content: "";
    position: absolute;
    inset: 0; /* fill the section */
    background: url(photo/shield-defense-black-x.png) no-repeat center;
    background-size: 50%; /* adjust size */
    background-position: bottom ;
  }
  .line-target::after {
    left: 50%;
    transform: translateX(-50%);
    width: 30vh;
  }

  .hero-left p {
    margin: 0 auto 30px auto;
  }

  .hero-buttons a{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
  }

  .hero-right {
    min-height: 300px;
  }

.scroll-arrow {
  bottom: 50px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  color: #000;
}
}

@media (max-width: 770px) {
  .hero-section{
    padding-top: 10vh;
  }
  .hero-left::before {
  background-size: 60%; /* adjust size */
  background-position: bottom;

}
  .hero-left {
    padding: 5vh 10vh;
    padding-top: 10vh;
  }
  .hero-title {
    font-size: 4rem ;
  }
  .hero-left-image-x{
    max-width: 15% ;
    padding-left: 3vh;
  }
  .line-target::after {
    width: 25vh;
    height: 1px;
  }

  .hero-buttons a{
    font-size: 1rem;
    padding: 10px 2vh;
  }

  .hero-left p {
    font-size: 0.95rem;
    max-width: 90%;
  }

  .hero-right {
    background-position: top;
    height: 10%;
  }
  .scroll-arrow {
  bottom: 70px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  color: #000;
}
}

@media (max-width: 550px) {
  .hero-left::before {
  content: "";
  position: absolute;
  inset: 0; /* fill the section */
  background: url(photo/shield-defense-black-x.png) no-repeat center;
  background-size: 60%; /* adjust size */
  background-position: center;
  opacity: 0.05; /* watermark transparency */
  z-index: 1; /* behind text */
}
  .hero-title {
    font-size: 3rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
    .hero-left-image-x{
    max-width: 17%;
    padding-left: 3vh;
  }
    .line-target::after {
  content: "";
   position: absolute;
   width: 0px;
   height: 0px;
   background-color: rgba(255, 255, 255, 0);
   left: 0%;
   bottom: 0px;
  }
  .hero-left{
    padding: 1vh;
    padding-top: 5vh;
  }
  .scroll-arrow {
    bottom: 100px;
  }
    .btn {
    font-size: 1rem !important;
    padding: 10px 2vh !important;
  }
}

@media (max-width: 450px) {

  .hero-left-image-x{
    max-width: 20% !important;
    padding-left: 3vh;
  }
  .hero-title {
    font-size: 3rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .hero-slogan{
    font-size: 1.5rem;
    width: 80%;
  }
    .line-target::after {
  content: "";
   position: absolute;
   width: 0px;
   height: 0px;
   background-color: rgba(255, 255, 255, 0);
   left: 0%;
   bottom: 0px;
  }
  .hero-left{
    padding: 1vh;
    padding-top: 1vh;
  }
  .scroll-arrow {
    bottom: 100px;
  }
    .btn {
    font-size: 1rem !important;
    padding: 10px 2vh !important;
  }
}

@media (min-width: 500px) and (max-height: 700px){
  .hero-title {
    font-size: 3rem;
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-left::before {
    content: "";
    position: absolute;
    inset: 0; /* fill the section */
    background: url(photo/shield-defense-black-x.png) no-repeat center;
    background-size: 70%; /* adjust size */
    background-position:center ;
  }
  .hero-left-image-x{
    max-width: 20%;
    padding-left: 3vh;
  }
.scroll-arrow {
  bottom: 150px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  color: #000;
}
  .hero-left{
    padding: 1vh;
    padding-top: 5vh;
  }
  .hero-left p{
    font-size: 0.7rem;
  }
  .hero-right{
    min-height: 200px !important;
  }
}
















/* ===== SERVICES UNIQUE SECTION ===== */
.services-unique {
  position: relative;
  background: #fff;
  padding: 20vh 5vh 20vh;
  text-align: center;
   box-shadow: 40px 10px 80px rgba(0, 0, 0, 0.2);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* space between title and lines */
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 3rem;
  white-space: nowrap; /* prevents title breaking into 2 lines */
}

.section-title .services-line {
  flex: 1; /* makes lines take equal remaining space */
  height: 2px;
  background: #1e3b27; /* line color */
}


/* Wrapper with vertical spacing between panels */
.services-unique-wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
}




/* Left panel background image */
.service-panel.panel-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* full panel width */
  height: 100%;
  background: url('photo/service-bg-line.png') no-repeat left center;
  background-size: 70%;
  opacity: 0.4;
  z-index: 0; /* behind content */
  pointer-events: none;
  /* fade out to the right so text is visible */
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
}

/* Keep content above the pseudo-element */
.service-panel.panel-left > * {
  position: relative;
  z-index: 1;
}




/* Left panel background image */
.service-panel.panel-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* full panel width */
  height: 100%;
  background: url('photo/service-bg-line.png') no-repeat left center;
  background-size: 70%;
  opacity: 0.4;
  z-index: 0; /* behind content */
  pointer-events: none;
  /* fade out to the right so text is visible */
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
}

/* Keep content above the pseudo-element */
.service-panel.panel-right > * {
  position: relative;
  z-index: 1;
}





/* Service Panels */
.service-panel {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  border-radius: 25px;
  padding: 5vh;
  position: relative;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}



/* Hover tilt effect */
.service-panel:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

/* Icon placeholder (can add images/icons later) */
.service-icon {
  width: 120px;
  height: 120px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  margin: auto;
}

/* Service text */
.service-text {
  padding: 0 20px;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.service-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button animation retained */
.btn-animation-1 {
  position: relative;
  display: inline-block;
  padding: 12px 9vh;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(0, 0, 0);
  border: 2px solid #000000;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transition: all 1s;
  z-index: 1;
}

.btn-animation-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e3b27;
  border: 2px solid #1e3b27;
  transition: all 1s ease;
  z-index: -1;
}

.btn-animation-1:hover::before {
  left: 0;
}

.btn-animation-1:hover {
  color: #fff;
  transform: scale(1.05);
  border: 2px solid #1e3b27;
}
.service-icon svg {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
.service-icon img{
  padding: 1vh;
}
.service-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.15);
  animation: icon-breath 6s ease-in-out infinite;
}

@keyframes icon-breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive */
/* ===== RESPONSIVE DESIGN ===== */

/* Large desktops (1200px and up) */
@media (min-width: 1200px) {
  .services-unique h2 {
    font-size: 3.5rem;
  }
  .service-panel {
    padding: 60px;
  }
  .service-text h3 {
    font-size: 2.4rem;
  }
  .service-text p {
    font-size: 1.3rem;
  }
}

/* Tablets & small laptops (901px - 1199px) */
@media (max-width: 1199px) and (min-width: 901px) {
  .services-unique h2 {
    font-size: 2.8rem;
  }
  .service-panel {
    grid-template-columns: 1fr 1.2fr;
    padding: 40px;
  }
  .service-icon {
    width: 100px;
    height: 100px;
  }
  .service-text h3 {
    font-size: 1.9rem;
  }
  .service-text p {
    font-size: 1.1rem;
  }
  
.service-panel.panel-left::before, .service-panel.panel-right::before{
  background-size: 100%;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
}
}

/* Tablets & large phones (601px - 900px) */
@media (max-width: 900px) {
    .service-panel.panel-left::before {
    display: none;
  }
    .service-panel.panel-right::before {
    display: none;
  }
  .services-unique {
    padding: 15vh 15px 15vh;
  }

  .services-unique h2 {
    font-size: 2.2rem;
  }

  .services-unique-wrapper {
    gap: 80px;
  }

  .service-panel {
    grid-template-columns: 1fr;
    clip-path: none;
    padding: 35px 20px;
    text-align: center;
    margin: 2vh;
  }

  .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
  }

  .service-text h3 {
    font-size: 1.6rem;
  }

  .service-text p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .btn-animation-1 {
    padding: 10px 60px;
    font-size: 0.95rem;
  }
}

/* Small phones (up to 600px) */
@media (max-width: 600px) {
  .services-unique {
    padding: 10vh 10px 10vh;
  }

  .services-unique h2 {
    font-size: 1.8rem;
  }

  .services-unique-wrapper {
    gap: 60px;
  }

  .service-panel {
    padding: 15px;
  }
  .service-icon img{
    padding: 0px;
  }
  .service-icon {
    width: 75px;
    height: 75px;
    padding: 0px;
    display: block;
  }

  .service-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .service-text p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .btn-animation-1 {
    padding: 9px 40px;
    font-size: 0.85rem;
  }
}

/* Extra small phones (up to 400px) */
@media (max-width: 400px) {
  .services-unique h2 {
    font-size: 1.5rem;
  }

  .service-text h3 {
    font-size: 1.3rem;
  }

  .service-text p {
    font-size: 1rem;
  }

  .btn-animation-1 {
    padding: 8px 30px;
    font-size: 1rem;
  }
}



















#section-1{
  margin: 0 auto;
  padding: 0px;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.section-1-img{
  margin: 0 auto;
  max-width: 90%;
}
.section-1-image{
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) {
  #section-1{
  margin: 1vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
}

@media (max-width: 768px) {
  #section-1{
  margin: 0px auto;
  padding-top: 1rem;
  padding-bottom: 2rem;
  }
  .section-1 h1{
  margin: 0 auto;
  font-size: 2rem;
  text-align: center;
}
.section-1 h2{
  font-size: 1rem;
  margin-bottom: 1rem;
}
.section-1-img{
  max-width: 95%;
}
}








.dealerships-section {
  color: #000;
  padding: 5rem 5rem;
  text-align: center;
  overflow: hidden;
  font-family: var(--ff-chakra-petch);
}
.dealerships-section h2{
  font-size: 3rem;
  letter-spacing: 5px;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.logo-track img {
  height: 60px;
  margin-right: 45px;
  flex: 0 0 10%;
  width: 140px;
  height: 100px;
  object-fit: contain;
  transition: filter 0.5s ease;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width:900px) {
  .dealerships-section h2{
    font-size: 1rem;
    margin: 0 auto;
    width: 80%;
  }
  .logo-track img {
     flex: 0 0 1%;
  }
  .dealerships-section{
    padding: 0px;
    padding-bottom: 10rem;
    padding-top: 10rem;
  }
}

















.stats-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
}

.stats-left {
  position: absolute;
  left: 0px;
  background-color: #e3e3e3;
  height: 100%;
  width: 45%; /* or adjust to match your design */
  display: flex;
  justify-content: left;   /* horizontal centering */
  align-items: center;       /* vertical centering */
  z-index: 2;
  padding: 5rem;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.stat-item{
  text-align: left;
}
.stat-item h2 {
  font-size: 4rem;
  margin: 0 auto;
  border-bottom: solid 2px black;
}

.stat-item p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.stats-image {
  position: relative;
  z-index: 5;
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}

.stats-image img {
  width: 90%;
  height: auto;
  display: block;
}

.stats-text {
  position: absolute;
  right: 10%;
  width: 20%;
  overflow: hidden;
  z-index: 3 !important;
  z-index: 100;
}

.stats-text h1 {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.stats-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
  width: 100%;
}

.stats-buttons {
  display: flex;
  gap: 1rem;
  width: 90%;
  padding: 1rem;
}

.stat-btn-1, .stat-btn-2 {
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

.stat-btn-1 {
  background-color: #111;
  color: white;
}

.stat-btn-2{
  background-color: transparent;
  color: #111;
  border: 1px solid #aaa;
}
.stat-btn-1:hover, .stat-btn-2:hover{
  transform: scale(1.04);
}

  /* ===== MODAL BACKDROP ===== */
.modal-overlay {
  position: fixed;
  inset: 0;  /* shorthand for top:0; left:0; right:0; bottom:0 */
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center; 
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto; 
}


  /* ===== MODAL BOX ===== */
.modal {
  position: relative;
  background: #dcdcdc;
  border-radius: 18px;
  padding: 50px;
  max-width: 700px;
  text-align: left;
  color: #000;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;  /* modal is above overlay */
}

.modal.active {
  transform: scale(1);
  opacity: 1;
   background-color: rgba(224, 224, 224, 0.671);
}

  /* Watermark inside modal */
  .modal::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 590px; height: 590px;
    background: url("photo/armex-logo.png") no-repeat center/contain;
    background-size: 90%;
    opacity: 0.2;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .modal-content {
    position: relative;
    z-index: 1;

  }

  .modal-content h3 {
    margin-top: 0;
    font-size: 2rem;
  }

  .modal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Close button inside modal */
  .close-btn {
    position: absolute;
    top: 18px; right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #111;
    z-index: 2;
    transition: all 0.5s;
  }
  .close-btn:hover{
    transform: scale(1.5);
  }
/* ====== RESPONSIVE BREAKPOINTS ====== */

/* Extra Small Devices (portrait phones, <480px) */
@media (max-width: 480px) {


  .modal {
    padding: 30px 20px;
    max-width: 90%;
  }

  .modal-content h3 {
    font-size: 1.4rem;
  }

  .modal-content p {
    font-size: 0.95rem;
  }
}

/* Small Devices (landscape phones, 481px–767px) */
@media (max-width: 770px) {
  .modal {
    padding: 40px 30px;
    max-width: 85%;
  }
  .stats-buttons a{
    padding: 2vh 5vh;
  }
  .stats-hero{
    padding-bottom: 1rem;
  }
}

/*1024px width devices*/
@media (max-width: 1024px) {
  .modal {
    padding: 45px;
    max-width: 600px;
  }
}
/* Large Devices (desktops, 1025px–1440px) */
@media (max-width: 1440px) {
  .modal {
    max-width: 650px;
  }
}

/* Extra-Large Devices (big desktops >1440px) */
@media (min-width: 1441px) {
  .modal {
    max-width: 750px;
    padding: 60px;
  }
}


/* ===== HEIGHT-BASED QUERIES ===== */
/* Very Short Screens (<600px height, e.g. landscape phones) */
@media (max-height: 600px) {
  .modal {
    max-height: 80vh;
    overflow-y: auto;
    padding: 25px;
  }

  .modal-content h3 {
    font-size: 1.3rem;
  }

  .modal-content p {
    font-size: 0.9rem;
  }
}


/* ============================
   Small devices (max 480px)
   ============================ */
@media (max-width: 480px) {
  .stats-container {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .stats-left, 
  .stats-right {
    width: 100%;
    padding: 2rem 1rem;
    clip-path: none; /* remove diagonal cut for simplicity */
  }

  .stat-item {
    flex: 1 1 100%;
    margin: 1rem 0;
  }
  .stats-text h1{
    font-size: 2.3rem !important;
  }
  .stat-item h2 {
    font-size: 3rem !important;
  }
  .stats-text p {
    font-size: 1rem !important;
  }
    .stats-buttons a{
    padding: 1vh 2vh !important;
    font-size: 1rem !important;
  }
}

/* ============================
   Tablets (481px – 768px)
   ============================ */
@media (min-width: 481px) and (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    height: auto;
  }

  .stats-left,
  .stats-right {
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .stat-item {
    flex: 1 1 45%;
    margin: 1rem auto;
  }

  .stat-item h2 {
    font-size: 2rem;
  }
}
/* ============================
   Small laptops (769px – 1024px)
   ============================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-container {
    flex-direction: row;
    height: auto;
  }

  .stats-left {
    width: 50%;
    padding: 3rem 2rem;
  }

  .stats-right {
    width: 50%;
    padding: 3rem 2rem;
  }

  .stat-item h2 {
    font-size: 2.2rem;
  }
}
/* ============================
   Desktops (1025px+)
   ============================ */
@media (max-width: 1245px) {
  .stats-left {
    padding: 1.5rem 1rem;
  }

  .stat-item {
    flex: 1 1 100%;
  }
  .stats-text {
    position: absolute;
    right: 5%;
    width: 20%;
    overflow: hidden;
    z-index: 3;
    z-index: 100;
}
  .stats-text h1 {
    font-size: 1.5rem;
  }

  .stats-text p {
    font-size: 0.95rem;
  }

  .stat-btn-1,
  .stat-btn-2 {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .stats-buttons {
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .stats-image img {
    width: 70% !important;
    margin: 0 auto;
  }
}



@media (max-width: 900px) {
  .stats-hero {
    flex-direction: column;
  }

  .stats-left {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
    justify-content: center;
    align-items: center;
  }

  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
  }



  .stats-image {
    max-width: 100%;
    height: 70%;
    margin: 0 auto;
    margin-top: 2rem;
  }
  .stats-image img {
    width: 50% !important;
    height: auto;
    display: block;
  }
  .stats-text {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 100%;
    transform: none;
    right: auto;
    padding: 2rem 0;
    text-align: center;
  }

  .stats-text h1 {
    font-size: 1.75rem;
  }

  .stats-buttons {
    justify-content: center;
  }
  .stats-buttons a{
    padding: 2vh 5vh;
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .stats-hero{
    flex-direction: column;
    margin-top: 5vh;
  }
  .stats-container {
    gap: 0.5rem;
  }
  .stats-left {
    padding: 0.5rem 1rem;
  }

  .stat-item {
    text-align: center;
    flex: 1 1 100%;
  }
  .stat-item h2{
    font-size: 3rem;
  }
  .stat-item p{
    font-size: 1.5rem;
  }
  .stats-text h1 {
    font-size: 2rem;
  }

  .stats-text p {
    font-size: 1.3rem;
  }

    .stats-text {
    position: relative;
    width: 80%;
    overflow: hidden;
    z-index: 3;
    z-index: 100;
}
  .stats-image img {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .stats-hero {
    flex-direction: column;
  }

  .stats-left {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
    justify-content: center;
    align-items: center;
  }

  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
  }



  .stats-image {
    max-width: 100%;
    height: 70%;
    margin: 0 auto;
    margin-top: 2rem;
  }
  .stats-image img {
    width: 50% !important;
    height: auto;
    display: block;
  }
  .stats-text {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 100%;
    transform: none;
    right: auto;
    padding: 2rem 0;
    text-align: center;
  }

  .stats-text h1 {
    font-size: 3rem;
  }
  .stat-item h2{
    font-size: 4rem;
  }
  .stat-item p{
    font-size: 1.5rem;
  }

  .stats-text p {
    font-size: 1.5rem;
  }
  .stats-buttons {
    justify-content: center;
  }
  .stats-buttons a{
    padding: 2vh 5vh;
    font-size: 1.5rem;
  }
}

@media (max-width: 1100px) {
  .stats-hero{
    flex-direction: column;
    margin-top: 5vh;
  }
  .stats-container {
    gap: 0.5rem;
  }


  .stat-item {
    text-align: center;
    flex: 1 1 100%;
  }

    .stats-text {
    position: relative;
    width: 80%;
    overflow: hidden;
    z-index: 3;
    z-index: 100;
}
  .stats-image img {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .stats-container {
    flex-direction: row;
    height: auto;
  }

  .stats-left {
    width: 90%;
    padding: 3rem 2rem;
  }

  .stats-right {
    width: 50%;
    padding: 3rem 2rem;
  }


}



















.timeline {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 20vh 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  width: 4px;
  background: #ddd;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  left: 50%;
  width: 4px;
  background: #1e3b27;
  transform: translateX(-50%);
  z-index: 1;
  height: 0;
  transition: height 0.3s linear;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin: 1vh 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #1e3b27;
  border: 4px solid #1e3b27;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-item.left .timeline-dot,
.timeline-item.right .timeline-dot {
  top: 50%;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 0px;
  width: 100%;
}

.timeline-item.left .timeline-content {
  justify-content: flex-start;
}

.timeline-item.left img {
  margin-left: 0;
  width: 700px;
  height: 450px;
}
.timeline-item.left video {
  margin-left: 0;
  width: 700px;
  height: 450px;
  text-decoration: none !important;
}
.timeline-content img {
  width: 500px;
  height: 600px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.timeline-content .image-box {
  overflow: hidden;
  flex-shrink: 0;
}

.text-box-section {
  padding-top: 20vh;
}

.text-box {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.timeline-content .text-box {
  overflow: hidden;
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.5s;
}

.timeline-content .text-box:hover {
  transform: scale(1.05);
}

.timeline-item.left .text {
  margin-left: auto;
  background: white;
  width: 45%;
  padding: 5vh;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-item.right .timeline-content {
  justify-content: flex-end;
}

.timeline-item.right img {
  margin-right: 0;
  width: 700px;
  height: 600px;
}

.timeline-item.right img:hover,
.timeline-item.left img:hover {
  transform: scale(1.03);
}

.timeline-item.right .text {
  margin-right: auto;
  background: white;
  width: 40%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.text h3 {
  padding-bottom: 1rem;
  font-size: 2rem;
}

.text p {
  line-height: 1.2;
  font-size: 1.1rem;
}

.text h4 {
  padding: 1rem;
  font-size: 1.2rem;
}

/* ------------------------- */
/* DEVICE WIDTHS 1300–900px */
/* CENTER TEXT CONTAINERS   */
/* ------------------------- */

@media (max-width: 1300px) and (min-width: 901px) {

  .timeline-item.left .text,
  .timeline-item.right .text {
    margin-left: auto;
    margin-right: auto;
    width: 55%;
    text-align: center;
  }

  .timeline-content {
    justify-content: center !important;
    gap: 3rem;
  }

  .timeline-content .image-box {
    display: flex;
    justify-content: center;
  }

  .timeline-content img {
    width: 500px !important;
    height: auto !important;
  }
}

/* --------------------------- */
/* WIDTH TUNING ABOVE 1300px   */
/* --------------------------- */

@media (max-width: 1600px) and (min-width: 1501px) {
  .timeline-item.right img, .timeline-item.left img{
    width: 650px;
    height: 550px;
  }
}

@media (max-width: 1500px) and (min-width: 1401px) {
  .timeline-item.right img, .timeline-item.left img{
    width: 600px;
    height: 500px;
  }
}

@media (max-width: 1400px) and (min-width: 1301px) {
  .timeline-item.right img, .timeline-item.left img{
    width: 550px;
    height: 450px;
  }
}

/* MOBILE BREAKPOINTS REMAIN THE SAME */

@media (hover:none) and (max-width: 1300px) {
  .timeline {
    padding: 3vh 16px !important;
    max-width: 100%;
    overflow-x: hidden;
  }

  .timeline, .timeline * {
    box-sizing: border-box;
  }

  .timeline-line,
  .timeline-progress {
    left: 12px;
    transform: none;
  }

  .timeline-dot {
    left: -1px;
    top: 24px;
    transform: translate(-50%, 0);
  }

  .timeline-item {
    display: block;
    width: 100%;
    margin: 56px 0;
    padding-left: 36px;
  }

  .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding-bottom: 15vh;
  }

  .timeline-content .text {
    order: 1;
    width: 90%;
    margin: 5px;
  }

  .timeline-content .image-box {
    order: 2;
    width: 100%;
    display: flex;
  }

  .timeline-content .image-box img {
    width: auto;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .text h3 { font-size: 2rem; }
  .text p { font-size: 1.5rem; line-height: 1.5; }
  .text h4 { font-size: 2rem; }
}

@media (max-width: 900px) {
  .timeline { padding: 1vh 16px; max-width: 100%; overflow-x: hidden; }
  .timeline, .timeline * { box-sizing: border-box; }

  .timeline-line, .timeline-progress { left: 12px; transform: none; }

  .timeline-dot {
    left: -1px;
    top: 24px;
    transform: translate(-50%, 0);
  }

  .timeline-item {
    display: block;
    width: 100%;
    margin: 56px 0;
    padding-left: 36px;
  }

  .timeline-content {
    display: block;
    width: 100%;
    padding-bottom: 5vh;
  }

  .timeline-content img,
  .timeline-item.left img,
  .timeline-item.right img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 12px 0;
  }

  .timeline-item .text { width: 90%; margin: 5px; margin: 0 auto; }

  .text h3 { font-size: 2rem; }
  .text p { font-size: 1.2rem; line-height: 1.5; }
}

@media (max-width: 770px) {
  .timeline { padding: 1vh 16px; }
  .timeline, .timeline * { box-sizing: border-box; }

  .timeline-line, .timeline-progress { left: 12px; transform: none; }

  .timeline-dot {
    left: -1px;
    top: 24px;
    transform: translate(-50%, 0);
  }

  .timeline-item {
    display: block;
    width: 100%;
    margin: 56px 0;
    padding-left: 5px;
  }

  .timeline-content { display: block; width: 100%; padding: 0px; }

  .timeline-content img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .timeline-item.left video{
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .timeline-item.left .text{
    width: 95%;
  }
  .timeline-item.right .text{
    width: 95%;
  }
  .timeline-item .text { width: 90%; margin: 5px; }

  .text h3 { font-size: 1.2rem; }
  .text p { font-size: 1rem; line-height: 1.5; }
  .text h4 { font-size: 1.2rem; }
}




























/* Base Section */
.proc-section {
  max-width: 100%;
  margin: auto;
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}
.proc-section-container{
  max-width: 80%;
  margin: 0 auto;
}
/* Title (unchanged on purpose) */
.proc-title {
  font-size: 5.5rem;
  padding: 1vh;
}

/* Grid Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 12vh;
}

/* Process Box */
.process-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 7px 25px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 330px;            /* Ensures equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  opacity: 0;
  transform: translateY(25px);  /* scroll reveal initial */
}

/* Reveal when visible */
.process-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Number Bubble */
.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1e3b27;
  color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(80,80,80,0.35);
}

/* Headline */
.process-box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Paragraph */
.process-box p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
}

/* Hover subtle */
.process-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ---------- Responsive ---------- */

/* 2x2 grid */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-box {
    min-height: 300px;
  }
}

/* Single column for phones */
@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .proc-title {
    font-size: 1.7rem !important;
  }

  .process-box {
    padding: 30px 20px;
    min-height: auto;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .process-box h3 {
    font-size: 1.4rem;
  }

  .process-box p {
    font-size: 1rem;
  }
}
















.quote-section {
  width: 100%;
  height: 100%;
  padding: 15vh 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.quote-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-title {
  font-size: 7rem;
  font-weight: bold;
  width: 65%;
  text-align: left;
  border-bottom:  solid 1px #1e3b27;
  padding-bottom: 5vh;
}

.quote-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 0px;
}
.btn-animation {
      position: relative;
      display: inline-block;
      padding: 12px 10vh;
      font-size: 16px;
      font-weight: 600;
      color: #000000;
      text-decoration: none;
      border: 2px solid #000000;
      border-radius: 20px;
      overflow: hidden;
      transition: all 1s;
      z-index: 1;
    }

    /* The sliding background */
    .btn-animation::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #1e3b27;
      border: 2px solid #1e3b27;
      color: white;
      transition: all 1s ease;
      z-index: -1;
    }

    /* On hover → slide in */
    .btn-animation:hover::before {
      left: 0;
    }

    /* Change text color once background slides in */
    .btn-animation:hover {
      color: #fff;
      transform: scale(1.05);
      border: 2px solid #1e3b27;
    }

.quote-left-buttons {
  display: flex;
  padding: 1vh;
}
/* Bullets should use normal list-style */
.bullet-proc ul {
  list-style-type: disc;
  margin-top: 3rem;
  margin-bottom: 0px;
  padding: 0;
}

.bullet-proc li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* Warn quote styling */
.warn-quote {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  margin-top: 1rem;
  width: 50%;
}

.warn-quote img {
  width: 35px;
  height: 20px;
  flex-shrink: 0;
}




.quote-right-info {
  text-align: right;
  width: 30%;
}

.quote-description {
  margin-bottom: 1vh;
  font-size: 1rem;
}

.quote-social-row {
  display: inline-block;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.quote-social-row i{
  margin: 0.7vh;
  font-size: 1.4rem;
  color: #1e3b27 !important;
  transition: all 0.5s;
}
.quote-social-row i:hover{
  transform: scale(1.2) !important;
}
.quote-email {
  margin-left: 2rem;
}
@media (max-width: 1400px) {


  .quote-title {
    font-size: 5rem;
    width: 70%;
    text-align: left;
    margin: 6vh;
  }
  .quote-container {
    height: auto;
  }
}


@media (max-width: 1200px) {
  .quote-section {
    height: auto;
    padding: 10vh 5vw;
    margin-top: 10vh;
  }

  .quote-container {
    height: auto;
  }

  .quote-title {
    font-size: 5rem;
    width: 90%;
    text-align: left;
    margin: 1vh;
    padding-bottom: 4vh;
  }

  .quote-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    margin-top: 4vh;
  }

  .quote-left-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .quote-right-info {
    text-align: center;
    width: 100%;
    font-size: 1.5rem;
  }

  .quote-description {
    font-size: 1.5rem;
    max-width: 90%;
    margin: 0 auto 1rem auto;
  }

  .quote-social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .quote-email {
    margin-left: 0;
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .bullet-proc li{
    font-size: 1.5rem;
  }
  .warn-quote{
    font-size: 1.5rem;
    width: 80%;
  }
  .btn-animation{
    font-size: 1.8rem;
  }
  .quote-social-row i{
    font-size: 2.5rem;
  }
}


@media (max-width: 900px) {
  .quote-section {
    height: auto;
    padding: 10vh 5vw;
    margin-top: 10vh;
  }

  .quote-container {
    height: auto;
  }

  .quote-title {
    font-size: 5rem;
    width: 90%;
    text-align: left;
    margin: 1vh;
    padding-bottom: 4vh;
  }

  .quote-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    margin-top: 4vh;
  }

  .quote-left-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .quote-right-info {
    text-align: center;
    width: 100%;
    font-size: 1.3rem;
  }

  .quote-description {
    font-size: 1.3rem;
    max-width: 90%;
    margin: 0 auto 1rem auto;
  }

  .quote-social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .quote-email {
    margin-left: 0;
    display: block;
    margin-top: 0.5rem;
  }
  .bullet-proc li{
    font-size: 1.3rem;
  }
  .warn-quote{
    font-size: 1.3rem;
    width: 80%;
  }
  .btn-animation{
    font-size: 1.3;
  }
}

@media (max-width: 768px) {
  .quote-title {
    font-size: 3rem;
  } 
  .bullet-proc{
    padding: 1rem;
  }
  .warn-quote{
    font-size: 0.9rem;
    width: 100%;
    margin: 0 auto;
  }
  .quote-description {
    font-size: 0.9rem;
  }

  .stat-btn-1,
  .stat-btn-2 {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
    .btn-animation{
    font-size: 1rem;
  }
  .quote-social-row i {
    font-size: 1.2rem;
  }
  .quote-email{
    font-size: 1rem;
  }
}
@media (max-height: 700px){
  .warn-quote{
    width: 100%;
    margin: 0 auto;
  }
}
