/* Kosal Kreeda — modern sleek stylesheet */
:root{
    --accent: #FF3305;
    --accent-600: #E02C04;
    --bg: #FFF9F7;
    --card: #FFFFFF;
    --text: #0F1724;
    --muted: #6B7280;
    --glass: rgba(255,255,255,0.6);
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background:var(--bg); color:var(--text); line-height:1.5}
img{max-width:100%;height:auto;display:block}

/* Layout helpers */
.container{max-width:1100px;margin:0 auto;padding:0 1.25rem}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.site-header {
    box-shadow: 0 5px 17px rgba(0,0,0,0.08);
}

/* Header / Nav */
.site-header{background:var(--card);backdrop-filter: blur(6px);border-bottom:1px solid rgba(15,23,36,0.06);position:sticky;top:0;z-index:50}
.brand{font-weight:700;color:var(--text);text-decoration:none;font-size:1.8rem;font-family:'Harlekin', sans-serif}
.brand span{color:var(--accent)}

.site-nav ul{display:flex;gap:1.25rem;list-style:none;align-items:center}
.site-nav a{display:inline-block;padding:0.65rem 0.9rem;border-radius:8px;text-decoration:none;color:var(--muted);font-weight:600;font-size:1.1rem}
.site-nav a:hover{color:#fff;background:var(--accent);box-shadow:0 6px 18px rgba(255,51,5,0.12)}
.site-nav a.active{background:var(--accent);color:#fff}

.nav-toggle{display:none;background:transparent;border:0;font-size:1.25rem;cursor:pointer}

/* Hero */
.hero{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:2.5rem;padding:4.25rem 0}
.hero-left img{border-radius:14px;box-shadow:0 14px 40px rgba(2,6,23,0.06)}
.hero-right h1{font-size:2.25rem;margin-bottom:1rem}
.hero-right p{color:var(--muted);margin-bottom:1.5rem}
.hero-actions .btn{
    margin-right:0.75rem;
}
.hero-stats {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-stats li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stats li::before {
    content: "•";
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 0;
}

/* program slider */
.program-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.program-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s ease;
}

.program-card {
    min-width: 260px;
    background: #fff;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.8s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Buttons */
/*.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
}

.prev-btn { left: -18px; }
.next-btn { right: -18px; }*/

/* Buttons — moved inside */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;

    /* slight opacity for cleaner UI */
    opacity: 0.95;
}

/* ✅ Move buttons 20px inward */
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Optional hover effect */
.slider-btn:hover {
    background: #f0f0f0;
    opacity: 1;
}


.photo-strip {
    margin: 4rem 0;
    overflow: hidden;
    background: #f4f4f4;
    padding: 1.5rem 0; /* slightly more padding */
}

.strip-inner {
    display: flex;
    gap: 1rem;

    /* ✅ Slower loop — was 30s, now 45s */
    animation: scroll-strip 45s linear infinite;
}

.strip-inner img {
    height: 220px;  /* ✅ increased from 160px */
    width: auto;
    border-radius: 10px; /* slightly smoother corners */
    flex-shrink: 0;
    object-fit: cover;
}

@keyframes scroll-strip {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* Buttons */
.btn{display:inline-block;padding:0.8rem 1.2rem;border-radius:10px;text-decoration:none;font-weight:700}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{
    background:var(--accent-600);
    transform:translateY(-3px);
}
.btn-ghost{background:transparent;border:1px solid rgba(15,23,36,0.06);color:var(--text)}

/* Quote bar */
.quote-bar {
    background: #fff; /* ✅ muted off-white */
    padding: 2rem 0;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent); /* ✅ moved to right for right-aligned layout */
    /*text-align: left;  ✅ right align */
    /*border-left: none;  remove old left border */
    /*box-shadow: 0 5px 17px rgba(0,0,0,0.08);*/
}

.quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    max-width: 800px;
    margin-left: auto; /* ✅ keep layout tight to the right */
    font-family: Garamond, Georgia, "Times New Roman", Times, serif;
}

.quote span {
    display: block;
    color: var(--accent);
    font-weight: 700;
    margin-top: 0.5rem;
}
/*
.achievers {
    padding: 60px 0;
    text-align: center;
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.achiever-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform .3s;
}

.achiever-card:hover {
    transform: translateY(-6px);
}

.achiever-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.achiever-card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

.achiever-card p {
    color: #555;
    margin-top: 5px;
    font-size: 0.95rem;
}*/

/* WHY IT MATTERS SECTION */
.why-matters {
    padding: 70px 0;
    text-align: center;
}

.why-matters .section-title {
    margin-bottom: 35px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.why-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.why-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* ✅ EVENTS WITH IMAGES */
.events {
    margin-top: 60px;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.event-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.event-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.event-content {
    padding: 16px 18px 20px;
}

.event-date {
    font-weight: 600;
    color: #B3282A;
    margin-bottom: 6px;
}

.event-title {
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.event-desc {
    font-size: 0.95rem;
    color: #555;
}



/* Features */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-bottom:3rem}
.feature{background:var(--card);padding:1.25rem;border-radius:12px;box-shadow:0 8px 30px rgba(2,6,23,0.04)}
.feature h3{margin-bottom:0.5rem}
.feature p{color:var(--muted)}

/* Content & Cards */
.content{padding:2.5rem 0}
.team-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.card{background:var(--card);padding:1rem;border-radius:12px;box-shadow:0 8px 30px rgba(2,6,23,0.04)}
.card img{border-radius:8px;margin-bottom:0.75rem}

/* Gallery grid */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.gallery-grid img{border-radius:12px;box-shadow:0 12px 30px rgba(2,6,23,0.06);transition:transform .25s ease,box-shadow .25s ease}
.gallery-grid img:hover{transform:translateY(-6px);box-shadow:0 24px 60px rgba(2,6,23,0.08)}

/* Contact form */
/*.contact-form{max-width:640px;margin-top:1rem}
.contact-form label{display:block;margin-bottom:0.5rem;font-weight:600}
.contact-form input,.contact-form textarea{width:100%;padding:0.9rem;border-radius:10px;border:1px solid rgba(2,6,23,0.06);margin-bottom:1rem}
.contact-form input:focus,.contact-form textarea:focus{outline:none;box-shadow:0 6px 20px rgba(255,51,5,0.08);border-color:var(--accent)}
.form-message{margin-top:0.75rem;font-weight:600}*/

/* Footer */
.site-footer{
    background:var(--card);
    padding:2rem 0 1.2rem;
    border-top:1px solid rgba(2,6,23,0.06);
}
.footer-brand{font-size:1.25rem;font-weight:700;font-family:'Harlekin', sans-serif}
.footer-brand span{
    color:var(--accent);
}
.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:1.5rem;
    margin-bottom:1rem;
}
/*.footer-brand{
  font-size:1.25rem;
  font-weight:700;
}
.footer-brand span{
  color:var(--accent);
}*/
.footer-contact{
    color:var(--muted);
    font-size:0.95rem;
    margin-top:0.3rem;
}
.footer-social a{
    text-decoration:none;
    margin-right:1rem;
    color:var(--muted);
    font-weight:600;
}
.footer-social a:hover{
    color:var(--accent);
}
.footer-bottom{
    text-align:center;
    color:var(--muted);
    font-size:0.9rem;
}
/* Responsive */
@media (max-width:980px){
    .hero{grid-template-columns:1fr;gap:2rem;padding:3rem 0}
    .features{grid-template-columns:repeat(2,1fr)}
    .team-cards{grid-template-columns:1fr}
}

@media (max-width:700px){
    .nav-toggle{display:block}
    .site-nav{position:fixed;top:68px;right:16px;background:var(--card);padding:1rem;border-radius:12px;box-shadow:0 12px 40px rgba(2,6,23,0.08);display:none}
    .site-nav.open{display:block}
    .site-nav ul{flex-direction:column;gap:0.5rem}
    .header-inner{gap:0.5rem}
    .container{padding:0 1rem}
    .features{grid-template-columns:1fr}
}



/* -------------------------------------------
   ABOUT PAGE – ENHANCED DESIGN
------------------------------------------- */

/* Accent color for Kosal Kreeda */
/*:root {
    --accent: #d64541;  deep red sports tone — you can change 
    --accent-light: #ffe6e5;
}*/


/* Section Divider Line */
.about-section,
.about-hero {
    position: relative;
}

/*.about-section::after,
.about-hero::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 2rem auto 0;
    border-radius: 2px;
}*/


/* Hero Section */
.about-hero {
    padding: 5rem 0 4rem;
}

.about-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    animation: fadeInUp 0.7s ease forwards;
}

.about-text {
    flex: 1 1 420px;
}

.about-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.about-text h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--accent);
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.about-text p {
    margin-top: 1.4rem;
    line-height: 1.75;
    font-size: 1.1rem;
    color: #333;
}

