
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 100;
}

.icon {
    color: aliceblue;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,*::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* =================== BASE STYLES =================== */
body {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: white;
  background: #000;
}
body a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 100;
}
.icon {
  color: aliceblue;
}

/* =================== HEADER & HERO =================== */
.primary-header img {
  margin: 10px 20px 8px;
  height: 45px;
}

.hero {
  display: flex;
  position: relative;
  background-image: url(../images/desk-bg.JPG);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  overflow: hidden;
  align-items: center;
  height: 70vh;
}

.hero-content { 
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  z-index: 1;
  margin: 0 auto;
  height: 100%;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(
    to bottom, 
    #00000000, 
    transparent 70%,
    transparent 30%,
    #000000);
  z-index: 0;
}

.hero h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
  color: #000;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 550px;
  text-align: center;  
}

.bottom a svg {
  padding: 0;
  margin: 0;
  width: 30px;
  height: auto;
  vertical-align: middle;
  fill: #ffffff;
}

/* =================== CAROUSEL SECTION =================== */


.review-carousel {
  margin: 0 auto;
  max-width: 1000px;
  margin-top: 20px;
  display: flex;
  position: relative;
  background: #000;
  overflow: hidden;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 30px;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column; /* align content vertically */
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border: 1px solid #ffffff5d;
  padding: 25px 20px;
  min-width: 260px;
  min-height: 240px; /* larger card height */
  border-radius: 14px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}



.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviewer-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-info {
  font-size: 15px;
  font-weight: 300;
  color: #ddd;
  line-height: 1.4;
}

