
body {
    background: #07061a;
    font-family: 'Poppins', sans-serif;
}

/* smooth scroll feel */
section {
    position: relative;
}

/* container width */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px; /* ADD THIS */
}

/* ================= ABOUT HERO ================= */
.about-hero {
    padding: 200px 80px 150px;
    text-align: center;
    color: #fff;

    background: url('../images/about-bg.png') no-repeat center center/cover;

    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 20, 0.7); 
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeUp 1s ease forwards;
}

.hero-title {
    word-wrap: break-word;
    font-family: "Playfair Display", serif;
}

.about-hero {
    background-size: cover;
    background-position: center;
}

/* Gradient highlight word */
.about-hero .hero-title span {
    background: linear-gradient(90deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Subtext */
.about-hero .hero-subtext {
    font-size: 18px;
    max-width: 650px;
    margin: 20px auto 0;
    opacity: 0.75;
    animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Tablets */
@media (max-width: 1024px) {
    .about-hero {
        padding: 160px 40px 120px;
    }

    .about-hero .hero-title {
        font-size: 42px;
    }

    .about-hero .hero-subtext {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 140px 20px 100px;
        background-position: center;
    }

    .about-hero .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .about-hero .hero-subtext {
        font-size: 15px;
        margin-top: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-hero {
        padding: 120px 15px 80px;
    }

    .about-hero .hero-title {
        font-size: 26px;
    }

    .about-hero .hero-subtext {
        font-size: 14px;
    }
}

/* ================= COMMON ABOUT SECTIONS ================= */
.about-section {
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    background: #07061a;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title span {
    color: #d4af37;
}

.section-text {
    max-width: 750px;
    margin: 0 auto 15px;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
}

/* ================= MISSION SECTION ================= */
.mission {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #07061a;
}

/* ================= SPLIT ABOUT SECTION ================= */

.about-split {
    padding: 100px 20px;
    background: #07061a;
    color: white;
}

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

/* LEFT IMAGE */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* RIGHT CONTENT */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-block .section-title {
    margin-bottom: 15px;
}

.content-block .section-text {
    margin-bottom: 10px;
    color: #cfcfe8;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FEATURES ================= */
.features {
    background: #07061a;
    padding: 120px 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #fff;
}

.section-title span {
    color: #a78bfa;
}

.section-text {
    margin-top: 10px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    padding: 35px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.06);

    text-align: left;

    transition: all 0.4s ease;
    position: relative;
}

/* subtle glow border */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, #facc15, #f59e0b, transparent);
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}


/* glow effect */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(250, 204, 21, 0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

/* hover */
.feature-card:hover {
    transform: translateY(-10px);
    border-color: #facc15;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.15);
}

.feature-card:hover::after {
    opacity: 1;
}

/* icon */
.feature-card .icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 215, 0, 0.1);
    color: #facc15;

    font-size: 20px;
    margin-bottom: 20px;
}


.icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ======= Responsive ========= */

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

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

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

/* ================= APPROACH SECTION ================= */
.approach {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: radial-gradient(circle at top, #0d0f209f, #1515296d 70%);
}

/* Starry Background */
.approach::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.25;
    z-index: 0;
}

/* Container */
.approach .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
}

/* Section Title */
.approach .section-title {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #f8f5ef;
    margin-bottom: 60px;
}

/* Glassmorphism Card */
.approach-card {
    position: relative;
    padding: 50px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

/* Subtle Glow Border */
.approach-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, #facc15, #f59e0b, transparent);
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

/* Icon Styling */
.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.4);
}

.approach-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

/* Paragraph Styling */
.approach-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.approach-card p:last-child {
    margin-bottom: 0;
}

/* ================= TRUST SECTION ================= */
.trust {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: radial-gradient(circle at top, #1a1f4abd, #050510a4 70%);
}

/* Starry Background */
.trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.25;
    z-index: 0;
}

.trust .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

/* Section Title */
.trust .section-title {
    font-size: 46px;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #f8f5ef;
}

/* Golden Underline */
.title-underline {
    width: 80px;
    height: 3px;
    margin: 12px auto 50px;
    background: linear-gradient(90deg, transparent, #facc15, transparent);
    border-radius: 10px;
}

/* Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Glassmorphism Cards */
.trust-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
    height: 100%;
}

/* Golden Glow Border */
.trust-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        120deg,
        transparent,
        #facc15,
        #f59e0b,
        transparent
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s;
}

.trust-card:hover::after {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.15);
}

/* Icons */
.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.4);
    color: #facc15;
}

.trust-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

/* Card Headings */
.trust-card h3 {
    font-size: 22px;
    font-family: "Playfair Display", serif;
    color: #facc15;
    margin-bottom: 15px;
}

/* Card Text */
.trust-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}


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

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

    .trust {
        padding: 100px 20px;
    }

    .trust .section-title {
        font-size: 38px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .trust-card {
        padding: 35px 25px;
    }
}


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

    .trust {
        padding: 80px 16px;
    }

    .trust .section-title {
        font-size: 32px;
    }

    .title-underline {
        margin-bottom: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .trust-card h3 {
        font-size: 20px;
    }

    .trust-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
    }

    .trust-icon svg {
        width: 26px;
        height: 26px;
    }
}


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

    .trust {
        padding: 70px 14px;
    }

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

    .trust-card {
        padding: 26px 18px;
    }

    .trust-card h3 {
        font-size: 18px;
    }

    .trust-card p {
        font-size: 13.5px;
    }

    .trust-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .trust-icon svg {
        width: 24px;
        height: 24px;
    }
}