.about-image {
    flex: 1 1 380px;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}


/* Section Styling */
.about-section {
    padding: 4rem 0;
    animation: fadeIn 0.8s ease forwards;
}

.about-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.about-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--accent);
    margin: 0.6rem auto;
    border-radius: 3px;
}

.about-section h3 {
    font-size: 1.4rem;
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--accent);
}

.about-section p {
    line-height: 1.75;
    font-size: 1.05rem;
    color: #444;
    max-width: 850px;
    margin: 0 auto 1.2rem;
}


/* Bullet Lists */
.about-list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.about-list li {
    line-height: 1.7;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    position: relative;
    padding-left: 10px;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: -15px;
    top: 0;
    font-size: 1.3rem;
    color: var(--accent);
}


/* Impact Stats – Card Grid */
.about-stats {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 850px;
    display: grid;
    gap: 1rem;
}

.about-stats li {
    padding: 1.4rem 1.6rem;
    background: var(--accent-light);
    border-left: 5px solid var(--accent);
    border-radius: 8px;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease forwards;
}

.about-stats strong {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/*.about-section:nth-of-type(odd) {
    background: #fafafa;
    border-radius: 12px;
    padding: 4rem 2rem;
}

.about-section:nth-of-type(even) {
    background: #fff;
    padding: 4rem 2rem;
}*/

/*.about-section:nth-of-type(odd) {
    background: linear-gradient(to bottom right, #ffffff, #fafafa);
    padding: 4rem 2rem;
    border-radius: 12px;
}

.about-section:nth-of-type(even) {
    background: linear-gradient(to bottom right, #fafafa, #ffffff);
    padding: 4rem 2rem;
    border-radius: 12px;
}*/

.story {
    background: #fff;
    padding: 3.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    margin-bottom: 2.5rem;
}

/*.story-orange {
    background: rgba(255, 165, 0, 0.18);  soft translucent orange 
    padding: 3.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    margin-bottom: 2.5rem;*/
/*}*/

/*.story-orange {
    background: rgba(255, 140, 0, 0.22);  translucent orange 
    backdrop-filter: blur(10px);          main glass effect 
    -webkit-backdrop-filter: blur(10px);  Safari support 

    padding: 3.5rem 2rem;
    border-radius: 16px;

    border: 1px solid rgba(255, 140, 0, 0.35);  subtle frosted border 
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.25), 
                0 4px 10px rgba(0,0,0,0.08);     soft glow + depth 

    margin-bottom: 2.5rem;
}*/



/* Goals Section – Vertical Timeline Style */
.goals-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding-left: 25px;
}