.carousel-gradient {
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-gradient.left {
  left: 0;
  background: linear-gradient(to right, #000 10%, transparent);
}

.carousel-gradient.right {
  right: 0;
  background: linear-gradient(to left, #000 10%, transparent);
}

/* Smooth scroll control */
.review-carousel {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}


/* =================== ABOUT SECTION =================== */
.about {
  margin-top: 100px;
  padding-top: 10px ;
  text-align: left;
  color: #fff;
}

.about-content p {
  padding: 15px;
  border-radius: 8px;
  font-size: 3px;
}

.about h2 {
  font-weight: 700;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about p {
  background: #2d2d2d;
  line-height: 1.7;
  font-size: 1.15rem;
  font-weight: 200;
  margin-bottom: 18px;
  opacity: 0.9;
}


/* =================== MAIN SECTION =================== */
.main-container {
  max-width: 1200px;
  box-sizing: border-box;
  align-items: center;
  margin: 0 auto;
  background-color: #000000;
  padding: 0 15px;
}

/* =================== steps SECTION =================== */

.steps-wrapper {
    text-align: center;
    padding: 40px 0px;
    color: #eaeaea;
    padding-top: 60px;
}

.steps-title {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 600;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 650px;
    margin: 0 auto 10px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-color: #3257faa8;
}


.step-icon {
    margin-bottom: 10px;
}

.step-icon img {
  width: 130px;
}

.step-text h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.step-text p {
    color: #c9c9c9;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (min-width: 1000px) {
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 30px;
  }

  .step-card {
    flex-direction: column;
  }
}



/* =================== REASONS SECTION =================== */
.reasons-container {
  margin: 30px auto;
  text-align: center;
  font-family: inherit;
}
.reasons-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-family: inherit;
}
.reason-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #152268 30%, #000000);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  align-items: center;
  text-align: left;
}

.reason-card .top {
  width: 100%;
}

.reason-main {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}
.reason-sub {
  font-size: 0.95rem;
  color: #ffffff81;
  line-height: 1.4;
}
.reason-svg {
  width: 100%;
  display: flex;
  justify-content: right;

}

.reason-svg svg {
  width: 65px;
  height: 65px;
  margin: 0;
  padding: 0;
}

/* =================== FAQ SECTION =================== */

.faq-section {
  margin: auto;
  padding: 50px 0px;
}
.faq-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: left;
  color: white;
}
.faq {
  margin-bottom: 10px;
  height: 36;
}
.faq input {
  display:none;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px;
  background: #2d2d2d;
  color: #fff;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #444;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1c1c1c;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  line-height: 1.3;
  padding: 0 18px;
  color: white;
}
.faq input:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px;
}
.faq-item {
  border-bottom: 1px solid #333;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 18px;
}
.symbol {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq input:checked + label .symbol {
  transform: rotate(45deg);
}

/* =================== FOOTER =================== */
.footer {
  width: 100%;
  background: #000;
  color: #757575;
  font-size: 14px;
  padding: 0 20px;
  padding-bottom: 20px;
}

.footer-cta {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px 100px;
}

.footer-cta .top {
  text-align: center;
  padding-bottom: 20px;
  color: #fff;
}

.footer-cta .bottom {
  display: flex;
  justify-content: center;
}

.footer button svg {
  padding: 0;
  margin: 0;
  width: 20px;
  height: auto;
  vertical-align: middle;
  fill: #000;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(135deg, #5364ff, #0003b6);
  border: none;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: padding 0.5s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.cta-btn:hover::before {
  left: 125%;
}

.cta-btn:hover {
  padding: 14px 42px;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.cta-btn::before {
  animation: shine 3s infinite;
}

.cta-section {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cta-section .bottom {
  margin-top: 10px;
}

.cta-bg {
  width: 100%;
  position: relative;
  background-image: url(../images/cta-bg.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cta-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  pointer-events: none;
  z-index: 1;
}

.cta-container {
  position: relative;
  margin-bottom: 5px;
  padding: 0 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  z-index: 2;
}

/* ======================FOOTER==================== */
.site-footer {
  margin-top: 30px ;
  background-color: #242424;
  color: #ffffff;
  padding: 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-inner .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-disclaimer {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.footer-logo img {
  height: 45px;
  display: block;
  filter: brightness(1.2);
}

/* right-side controls */
.footer-controls {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-controls .copyright {
  font-weight: 500;
  white-space: nowrap;
  font-size: 18px;
}

.email-link svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
  flex-shrink: 0;
}

/* ======================ANIMATION==================== */

.step-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================POP UP NOTIFICATION==================== */
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  display: none; /* shown via JS */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.253);
}

/* Popup Box */
.popup-box {
  width: 92%;
  max-width: 520px;
  background: linear-gradient(135deg, #1325c9, #000149);
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  text-align: left;
  transform-origin: center;
  animation: popupFade 260ms ease-out;
}

.popup-box h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-align: center;
}

.popup-text {
  margin: 0 0 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  font-size: 0.98rem;
}

/* Actions */
.popup-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.popup-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.popup-cancel {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.popup-continue {
  background: #fff;
  color: #000000;
}

/* hover */
.popup-cancel:hover { opacity: 0.95; transform: translateY(-2px); }
.popup-continue:hover { opacity: 0.98; transform: translateY(-2px); }

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* prevent background focus when modal is open */
body.popup-open { overflow: hidden; }


/* =================== MEDIA QUERIES =================== */
@media (max-width: 600px) {
  
  .primary-header img {
    margin: 15px 20px 8px;
    height: 35px;
  }

  .hero h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
  }

  .hero p {
    margin-bottom: 50px;
    font-size: 20px;
    padding: 0 25px;
  }

  .hero {
    height: 90vh;
    background-image: url(../images/desk-bg.JPG);
  }

  .icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    font-size: 20px;
    line-height: 25px;
  }

  .text .main-text {
    font-size: 19px;
    text-align: left;
  }

  .faq-question {
    font-size: 1rem;
  }
  
  .cta-bg {
    height: 40vh;
  }
  
  .footer-cta {
    padding: 20px 0;
  }

  .footer-cta .top {
    text-align: left;
  }

  .footer-logo img {
  margin: 0 auto 15px; /* center and add some breathing space */
}

}


@media (max-width: 800px) {
  .reasons-grid {
    display: flex;
    flex-direction: column;
  }

  .card-track {
    gap: 10px;
  }
  .card-track a {
    flex: 0 0 50%;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .arrow {
    font-size: 18px;
    padding: 10px 0px;
  }

  .reasons-title {
    font-size: 1.3rem;
  }
}



@media (min-width: 750px) {

  .main-container h2 {
    font-size: 2rem;
    line-height: 2;
  }

  .card img {
    width: 200px;
  }

  
}

@media (min-width: 1200px) {
  
  .reasons-grid {
    display: flex;
  }

  .reason-card {
    width: 600px;
  }

  .card-track img {
    width: 200px;
  }


}