/* Reset & Base */

html {
  scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #ffffff;
  color: #000000;
  font-family: 'Geo'; /* or swap to 'Geo' */
  overflow-x: hidden;
}


/* Hero Section */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; padding-top:-15px;
  background: #ffffff;
  overflow: hidden;
}


.hero-content { max-width: 45%; }
.headline {
  font-size:4rem;
   margin-bottom: 20px;
  opacity: 0;
   transform: translateY(20px);
   letter-spacing:4px;
    font-weight:700;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.subtext {
  font-size:1.8rem; color: #000000;
  opacity: 0; transform: translateY(20px);
}


.brand-tagline {
  font-family: 'Quintessential', cursive;
font-weight:400;
  letter-spacing: 5px;
  font-size: 7.0rem;
  color: #000000;
  margin-bottom: 10px;
  display: inline-block;
}

.brand-tagline .orange-x {
  color: rgb(38, 82, 171); /* Logo blue */
  /* or use hex: #445982 */
}


.cta-button {
  display: inline-block;
  background:  rgb(38, 82, 171);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background:  rgb(8, 54, 145);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 140, 66, 0.4);
}

.cta-button:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


.hero-img {
  max-width: 50%;
  opacity: 0; transform: translateX(50px);
}



/* Import Google Font for Tradewinds */
@import url('https://fonts.googleapis.com/css2?family=Tradewinds&display=swap');

.scrolling-banner {
  margin-top: -30px;
  background:  rgb(38, 82, 171);
  overflow: hidden;
  padding: 20px 0;
  border-radius: 89px 89px 5px 5px ;
  position: relative;
  z-index: 900;
}

.scroll-track {
  display: flex;
  width: fit-content;
  animation: scroll-loop 30s linear infinite;
}

.scroll-text {
  white-space: nowrap;
  font-family: 'Quintessential', cursive;
  font-size: 3.1rem;
  color: #ffffff;
  font-weight:200;
  padding-right:50px; /* space between loops */
}

@keyframes scroll-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Welcome Card Section */
.welcome-card-section {
  background: linear-gradient(to bottom, #ffffff, #f4f4f4, #eaeaea);
  padding: 60px 5%;
  display: flex;
  justify-content: center;
}

.welcome-card {
  display: flex;
  background: #ffffff;
  border-radius: 25px;
  padding: 50px;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-logo {
  width: 120px;
  height: 120px;
  max-height: 120px;
  border-radius: 20px;
}

.welcome-info h2 {
  font-size: 4.5rem;
  letter-spacing:6px;
    font-family: 'Quintessential', cursive;

  margin-bottom: 10px;
  margin-left: -10px;
  color: #262626;
}


.welcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.welcome-info h2 .orange-x {
  color:  rgb(38, 82, 171);
}
.welcome-info p {
  color: #4a4a4a;
  margin-bottom: 10px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 2.0;
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Doto&display=swap');

/* Features Section */
.features-section {
  color: #000000;
  padding: 80px 5% 60px;
  text-align: center;
}

.features-heading {
  font-size: 5rem;
  margin-bottom: 50px;
  font-family: 'Doto';
  font-weight: 400;
  color: rgb(38, 82, 171);
  margin-top: 50px;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: linear-gradient(to bottom, #ffffff, #f4f4f4, #eaeaea);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 0 12px rgba(36, 29, 171, 0.2);
  transition: all 0.3s ease;
  transform: translateY(0);
  margin-top: 40px;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 20px rgba(43, 48, 143, 0.4);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: rgb(38, 82, 171);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #232323;
}

.icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(38, 82, 171, 0.3));
}

.feature-card:hover .icon-placeholder img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(38, 82, 171, 0.6));
}

/* Button Below Cards */
.features-link {
  text-align: center;
}

.features-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: rgb(38, 82, 171);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.features-button:hover {
  background: rgb(52, 102, 200);
  transform: translateY(-2px);
}
/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Geo&family=Geo&display=swap');

/* Features Button */
.features-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  background-color:  rgb(38, 82, 171);
  color: #ffffff;
  font-weight: bold;
  font-family: 'Geo'; /* or swap to 'Geo' */
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top:70px;
}

.features-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s;
  
}

.features-button:hover::before {
  left: 100%;
}

.features-button:hover {
  background: #153fbc;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 140, 66, 0.4);
}

/* PROCESS*/

.process-section {
  padding: 160px 5%;
    background: linear-gradient(to bottom, #ffffff, #f4f4f4, #eaeaea);
  color: #000000;
}
.process-heading {
  font-family: 'Geo'; /* or swap to 'Geo' */
  font-size:7rem;
  font-weight: 400;
  color:  rgb(38, 82, 171);
  margin-bottom: 80px;
  text-align: left;
}

.process-card img.process-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  display: inline-block;
}

.process-wrapper {
  position: relative;
  height: 300px; /* adjust to card height */
  overflow: visible;
}

