/* ===== Base Styles ===== */
/* Reset & Base */

html {
  scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #ffffff;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
 scroll-behavior: smooth;
}


h2 {
  color: #FF8C42;
  font-family: 'Rampart One', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
}



/* ===== Hero Section ===== */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap:200px;
  padding: 60px 5%;
  margin-top:100px;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
}

.hero-text h1 {
  font-size:6em;
  color: rgb(38, 82, 171);
  font-family: 'Quintessential', cursive;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-text p {
  font-size:1.8em;
  font-family: 'Overlock', sans-serif;
  color: #333;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* ===== Mission & Trust Sections ===== */
.about-mission,
.about-trust,
.about-cta {
  text-align: center;
  padding: 80px 5%;
}

.about-mission h2,
.about-trust h2 {
  font-size:6rem;
  font-weight: 300;
  font-family: 'Quintessential', cursive;
  color: rgb(38, 82, 171);
  letter-spacing: 2.5px;
}

.about-mission p,
.about-trust p {
  font-size: 2rem;
  
  color: #000;
  font-family: 'Overlock', sans-serif;
  max-width: 800px;
  margin: 20px auto 40px;
  line-height: 1.8;
}

/* ===== Features Section ===== */
.about-features {
  background: #ffffff;
  padding: 80px 5%;
  text-align: center;
}

.about-features h2 {
  font-family: 'Quintessential', cursive;
  font-size:6rem;
  font-weight: 300;
  color: rgb(38, 82, 171);
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #f0f0f5;
  border: 1px solid rgba(59, 46, 203, 0.2);
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(46, 19, 170, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* ===== CTA Button ===== */
.about-cta h2 {
  font-size: 2rem;
}

.cta-button {
  margin-top: 20px;
  padding: 12px 30px;
  background: #FF8C42;
  color: #121212;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e9772a;
}





/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {

.about-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:45px 5%;
  gap:15px;
  flex-wrap: wrap;
  margin-top:10px;
}

  .hero-text h1 {
  font-size:3.2rem;
  color: rgb(38, 82, 171);
  font-family: 'Quintessential', cursive;
  margin-bottom: 20px;
  margin-top: -20px;
  letter-spacing: 2px;
  font-weight: 400;
}

.hero-image {
  flex: 1;
  max-width: 45%;
}



.hero-text p {
  font-size:1.7rem;
  letter-spacing: 3px;
  color: #131313;
  font-weight:300;
  line-height:45px;
}

.about-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top:70px;
  }
  .hero-text,
  .hero-image {
    max-width: 100%;
  }
  

.about-mission h2{
  font-size:4rem;
  text-align: center;
  font-weight: 300;
  font-family: 'Quintessential', cursive;
  letter-spacing:2px;
}

.about-mission p,
.about-trust p {
  font-size:1.5rem;
  
  font-family: 'Poppins', sans-serif;
  color: #000000;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 40px;
  line-height:50px;
}

.about-features h2{
font-family: 'Quintessential', cursive;
letter-spacing:4px;
font-size:3.6rem;
font-weight: 300;
margin-top: -10px;
}
  

.about-trust  h2{
  font-family: 'Quintessential', cursive;
font-weight: 300;
letter-spacing: 2px;
font-size:3.7rem;
text-align: center;
margin-top: 20px;
}



}