.goals-container::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(214,69,65,0.25);
    border-radius: 4px;
}

.goal-block {
    position: relative;
    padding: 1.6rem 1rem 1.6rem 1.4rem;
}

.goal-block::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 18px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
}

.goal-block h3 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.goal-block ul {
    padding-left: 1.2rem;
}

.goal-block p,
.goal-block li {
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

/* -------------------------------------------
   TEAM SLIDER – GLASS CARD DESIGN
------------------------------------------- */

.team-section {
    text-align: center;
}

.team-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
}

/* Slider layout */
.team-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.45s ease;
}

/* Glass Card Effect */
.team-glass-card {
    min-width: 260px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.25);
    padding: 1.8rem 1.2rem;
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.12),
        inset 0 0 20px rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.3s ease;
    text-align: center;
}

.team-glass-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.35);
}

/* Images */
.team-glass-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
    /*box-shadow: 0 6px 18px rgba(0,0,0,0.15);*/
}

/* Text */
.team-glass-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.4rem;
}

.team-glass-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Slider Buttons */
.team-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.75);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(6px);
}

.team-btn:hover {
    background: rgba(255,255,255,0.9);
}

.team-prev { left: 10px; }
.team-next { right: 10px; }

@media (max-width: 768px) {
    .team-glass-card {
        min-width: 200px;
    }
    .team-glass-card img {
        height: 180px;
    }
}