.process-deck {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-card {
  position: absolute;
  top: 0;
  left: 50%;
  width:300px;
  height:300px;
  padding: 30px 20px;
  background: #dedede;
  font-size:1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(16, 16, 210, 0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transform-origin: center center;
  cursor: pointer;
  text-align: center;
  margin-top: 50px;
}
.process-card h3,
.process-card p {
  font-family: 'Italiano', cursive;
  margin: 8px 0;
}
.process-card h3 {
 color: #153fbc;
}

.process-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #153fbc;
  color: #ffffff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.prev-btn { left: 290px; }
.next-btn { right: 250px; }
.process-nav:hover {
  background: #092576;
}




.faq-section {
  background: #fff;
  color: #fff;
  padding: 80px 5%;
}
.faq-heading {
  color:  rgb(38, 82, 171);
  font-family: 'Overlock', cursive;
  font-family: 'Geo'; /* or swap to 'Geo' */
  font-weight: 400;
letter-spacing: 2px;
  font-size:4.4rem;
  
  text-align: center;
  margin-bottom: 40px;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;

}
.faq-item {
  background: #dedede;
  border: 1px solid rgba(27, 39, 205, 0.3);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  font-size: 1.2rem;
  font-family: 'Overlock', cursive;
  padding: 20px;
  position: relative;
  cursor: pointer;
color: #131313;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  color: #131313;
  top: 20px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #131313;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  padding: 16px 20px 24px;
  max-height: 500px;
}






/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
    .nav-item {
    position: relative;
  }
  .hamburger { display: flex; }
  .hero {
    flex-direction: column-reverse; text-align: center;
    padding-top:50px;
  }
  .hero-content { max-width: 100%; padding-bottom:60px;}
  .hero-img { max-width: 80%; margin-bottom:-50px; }

    .brand-tagline {
    font-size:4.5rem;
    text-align: center;
    
  }

  .headline {
  font-size:2rem;
   margin-bottom: 20px;
  opacity: 0;
   transform: translateY(20px);
   letter-spacing:4px;
    font-weight:700;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.brand-tagline {
    font-family: 'Quintessential', cursive;

  letter-spacing: 5px;
  font-size:3.5rem;
  font-weight:400;
  color: #000000;
  margin-bottom: 10px;
  display: inline-block;
}


.scrolling-banner {
  
  margin-top:70px;
  background:  rgb(38, 82, 171);
  overflow: hidden;
  padding:15px 0;
  border-radius: 89px 89px 5px 5px ;
  position: relative;
  z-index: 900;
}

.scroll-track {
  display: flex;
  width: fit-content;
  animation: scroll-loop 30s linear infinite;
}

.scroll-text {
  white-space: nowrap;
      font-family: 'Quintessential';

  font-size: 2rem;
  color: #ffffff;
  font-weight:200;
  padding-right:50px; /* space between loops */
}



  .welcome-container {
    
    flex-direction: column;
    text-align: center;
  }
  .welcome-logo {
    margin-bottom: 20px;
    
  }
  .features-heading {
    font-size: 2rem;
    
  }

  .welcome-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .welcome-info h2 {
    font-size: 2rem;
  }
  .welcome-logo {
    margin-bottom: 20px;
  }

.features-heading {
  font-size: 2.9rem;
  margin-bottom: 50px;
  font-family: 'Doto';
  font-weight: 400;
  color: rgb(38, 82, 171); /* Logo blue */
  margin-top:50px;
text-align: left;
}

.process-heading {
  font-family: 'Geo'; /* or swap to 'Geo' */
  font-size:7rem;
  font-weight: 400;
  color:  rgb(38, 82, 171);
  margin-bottom: 80px;
  text-align: left;
}



.process-card {
  font-family: 'Overlock', sans-serif;
  position: absolute;
  top: 0;
  left: 20%;
  width: 260px; /* was 220px */
  height: 260px; /* was 220px */
  padding: 30px 20px;
  background: #b9b9b9;
  border-radius: 16px;
  border: 1px solid rgba(16, 16, 210, 0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transform-origin: center center;
  cursor: pointer;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 50px;
  letter-spacing: 2px;
}

.process-card p{
  font-family: 'Overlock', sans-serif;
  letter-spacing: 1px;
}

.process-heading {
  font-family: 'Overlock', sans-serif;
  font-size: 3.5rem;
  font-weight:100;
  font-family: 'Overlock', sans-serif;
  color: rgb(38, 82, 171); /* Logo blue */
  margin-bottom: 40px;
  text-align: left;
}

.prev-btn { left: -10px; }
.next-btn { right:-10px; }


.brand-tagline-footer {
  font-size:1rem;
  color: #ccc;
}

}


@media (max-width: 430px)  {

.hero {
    flex-direction: column-reverse; text-align: center;
    
  }

  .process-heading {
  font-family: 'Geo'; /* or swap to 'Geo' */
  font-size:5rem;
  font-weight: 400;
  color:  rgb(38, 82, 171);
  margin-bottom: 80px;
  text-align: left;
}


}

@media (max-width: 1024px) {
.hero {
    flex-direction: column-reverse; text-align: center;
    
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 80px 5% 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-img {
    max-width: 100%;
    transform: translateX(0);
    opacity: 1;
  }

  .brand-tagline {
    font-size: 5rem;
  }

  .headline {
    font-size: 3rem;
  }

  .subtext {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    flex-direction: column-reverse; text-align: center;
    
  }
  .brand-tagline {
    font-size: 3.5rem;
    letter-spacing: 3px;
  }

  .headline {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .subtext {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 22px;
  }
}
