/* ================= FONTS ================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=Montserrat:wght@400;600;700&family=Poppins:wght@400;500;600&display=swap');

body{
line-height:1.7;
}

/* HERO */

.about-banner{
background:linear-gradient(135deg,#0a5ea3,#084a87);
color:white;
padding:90px 10%;
text-align:center;
}

.about-banner h1{
font-family:'Lora',serif;
font-size:48px;
font-weight:700;
letter-spacing:1px;
margin-bottom:15px;
}

.about-banner p{
max-width:720px;
margin:auto;
font-size:18px;
font-family:'Montserrat',sans-serif;
font-weight:400;
opacity:0.95;
}

/**===========ABOUT INTRO **********************/

.about-intro{
padding:80px 10%;
background:#f8fbff;
}

.about-intro-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-intro-text h2{
font-family:'Lora',serif;
font-size:34px;
font-weight:700;
color:#1b2a4e;
margin-bottom:18px;
}

.about-intro-text p{
font-size:16px;
font-family:'Poppins',sans-serif;
color:#444;
}

.about-intro-image img{
width:100%;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.about-features{
padding:80px 10%;
text-align:center;
}


/**********ABOUT FEATURES *************************/
/* ================= SECTION ================= */
.about-features {
  padding: 70px 8%;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1b2a4e;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.feature-card {
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  padding: 30px 22px;
  border-radius: 16px;

  border: 1px solid #e5e7eb;

  /* 🔥 LIGHT 3D */
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 10px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.feature-card i {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 12px;
  transition: 0.3s;
}

/* TITLE */
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1b2a4e;
}

/* TEXT */
.feature-card p {
  font-size: 14px;
  color: #6b7280;
}

/* 🔥 HOVER (3D FLOAT) */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 10px 25px rgba(0,0,0,0.12),
    0 0 12px rgba(37,99,235,0.15);
}

/* ICON HOVER */
.feature-card:hover i {
  transform: scale(1.2) rotate(8deg);
  color: #1d4ed8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/**********ABOUT STATS ****************/
/* ================= SECTION ================= */
/* ================= SECTION ================= */
.about-highlights {
  padding: 70px 8%;
  background: linear-gradient(180deg, #f9fbff, #eef3f9);
  text-align: center;
}

/* TITLE */
.about-highlights .section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1b2a4e;
  margin-bottom: 40px;
}

/* GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ================= CARD ================= */
.highlight-box {
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
  padding: 28px 20px;
  border-radius: 14px;

  border: 1px solid #e5e7eb;

  /* 🔥 LIGHT 3D (MATCH HEADER STYLE) */
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 3px 8px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
  cursor: pointer;
}

/* ICON */
.highlight-box i {
  font-size: 32px;
  color: #2563eb;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

/* TITLE */
.highlight-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b2a4e;
  margin-bottom: 8px;
}

/* TEXT */
.highlight-box p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ================= HOVER (SOFT 3D POP) ================= */
.highlight-box:hover {
  transform: translateY(-6px);

  background: linear-gradient(180deg, #ffffff, #eef4ff);

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 8px 18px rgba(0,0,0,0.10),
    0 0 10px rgba(37, 99, 235, 0.12);
}

/* ICON HOVER */
.highlight-box:hover i {
  transform: scale(1.15);
  color: #1d4ed8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SECTION ================= */
.about-process {
  padding: 70px 8%;
  background: linear-gradient(180deg, #f9fbff, #eef3f9);
  text-align: center;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.process-card {
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
  padding: 30px 20px;
  border-radius: 14px;

  border: 1px solid #e5e7eb;

  /* 🔥 LIGHT 3D */
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 10px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}

/* STEP NUMBER (CIRCLE) */
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: linear-gradient(180deg, #2563eb, #3b82f6);
  color: #fff;

  font-weight: 700;
  font-size: 15px;

  margin-bottom: 14px;

  /* 🔥 3D BUTTON LOOK */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 3px 0 #1e40af,
    0 6px 12px rgba(37,99,235,0.25);

  transition: 0.25s;
}

/* TITLE */
.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b2a4e;
  margin-bottom: 8px;
}

/* TEXT */
.process-card p {
  font-size: 14px;
  color: #6b7280;
}

/* ================= HOVER ================= */
.process-card:hover {
  transform: translateY(-8px);

  background: linear-gradient(180deg, #ffffff, #eef4ff);

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 10px 22px rgba(0,0,0,0.12),
    0 0 10px rgba(37,99,235,0.12);
}

/* NUMBER HOVER (PRESS EFFECT) */
.process-card:hover span {
  transform: translateY(-2px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 5px 0 #1e40af,
    0 10px 18px rgba(37,99,235,0.35);
}

/* ================= OPTIONAL CONNECTOR LINE ================= */
/* makes steps feel connected (premium look) */
.process-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: #dbeafe;
}

.process-card:last-child::after {
  display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= CTA SECTION ================= */
.about-cta {
  text-align: center;
  padding: 80px 10%;

  /* 🔥 LIGHT PREMIUM BG */
  background: linear-gradient(180deg, #f4f8ff, #eaf2ff);
}

/* TITLE */
.about-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1b2a4e;
  margin-bottom: 10px;
}

/* TEXT */
.about-cta p {
  font-size: 15px;
  color: #6b7280;
}

/* ================= 3D BUTTON ================= */
.cta-btn {
  display: inline-block;
  margin-top: 25px;

  padding: 12px 28px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  color: #2563eb;

  /* 🔥 LIGHT 3D STYLE */
  background: linear-gradient(180deg, #ffffff, #e5e7eb);
  border: 1px solid #d1d5db;

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 3px 0 #cbd5e1,
    0 6px 14px rgba(0,0,0,0.08);

  transition: all 0.25s ease;
}

/* 🔥 HOVER (ATTRACTIVE) */
.cta-btn:hover {
  transform: translateY(-2px);

  /* Light blue effect */
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: #1d4ed8;

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 6px 0 #cbd5e1,
    0 12px 20px rgba(0,0,0,0.12),
    0 0 10px rgba(37,99,235,0.2);
}

/* 🔥 CLICK EFFECT */
.cta-btn:active {
  transform: translateY(2px);

  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.2),
    0 1px 0 #cbd5e1;
}

@media(max-width:900px){

.about-intro-container{
grid-template-columns:1fr;
}

.features-grid{
grid-template-columns:1fr 1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

.stats-container{
grid-template-columns:1fr 1fr;
}

.about-banner h1{
font-size:36px;
}

}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Large Tablets / Small Laptops */
@media (max-width:1200px){

.features-grid{
grid-template-columns:repeat(3,1fr);
}

.process-grid{
grid-template-columns:repeat(3,1fr);
}

.stats-container{
grid-template-columns:repeat(3,1fr);
}

}


/* Tablets */
@media (max-width:992px){

.about-banner{
padding:70px 8%;
}

.about-banner h1{
font-size:40px;
}

.about-banner p{
font-size:16px;
}

.about-intro{
padding:60px 8%;
}

.about-intro-container{
grid-template-columns:1fr;
gap:35px;
}

.about-intro-image{
order:-1;
}

.features-grid{
grid-template-columns:repeat(2,1fr);
}

.process-grid{
grid-template-columns:repeat(2,1fr);
}

.stats-container{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

}


/* Mobile */
@media (max-width:768px){

.about-banner{
padding:60px 6%;
}

.about-banner h1{
font-size:34px;
}

.about-banner p{
font-size:15px;
}

.section-title{
font-size:28px;
}

.about-intro-text h2{
font-size:28px;
}

.feature-card{
padding:28px 20px;
}

.process-card{
padding:24px 20px;
}

.stat-box h3{
font-size:36px;
}

.about-cta h2{
font-size:28px;
}

}


/* Small Mobile */
@media (max-width:480px){

.about-banner{
padding:50px 20px;
}

.about-banner h1{
font-size:28px;
}

.about-banner p{
font-size:14px;
}

.about-intro{
padding:50px 20px;
}

.about-features{
padding:60px 20px;
}

.about-process{
padding:60px 20px;
}

.about-cta{
padding:60px 20px;
}

.features-grid{
grid-template-columns:1fr;
}

.process-grid{
grid-template-columns:1fr;
}

.stats-container{
grid-template-columns:1fr;
}

.feature-card{
padding:24px 18px;
}

.process-card{
padding:22px 18px;
}

.stat-box h3{
font-size:32px;
}

.cta-btn{
padding:12px 24px;
font-size:14px;
}

}

.about-highlights{
padding:80px 10%;
background:#f7f9fb;
text-align:center;
}

.highlights-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.highlight-box{
background:white;
padding:35px 25px;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:.3s;
}

.highlight-box:hover{
transform:translateY(-6px);
}

.highlight-box i{
font-size:38px;
color:#0a5ea3;
margin-bottom:12px;
}

.highlight-box h3{
font-family:'Montserrat',sans-serif;
font-size:20px;
margin-bottom:8px;
}

.highlight-box p{
font-size:14px;
color:#555;
}

@media(max-width:900px){
.highlights-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:480px){
.highlights-grid{
grid-template-columns:1fr;
}
}



/* ================= PLATFORM FEATURES ================= */
.platform-features {
  padding: 80px 10%;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  text-align: center;
}

/* GRID */
.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.platform-feature-card {
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  padding: 25px 20px;
  border-radius: 14px;

  border: 1px solid #e5e7eb;

  /* LIGHT 3D EFFECT */
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 10px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

/* TITLE */
.platform-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1b2a4e;
  margin-bottom: 8px;
}

/* TEXT */
.platform-feature-card p {
  font-size: 13px;
  color: #6b7280;
}

/* HOVER */
.platform-feature-card:hover {
  transform: translateY(-8px);

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 10px 20px rgba(0,0,0,0.12),
    0 0 10px rgba(37,99,235,0.15);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .platform-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .platform-features-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= PLATFORM ACTIONS ================= */
.platform-actions {
  padding: 80px 10%;
  background: linear-gradient(180deg, #f9fbff, #eef3f9);
  text-align: center;
}

/* GRID */
.platform-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.action-card {
  display: block;
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  padding: 28px 20px;
  border-radius: 14px;

  border: 1px solid #e5e7eb;
  text-decoration: none;

  /* LIGHT 3D EFFECT */
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 10px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

/* ICON */
.action-card i {
  font-size: 30px;
  color: #2563eb;
  margin-bottom: 12px;
  transition: 0.3s;
}

/* TITLE */
.action-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1b2a4e;
  margin-bottom: 6px;
}

/* TEXT */
.action-card p {
  font-size: 13px;
  color: #6b7280;
}

/* HOVER */
.action-card:hover {
  transform: translateY(-8px);

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 10px 20px rgba(0,0,0,0.12),
    0 0 10px rgba(37,99,235,0.15);
}

/* ICON HOVER */
.action-card:hover i {
  transform: scale(1.2);
  color: #1d4ed8;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .platform-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .platform-actions-grid {
    grid-template-columns: 1fr;
  }
}


/* STEP NUMBER BADGE */
.process-card {
  position: relative;
}

.process-card .step {
  position: absolute;
  top: 10px;
  left: 10px;

  background: linear-gradient(180deg, #2563eb, #3b82f6);
  color: #fff;

  font-size: 12px;
  font-weight: 700;

  padding: 5px 10px;
  border-radius: 20px;

  box-shadow:
    0 3px 0 #1e40af,
    0 6px 12px rgba(37,99,235,0.25);
}

/* OPTIONAL: CONNECT LINE (DESKTOP ONLY) */
@media (min-width: 992px) {
  .process-card::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #dbeafe;
  }

  .process-card:last-child::after {
    display: none;
  }
}

/* ================= UPCOMING CTA (LIGHT THEME) ================= */
.upcoming-cta {
  padding: 80px 10%;
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  text-align: center;
  border-radius: 16px;
  margin: 60px 10%;
}

/* CONTENT */
.upcoming-cta-content {
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.upcoming-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1b2a4e;
  margin-bottom: 12px;
}

/* TEXT */
.upcoming-cta p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* BUTTON (MATCH YOUR 3D STYLE) */
.upcoming-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;

  background: linear-gradient(180deg, #ffffff, #e5e7eb);
  color: #2563eb;

  text-decoration: none;
  border: 1px solid #d1d5db;

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 3px 0 #cbd5e1,
    0 6px 14px rgba(0,0,0,0.08);

  transition: 0.25s ease;
}

/* HOVER */
.upcoming-btn:hover {
  transform: translateY(-2px);

  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: #1d4ed8;

  box-shadow:
    inset 0 1px 0 #ffffff,
    0 6px 0 #cbd5e1,
    0 12px 20px rgba(0,0,0,0.12),
    0 0 10px rgba(37,99,235,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .upcoming-cta {
    padding: 60px 20px;
    margin: 40px 20px;
  }

  .upcoming-cta h2 {
    font-size: 26px;
  }

  .upcoming-cta p {
    font-size: 14px;
  }

}