/* ✅ ACHIEVERS SLIDER 
.achiever-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.achiever-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.achiever-card {
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    border: 1px solid #ddd;
}

.achiever-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.achiever-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #B3282A;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.prev-achiever { left: -10px; }
.next-achiever { right: -10px; }*/

/* ✅ ACHIEVERS OPTION B — Horizontal Cards */
/*.achievers-list-b {
    display: grid;
    gap: 24px;
    margin-top: 25px;
}

.achiever-card-b {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.achiever-card-b:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.achiever-card-b img {
    width: 95px;
    height: 95px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.achiever-info-b h3 {
    font-size: 1.2rem;
    margin: 0 0 4px;
}

.achiever-role {
    font-weight: 600;
    color: #B3282A;
    margin-bottom: 6px;
}

.achiever-desc {
    color: #555;
    font-size: 0.95rem;
}

 ✅ Mobile Responsive 
@media (max-width: 600px) {
    .achiever-card-b {
        flex-direction: column;
        text-align: center;
    }

    .achiever-card-b img {
        width: 120px;
        height: 120px;
    }
}*/

/* ✅ Slider wrapper */
.achiever-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* ✅ Slider row */
.achiever-slider-a {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

/* ✅ Achiever card */
.achiever-card-a {
    background: #ffffff;
    padding: 22px 18px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    min-width: 220px;              /* ✅ makes slider work */
}

/* Hover effect */
.achiever-card-a:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

/* ✅ PERFECTLY CENTERED IMAGE */
.achiever-card-a img {
    display: block;                /* ✅ ensures centering */
    margin: 0 auto;                /* ✅ centers image horizontally */
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}

/* Text styling */
.achiever-card-a h3 {
    margin: 6px 0 6px;
    font-size: 1.15rem;
}

.achiever-role-a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #B3282A;
}

/* ✅ Slider Buttons */
.achiever-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #B3282A;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: 0.3s ease;
}

.achiever-btn:hover {
    background: #9e2225;
}

.prev-achiever { left: -10px; }
.next-achiever { right: -10px; }

/* ✅ Mobile fix */
@media (max-width: 600px) {
    .prev-achiever { left: -2px; }
    .next-achiever { right: -2px; }
}



/* -------------------------------------------
   TEAM SLIDER
------------------------------------------- */

.team-section {
    text-align: center;
}

.team-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
}

.team-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease;
}

.team-card {
    min-width: 220px;
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Buttons */
.team-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 5;
    opacity: 0.9;
}

.team-btn:hover {
    opacity: 1;
}

.team-prev { left: 10px; }
.team-next { right: 10px; }

.team-slider-wrapper {
    overflow: hidden;
    padding: 0 20px; /* ✅ brings cards slightly inward so no empty space appears */
}

.team-slider {
    padding-right: 20px; /* ✅ ensures last card never shows empty space */
}



/* Subtle Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .about-text h1 {
        font-size: 2.2rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-list {
        padding-left: 1.2rem;
    }

    .about-image img {
        margin-top: 1rem;
    }
}

/* -------------------------------------------
   VISION & MISSION – CARD STYLE
------------------------------------------- */

.vm-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.vm-card {
    background: #fff;
    padding: 2rem 1.8rem;
    border-radius: 14px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.06),
        0 3px 10px rgba(0,0,0,0.04);
    border-top: 5px solid var(--accent);
    transition: 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 14px 32px rgba(0,0,0,0.1),
        0 5px 14px rgba(0,0,0,0.06);
}

.vm-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-align: left;
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}


/* Responsive */
@media (max-width: 768px) {
    .vm-card {
        padding: 1.7rem 1.4rem;
    }
}



/*-----------------------------------------
            CONTACT US PAGE
-----------------------------------------*/
/* Contact Info + Map Section */
.contact-info-section {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: var(--card);
    border: 1px solid rgba(2,6,23,0.06);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.06);
}

.contact-card h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    opacity: 0.8;
}

.contact-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.contact-social a {
    color: var(--muted);
    font-weight: 600;
}

.contact-social a:hover {
    color: var(--accent);
}

.map-container {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2,6,23,0.06);
}


/* Responsive */
@media (max-width: 900px) {
    .contact-info-section {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 260px;
    }
}
