@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --font-heading: 'Poppins', sans-serif;
    --font-paragraph: 'Inter', sans-serif;

    --bg: #0b0c10;
    --card: #111216;
    --text: #f2f2f2;
    --muted: #9e9ea7;
    --accent: #6a5af9;
    --radius: 18px;
    --glass: rgba(255, 255, 255, 0.05);
    --max: 1180px;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}




/* ABOUT PAGE */
.about-hero {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8257e5, #18b2de);
    -webkit-background-clip: text;
    color: transparent;
    font-family: var(--font-heading);
}

.about-hero p {
    margin-top: 12px;
    font-size: 1.2rem;
    color: #cfcfcf;
    font-family: var(--font-paragraph);
}

/* WRAPPER */
.about-wrapper {
    width: 92%;
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
}

/* GLASS CARD STYLE */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 40px;
    animation: fadeSlide .7s ease forwards;
}

/* LEFT */
.about-left h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.about-left p {
    color: #e6e6e6;
    line-height: 1.7;
    margin-bottom: 14px;
    font-family: var(--font-paragraph);
}

.about-btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #8257e5, #18b2de);
    color: #fff;
    margin-top: 6px;
    transition: .3s;
    text-decoration: none;
    font-family: var(--font-paragraph);
}

.about-btn:hover {
    transform: translateY(-3px);
}

/* RIGHT PROFILE */
.profile {
    text-align: center;
}

.profile img {
    width: 140px;
    height: 140px;
    border-radius: 22px;
    object-fit: cover;
    margin-bottom: 14px;
}

.profile h3 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.profile span {
    color: #bfbfbf;
    font-family: var(--font-paragraph);
}

/* MISSION SECTION */
.mission {
    width: 92%;
    max-width: 1150px;
    margin: 100px auto;
    text-align: center;
}

.mission h2 {
    font-size: 2.3rem;
    margin-bottom: 26px;
    font-family: var(--font-heading);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mission-card {
    padding: 28px;
    font-size: 1.05rem;
    color: #ddd;
    border-radius: 18px;
}

/* Animations */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width:900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .profile {
        order: -1;
    }
}

@media (max-width:500px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
}

.back-btn{
  position: fixed;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(12px);
  display: flex;
  gap: 6px;
  align-items: center;
  transition: all .28s ease;
  z-index: 9999;
}

.back-btn:hover{
  transform: translateX(-4px);
  background: rgba(255,255,255,0.12);
}

/* responsive */
@media(max-width:600px){
  .back-btn{
    top: 18px;
    left: 16px;
    font-size: .9rem;
    padding: 6px 12px;
  }
}


@media(max-width:650px){
.mission-card{
    font-size: 0.7rem;
    padding: 5px;
}
}