/* HERO-BANNER */

/* TAG */
.about-tag {
    font-size: 14px;
    color: #c89b6d;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LINE */
.about-tag .line {
    width: 24px;
    height: 2px;
    background: #c89b6d;
}

/* TITLE */
.about-title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.05;
    margin-top: 20px;
    font-family: F1;
}

/* COLORS */
.about-title .black {
    color: #000;
}

.about-title .yellow-a {
    color: #ffc107;
}

.about-title .brown-a {
    color: #a85b2d;
}

/* IMAGE */
.about-img {
    width: 100%;
    max-width: 450px;
    object-fit: contain;
}

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

    .about-title {
        font-size: 3rem;
        /* text-align: center; */
    }

    .about-img {
        margin-top: 30px;
    }
}

/* SAT-BAR [STYLE WRITTEN IN STYLE.CSS]*/

/* OUR STORY [STYLE WRITTEN IN STYLE.CSS]*/

/* WHY BLACK INK [STYLE WRITTEN IN STYLE.CSS]*/

/* ====================================================================== */

/* Standards & Credentials */

/* SECTION */
.standards-section {
    background: #0d0d0d;
    color: #fff;
}

/* LEFT SIDE */
.standards-left {
    border-right: 1px solid rgba(255,255,255,0.1);
}

/* TAG */
.section-tag {
    color: #c89b6d !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
}

.section-tag .line {
    width: 40px;
    height: 2px;
    background: #c89b6d;
}

/* TITLE */
.standards-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin: 20px 0;
    font-family: f1;
}

/* DESC */
.standards-desc {
    color: #ccc;
    line-height: 1.7;
    font-family: f2;
}

/* CARD */
.standard-card {
    padding: 40px;
    height: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
}

/* REMOVE BORDER RIGHT ON LAST COLUMN */
.col-md-6:nth-child(2n) .standard-card {
    border-right: none;
}

/* ICON */
.icon-box {
    width: 50px;
    height: 50px;
    background: #dfe6ee;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 20px;
}

/* SMALL TITLE */
.small-title {
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
    font-family: f2;
}

/* HEADING */
.standard-card h5 {
    color: #ff9f1c;
    margin: 10px 0;
    font-family: f3;
}

/* TEXT */
.standard-card p {
    color: #ccc;
    font-size: 14px;
    font-family: f2;
}

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

    .standards-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        /* text-align: center; */
    }

    .standards-title {
        font-size: 2rem;
    }

    .standard-card {
        border-right: none !important;
    }
}


/* ══════════════════════════════════════════
       OUR MISSION & OUR VISION
   ══════════════════════════════════════════ */
 .standfor-section {
     /* background: #F5F4F0; */
     padding: 40px 40px;
     margin-top: 40px;
 }

 .standfor-inner {
     max-width: 1280px;
     margin: 0 auto;
 }

 .standfor-h2 {
     font-family: "f1";
     font-size: 4rem;
     color: black;
     font-weight: 500;
     line-height: 1.15;
     letter-spacing: -0.5px;
     margin-bottom: 20px;
 }

 .standfor-lead {
     font-family: "f2";
     font-size: 18px;
     color: #444444;
     line-height: 1.75;
     max-width: 480px;
     margin-bottom: 60px;
 }

 /* Cards container — left card top-aligned, right card offset down */
 .standfor-cards {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px;
     align-items: start;
 }

 .standfor-card--light {
     margin-top: 300px;
 }

 .standfor-card {
     border-radius: 14px;
     padding: 44px 40px;
 }

 .standfor-card--dark {
     background: #335C67;
 }

 .standfor-card--light {
     background: #FFF3B0;
     /* border: 1px solid #e4e2dc; */
 }

 .standfor-card-tag {
     font-family: "f1";
     font-size: 16px;
     font-weight: 200;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     margin-bottom: 14px;
 }

 .standfor-card--dark .standfor-card-tag {
     color: white;
 }

 .standfor-card--light .standfor-card-tag {
     color: #335C67;
 }

 .standfor-card-h3 {
     font-family: "f3", serif;
     font-size: 20px;
     font-weight: 300;
     line-height: 1.5;
     margin-bottom: 20px;
 }

 .standfor-card--dark .standfor-card-h3 {
     color: #ffffff;
 }

 .standfor-card--light .standfor-card-h3 {
     color: #2C4A6E;
 }

 .standfor-card-copy {
     font-family: "f2", sans-serif;
     font-size: 18px;
     line-height: 1.5;
 }

 .standfor-card--dark .standfor-card-copy {
     color: rgba(255, 255, 255, 0.75);
 }

 .standfor-card--light .standfor-card-copy {
     color: #2C4A6E
 }

 @media (max-width: 768px) {
     .standfor-cards {
         grid-template-columns: 1fr;
     }

     .standfor-card--light {
         margin-top: 0;
     }

     .standfor-section {
         padding: 72px 24px;
     }
 }

 @media (max-width: 480px) {
     .standfor-section {
         padding: 56px 16px;
     }

     .standfor-card {
         padding: 32px 24px;
     }
 }

 /* ══════════════════════════════════════════
      WHAT WE STANDS FOR 
   ══════════════════════════════════════════ */

/* TAG */
.section-tag {
    font-size: 14px;
    color:black;
}

/* TITLE */
.principles-title {
    font-size: 4rem;
    font-weight: 500;
    font-family: F1;
}

/* DESC */
.principles-desc {
    font-size: 16px;
    color: black;
    line-height: 1.7;
    font-family: F2;
}

/* CARD BASE */
.principle-card {
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

/* ICON */
.icon-box {
    width: 50px;
    height: 50px;
    background: #dfe6ee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 22px;
}

/* TITLE */
.principle-card h5 {
    color: #2c3e90;
    margin-bottom: 10px;
    font-family: F3;
}

/* TEXT */
.principle-card p {
    font-size: 14px;
    color: black;
    font-family: F2;
}

/* COLORS */
.green-2 { background: #bfc8a4 !important; }
.light-green { background: #c9d1aa; }
.beige-2 { background: #e6dfbf !important; }
.sand { background: #e6d7b8; }
.peach { background: #e3cfc3; }
.grey { background: #cfcac2; }

.green{
    margin-left: 0px !important;
}
/* HOVER */
.principle-card:hover {
    transform: translateY(-5px);
}

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

    .principles-title {
        font-size: 2.2rem;
    }

    .principles-desc {
        margin-top: 15px;
    }
}

 /* START CONVERSATION  [style written by style.css] */
