
/* =========================
   ABOUT LIBRARY
========================== */
/* ==========================
   OUR STORY
========================== */

.our-story-section {
    padding: 80px 0;
    background: #fff;
}

.story-tag {
    display: inline-block;
    background: #eef5ff;
    color: #4a76c7;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 25px;
}

.story-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 60px;
}

.story-content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 80px;
}

/* Left Side */

.story-left {
    display: flex;
    gap: 40px;
}

.story-graphic {
    position: relative;
    min-width: 120px;
}

.dot-purple,
.dot-blue,
.dot-lavender {
    position: absolute;
    border-radius: 50%;
}

.dot-purple {
    width: 14px;
    height: 14px;
    background: #be3b87;
    top: 20px;
    left: 0;
}

.dot-blue {
    width: 12px;
    height: 12px;
    background: #37a6d8;
    top: -15px;
    left: 130px;
}

.dot-lavender {
    width: 16px;
    height: 16px;
    background: #b4a3ea;
    top: -40px;
    left: 300px;
}

.graphic-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin-top: 40px;
}

.circle-pink {
    width: 32px;
    height: 32px;
    background: #c23a8c;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 18px;
}

.circle-yellow {
    width: 80px;
    height: 40px;
    background: #f5b600;
    border-radius: 0 0 80px 80px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.circle-pattern {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 20px;
    background:
        repeating-linear-gradient(
            90deg,
            #59c3e6 0,
            #59c3e6 2px,
            transparent 2px,
            transparent 4px
        );
    border: 2px solid #59c3e6;
}

.story-text p {
    color: #555;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 12px;
}

/* Right Side */

.story-item {
    margin-bottom: 45px;
}

.story-item h4 {
    font-size: 20px;
    font-weight: 500;
    color: #080808e1;
    margin-bottom: 0px;
}

.story-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.facts-section {
    margin: 50px 0;
    background: #fff;
}

.facts-wrapper {
    display: grid;
    grid-template-columns: 4fr 1fr;
}



.facts-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.facts-heading span {
    color: #22a6f2;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.facts-heading h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.facts-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: #222;
    margin-bottom: 18px;
}

.facts-divider {
    margin-bottom: 20px;
}

.facts-content p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin: 0;
}

.facts-metric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.facts-metric h2 {
    font-size: 45px;
    font-weight: 700;
    color: #6c5ac7;
    margin-bottom: 10px;
    line-height: 1;
}

.facts-metric span {
    font-size: 16px;
    color: #222;
}



/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1200px) {

    .story-title {
        font-size: 28px;
    }

    .story-content {
        gap: 50px;
    }
    
    .facts-heading h2 {
        font-size: 44px;
    }

    .facts-heading span {
        font-size: 28px;
    }

    .facts-subtitle {
        font-size: 24px;
    }

    .facts-metric h2 {
        font-size: 36px;
    }
}

@media (max-width:991px) {

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-left {
        flex-direction: column;
    }

    .story-title {
        font-size: 28px;
    }
     .facts-wrapper {
        grid-template-columns: 1fr;
    }

    .facts-content {
        border-right: none;
        border-bottom: 1px solid #2ea4ff;
    }

    .facts-metric {
        padding: 40px 20px;
    }

    .facts-heading h2 {
        font-size: 38px;
    }

    .facts-subtitle {
        font-size: 18px;
    }
}

@media (max-width:767px) {

   

    .story-item h4 {
        font-size: 18px;
    }
    .facts-section {
       margin: 40px 0;
    }

    .facts-content {
        padding: 25px;
    }

    .facts-heading {
        flex-wrap: wrap;
    }

    .facts-heading h2 {
        font-size: 32px;
    }

    .facts-heading span {
        font-size: 24px;
    }

    .facts-subtitle {
        font-size: 16px;
    }

    .facts-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .facts-metric h2 {
        font-size: 28px;
    }

    .facts-metric span {
        font-size: 14px;
    }
}

@media (max-width:545px) {

    .our-story-section {
        padding: 60px 0;
    }

    .story-title {
        font-size: 24px;
    }

    .story-text p,
    .story-item p {
        font-size: 14px;
    }
    .facts-content {
        padding: 20px;
    }

    .facts-heading h2 {
        font-size: 28px;
    }

    .facts-heading span {
        font-size: 20px;
    }

    .facts-subtitle {
        font-size: 16px;
    }

    .facts-metric h2 {
        font-size: 14px;
    }
   
}

@media (max-width:320px) {

    .story-title {
        font-size: 20px;
    }

    .story-item h4 {
        font-size: 16px;
    }
    .facts-heading h2 {
        font-size: 22px;
    }

    .facts-heading span {
        font-size: 16px;
    }

    .facts-subtitle {
        font-size: 16px;
    }

    .facts-content p {
        font-size: 13px;
    }

    .facts-metric h2 {
        font-size: 12px;
    }

    .facts-metric span {
        font-size: 12px;
    }
}

/* =========================
   STATS BAR
========================== */

.library-stats-bar {
    background: #0d0d0d;
    padding: 28px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    color: #7ff07f;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item span {
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
}

/* ==========================
   MISSION SECTION
========================== */

.mission-section {
    padding: 80px 0;
    background: #f8f6f1;
}

.mission-title {
    font-size: 38px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
    line-height: 1.2;
}

.mission-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4f4f4f;
    margin-bottom: 20px;
}

.belief-card {
    background: #ede5d6;
    border-radius: 8px;
    padding: 35px 40px;
}

.belief-icon {
    margin-bottom: 15px;
}

.belief-icon i {
    font-size: 26px;
    color: #2d2d2d;
}

.belief-card h4 {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.belief-card ul {
    margin: 0;
    padding-left: 20px;
}

.belief-card li {
    font-size: 15px;
    line-height: 1.5;
    color: #4f4f4f;
    margin-bottom: 5px;
}


/* ==========================
   1200
========================== */

@media (max-width:1200px){
   
    
    .mission-title {
        font-size: 32px;
    }

    .belief-card h4 {
        font-size: 24px;
    }
}

/* ==========================
   991
========================== */

@media (max-width:991px){

   
     .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
        .mission-section {
        padding: 70px 0;
    }

    .mission-title {
        font-size: 26px;
    }

    .belief-card {
        padding: 30px;
    }
}

/* ==========================
   767
========================== */

@media (max-width:767px){

  
     .about-left h2 {
        font-size: 18px;
    }

    .stat-item h3 {
        font-size: 28px;
    }
       .mission-section {
        padding: 60px 0;
    }

    .mission-title {
        font-size: 20px;
    }

    .mission-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .belief-card h4 {
        font-size: 22px;
    }

    .belief-card li {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ==========================
   545
========================== */

@media (max-width:545px){

  
  
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .about-library {
        padding: 40px 0;
    }
        .mission-title {
        font-size: 24px;
    }

    .mission-description {
        font-size: 14px;
    }

    .belief-card {
        padding: 20px;
    }

    .belief-card h4 {
        font-size: 20px;
    }
}

/* ==========================
   320
========================== */

@media (max-width:320px){

  
 .about-left h2 {
        font-size: 16px;
    }

    .stat-item h3 {
        font-size: 24px;
    }
      

    .mission-description,
    .belief-card li {
        font-size: 13px;
    }

    .belief-card h4 {
        font-size: 18px;
    }

    .belief-icon i {
        font-size: 22px;
    }
}