/* ================= FLOATING BOOKS (CLEAN \|/ VERSION) ================= */

.floating-books {
    position: relative;
    width: 100%;
    height: 450px;
}

/* COMMON BOOK STYLE */
.floating-books .book {
    position: absolute;
    bottom: 0;
    width: 280px;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transform-origin: bottom center;
}

/* ================= BOOK POSITIONS ================= */

/* CENTER BOOK ( | ) – FLOATS UP & DOWN */
.book-2 {
    left: 50%;
    transform: translateX(-50%);
    animation: float-center 4s ease-in-out infinite;
    z-index: 3;
}

/* LEFT BOOK ( \ ) – SUBTLE MOVE TOWARDS CENTER */
.book-1 {
    left: 12%;
    transform: rotate(-15deg);
    animation: move-left 4s ease-in-out infinite alternate;
    z-index: 1;
}

/* RIGHT BOOK ( / ) – SUBTLE MOVE TOWARDS CENTER */
.book-3 {
    right: 12%;
    transform: rotate(15deg);
    animation: move-right 4s ease-in-out infinite alternate;
    z-index: 1;
}

/* ================= ANIMATIONS ================= */

/* Center vertical float */
@keyframes float-center {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* Left book movement (HALF distance) */
@keyframes move-left {
    0% {
        left: 12%;
        transform: rotate(-15deg);
    }
    100% {
        left: 21%;
        transform: rotate(-8deg);
    }
}

/* Right book movement (HALF distance) */
@keyframes move-right {
    0% {
        right: 12%;
        transform: rotate(15deg);
    }
    100% {
        right: 21%;
        transform: rotate(8deg);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .floating-books .book {
        width: 200px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .floating-books .book {
        width: 150px;
        height: 225px;
    }
}

@media (max-width: 480px) {
    .floating-books .book {
        width: 100px;
        height: 150px;
    }
}




/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* POPUP WRAPPER */
.global-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

/* Overlay */
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* Popup Box */
.popup-box {
    position: relative;
    max-width: 420px;
    width: 90%;
    background: #fff;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 14px;
    padding: 25px;
    z-index: 1;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Content */
.popup-content h2 {
    margin-bottom: 5px;
}

.popup-content p {
    margin-bottom: 20px;
    font-size: 14px;he
}

/* Form */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form input,
.popup-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.popup-form button {
    padding: 12px;
    background: #f4c430;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}


:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --accent-color: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #e5f1fd;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}
.logo img {
  height: 50px;
  width: auto;
}

.footer-logo img {
    width: 138px!important;
    margin-bottom:15px;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: black!important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0.4rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
}

.nav-logo a {
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgb(255 255 255) 30%, rgb(226 232 240 / 70%) 100%), url(../images/herobg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}


.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 400px;
}


/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--background-light);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stats-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
}




/* ================= Footer  ================= */


/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 320px 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}


/* Style all social icons inside .social-links */
.social-links .social-link {
    display: inline-flex;          /* centers icon inside circle */
    justify-content: center;
    align-items: center;
    width: 40px;                   /* circle width */
    height: 40px;                  /* circle height */
    margin-right: 10px;            /* spacing between icons */
    border: 1px solid white;       /* 1px white border */
    border-radius: 50%;            /* makes it a circle */
    color: white;                  /* icon color */
    background-color: transparent; /* optional: can add color */
    font-size: 18px;               /* icon size */
    transition: all 0.3s ease;     /* smooth hover effect */
    text-decoration: none;         /* remove underline */
}

/* Hover effect (optional) */
.social-links .social-link:hover {
    background-color: #fff;        /* white background on hover */
    color: #000;                   /* icon color on hover */
    transform: scale(1.1);         /* slight zoom effect */
}



/* ================= VIDEO TESTIMONIALS SECTION ================= */

.video-testimonials {
    padding: 60px 0;
    background: #f9f9f9;
}

.video-testimonials .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stories-container {
    display: flex;
   
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 100%;
    box-sizing: border-box;
}

.story-card {
    width: 100%;
    height: 55%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: scale(1.03);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
}

.story-info {
    text-align: center;
    margin-top: 10px;
}

.story-name {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.story-book {
    font-size: 14px;
    color: #d76d4a;
    text-decoration: none;
    margin-bottom: 5px;
    display: inline-block;
}

.story-book:hover {
    text-decoration: underline;
}

.story-desc {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* ================= VIDEO TESTIMONIALS SECTION ================= */
.video-testimonials {
    padding: 60px 0;
    background: #f9f9f9;
}

.video-testimonials .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stories-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 100%;
    box-sizing: border-box;
}

.story-card {
    width: 100%;
    height: 55%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: scale(1.03);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add triangle using :after */
.story-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid #fff; /* triangle color */
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.story-info {
    text-align: center;
    margin-top: 10px;
}

.story-name {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.story-book {
    font-size: 14px;
    color: #d76d4a;
    text-decoration: none;
    margin-bottom: 5px;
    display: inline-block;
}

.story-book:hover {
    text-decoration: underline;
}

.story-desc {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.video-testimonials {
    padding: 60px 0;
    background: #f9f9f9;
}

.video-testimonials .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 calc(33.333% - 20px);
    
    box-sizing: border-box;
}

.story-card {
    width: 100%;
    height: 55%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
    transition: transform 0.3s;
}

.story-card:hover {
    transform: scale(1.03);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
}

.story-info {
    text-align: center;
    margin-top: 10px;
}

.story-name {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.story-book {
    font-size: 14px;
    color: #d76d4a;
    text-decoration: none;
    margin-bottom: 5px;
    display: inline-block;
}

.story-book:hover {
    text-decoration: underline;
}

.story-desc {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

/* Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
}

#modalVideo {
    width: 90%;
    height: auto;
    border-radius: 10px;
}



.story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add triangle using :after */
.story-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 15px solid #fff; /* triangle color */
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.close-btn {
    position: absolute;        /* position inside modal-content */
    top: 15px;                 /* distance from top */
    right: 60px;               /* distance from right */
    font-size: 40px;           /* make it big */
    font-weight: bold;         /* bold cross */
    color: #fff;               /* white color */
    text-shadow: 0 0 5px #000; /* subtle shadow for contrast */
    cursor: pointer;           /* show pointer on hover */
    z-index: 1000;             /* make sure it's on top */
    background: rgba(0,0,0,0.4); /* optional semi-transparent background */
    padding: 5px 10px;         /* padding for easier clicking */
    border-radius: 5px;        /* rounded edges */
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(255,255,255,0.2); /* hover effect */
    color: #ff0000;                      /* optional hover color */
}

 
/* Responsive */
@media (max-width: 1024px) {
    .story-wrapper {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .story-wrapper {
        flex: 1 1 50%;
    }

    .story-card {
        height: 460px;
    }
}



/* Desktop only styles */
@media (min-width: 1024px) {
    .video-testimonials {
        
        margin-bottom: -200px;
      
    }
    
    .asf-footer-columns {
    margin-top: 25px;
}
}











@media (max-width: 480px) {
  .hero-content {
    padding: 40px 20px;
   
}

.floating-books {
   
    height: 250px;
}
}



@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
   
}

.floating-books {
   
    height: 250px;
}
}



/* ================= ------------- ================= */


/* ================= ABOUT US PAGE ================= */


/* ================= ------------- ================= */


.page-header {
    position: relative;
    padding: 220px 0 140px 0;
    background: linear-gradient(135deg, #000000 0%, #000000 100% 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/book-publishers-patrickwhite.jpg') center/cover no-repeat; /* Background image */
    opacity: 0.5;                     /* Dark overlay effect */
    z-index: 0;                        /* Behind the content */
}

.page-header .page-header-content {
    position: relative;               /* Bring content above overlay */
    z-index: 1;
}


.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.about-content {
    padding: 80px 0;
    background: white;
}


.about-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

/* Vertical divider */
.about-stats::before {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    width: 1px;
    background: #e2e8f0; /* change to blue if needed */
    transform: translateX(-50%);
}

/* Horizontal divider */
.about-stats::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 50%;
    height: 1px;
    background: #e2e8f0;
    transform: translateY(-50%);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Merriweather', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}



.mission-vision {
    padding: 80px 0;
    background: var(--background-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.our-values {
    padding: 80px 0;
    background: white;
}

/*.values-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*    gap: 2rem;*/
/*}*/

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center !important;
}

.value-item {
    background: var(--background-light);
    padding: 2rem;
    width: calc(33% - 20px);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-section {
    padding: 80px 0;
    background: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 1.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose-about {
    padding: 80px 0;
    background: white;
}

.reasons-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reason-item {
    padding: 1.5rem;
    width: calc(33% - 20px);
    border-left: 4px solid var(--primary-color);
    background: var(--background-light);
    border-radius: 0 8px 8px 0;
}

.reason-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Responsive: 2 items per row on small screens */
@media (max-width: 768px) {
    .value-item {
        width: calc(50% - 20px);
    }
    
    .reason-item {
    width: calc(50% - 20px);
}
}





