* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

.sop-section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

h1 span {
    color: #2563eb;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #64748b;
    font-size: 16px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.card-no {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.blue { background: #2563eb; }
.green { background: #22c55e; }
.purple { background: #a855f7; }
.orange { background: #f97316; }

.card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

ul {
    list-style: none;
}

ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 14px;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease;
}

.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }
.delay-3 { transition-delay: .6s; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #ffffff;
}

.standards-section {
    padding: 80px 20px;
}

.standards-wrapper {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #eef7ff, #f5fbff);
    border: 1px solid #bfdbfe;
    border-radius: 22px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.left h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.left p {
    color: #475569;
    font-size: 15px;
    max-width: 500px;
    margin-bottom: 28px;
}

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

.stat-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.stat-card h3 {
    color: #2563eb;
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 13px;
    color: #64748b;
}

.right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 14px;
}

.check {
    color: #22c55e;
    font-size: 18px;
}

.info-card ul {
    list-style: disc;
    padding-left: 20px;
}

.info-card li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease;
}

.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }

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


 