/*BODY */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.8;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Reset & Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.8;
}














  /*HEADER & BANNER */

header { 
    background: #fff; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
    width: 100%;
    overflow: hidden;
}

.main-banner { 
    width: 100%; 
    /* Gunakan tinggi tetap supaya gambar tak telampau besar */
    height: 460px; 
    /* Object-fit memastikan gambar tak penyek (stretch) */
    object-fit: cover; 
    /* Memastikan fokus gambar di tengah */
    object-position: center; 
    display: block; 
}

/* Supaya nampak cantik di phone, kita kecilkan sikit tinggi banner */
@media (max-width: 768px) {
    .main-banner {
        height: 220px;
    }
}














/*NAVIGATION */

nav { background-color: #0f172a; position: sticky; top: 0; z-index: 1000; }
nav ul { list-style: none; display: flex; justify-content: center; max-width: 1100px; margin: 0 auto; }
nav ul li a {
    color: #f1f5f9; text-decoration: none; padding: 22px 25px;
    display: block; font-weight: 500; text-transform: uppercase;
    font-size: 13px; letter-spacing: 1px; transition: 0.3s;
}
nav ul li a:hover, .active { background-color: #38bdf8; color: white; }













/* MAIN CONTAINER*/

.main-container { display: flex; max-width: 1200px; margin: 40px auto; gap: 30px; padding: 0 20px; }

@media (max-width: 992px) {
    .main-container { flex-direction: column; }
}

.content-area {
    flex: 2; background: #fff; padding: 45px;
    border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

/* Titles */
.section-title { font-size: 32px; color: #0f172a; margin-bottom: 20px; }
.sub-section-title { color:#0f172a; border-bottom: 3px solid #38bdf8; display: inline-block; margin-top: 40px; padding-bottom: 5px; }

/* Images in Content */
.content-image-wrapper { margin: 30px 0; border-radius: 15px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.content-img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.stat-card {
    background: #f8fafc; padding: 25px; border-radius: 12px;
    border-bottom: 4px solid #38bdf8; text-align: center; transition: 0.3s;
}
.stat-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.stat-card h3 { font-size: 28px; color: #0f172a; }
.stat-card p { font-size: 11px; font-weight: 600; color: #64748b; text-transform: uppercase; }








/* Shelter Cards */
.shelter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 25px; }
.card {
    background: #fff; padding: 25px; border-radius: 15px;
    border: 1px solid #e2e8f0; border-top: 4px solid #38bdf8; transition: 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 20px rgba(0,0,0,0.08); }
.card-tag { font-size: 10px; font-weight: 700; color: #38bdf8; text-transform: uppercase; margin-bottom: 5px; }
.card h4 { color: #0f172a; margin-bottom: 10px; }




















/*SIDE BAR */

aside { flex: 1; position: sticky; top: 100px; align-self: flex-start; }
.sidebar-box { background: #fff; border-radius: 15px; margin-bottom: 25px; border: 1px solid #e2e8f0; overflow: hidden; }
.side-header { background: #f8fafc; padding: 15px 20px; font-weight: 700; font-size: 13px; color: #0f172a; border-bottom: 1px solid #e2e8f0; text-transform: uppercase; }
.side-content { padding: 20px; }

/* Sidebar Urgent Style */
.sidebar-box.urgent { border: 2px solid #ef4444; }
.sidebar-box.urgent .side-header { background: #ef4444; color: #fff; border: none; }
.emergency-dot { height: 8px; width: 8px; background: #fff; border-radius: 50%; display: inline-block; margin-right: 8px; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.urgent-desc { font-size: 12px; color: #64748b; margin-bottom: 15px; }
.urgent-list { list-style: none; }
.list-flex { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 5px; }
.bar-bg { background: #f1f5f9; height: 8px; border-radius: 10px; margin-bottom: 15px; }
.bar-fill { background: #ef4444; height: 100%; border-radius: 10px; }
.btn-urgent {
    display: block; text-align: center; background: #0f172a; color: #fff;
    padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 12px; transition: 0.3s;
}
.btn-urgent:hover { background: #ef4444; }














/*HELPERS AND FOOTER */

.separator { border: 0; border-top: 1px solid #f1f5f9; margin: 40px 0; }
.cta-box { margin-top: 40px; text-align: center; padding: 30px; background: #f8fafc; border-radius: 15px; }
.btn-main { display: inline-block; margin-top: 15px; padding: 12px 25px; background: #0f172a; color: white; text-decoration: none; border-radius: 8px; font-weight: 600; transition: 0.3s; }
.btn-main:hover { background: #38bdf8; transform: scale(1.05); }

footer { background: #0f172a; color: #94a3b8; padding: 60px 20px; text-align: center; margin-top: 80px; }
.disclaimer { max-width: 800px; margin: 0 auto; font-size: 12px; border-top: 1px solid #1e293b; padding-top: 30px; }




















/*ABOUT PAGE STYLE */

.story-img-wrapper { 
    margin-top: 20px; 
    border-radius: 12px; 
    overflow: hidden; 
}

.story-img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
}

.mission-vision-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-top: 40px; 
}

.mv-card { 
    padding: 30px; 
    border-radius: 15px; 
    text-align: center; 
    color: white; 
    transition: 0.3s; 
}

.mv-card.vision { 
    background: #0f172a; 
}

.mv-card.mission { 
    background: #38bdf8; 
}

.mv-card:hover { 
    transform: translateY(-5px); 
}

.mv-icon { 
    font-size: 30px; 
    display: block; 
    margin-bottom: 10px; 
}

.values-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    margin-top: 20px; 
}

.value-item {
    background: #f1f5f9; 
    padding: 15px; 
    border-radius: 10px;
    text-align: center; 
    font-weight: 600; 
    font-size: 13px; 
    color: #0f172a;
}

/* Org Chart */
.chart-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-top: 30px; 
}

.profile-card {
    background: #fff; 
    border: 1px solid #e2e8f0; 
    padding: 15px 25px;
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    width: 280px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); 
    transition: 0.3s;
}

.profile-card:hover { 
    border-color: #38bdf8; 
    box-shadow: 0 8px 15px rgba(0,0,0,0.05); 
}

.profile-img { 
    width: 50px; 
    height: 50px; 
    background: #f1f5f9; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
}

.profile-info h4 { 
    font-size: 14px; 
    color: #0f172a; 
}

.profile-info p { 
    font-size: 11px; 
    color: #64748b; 
    font-weight: 600; 
}

.leader { 
    border-top: 4px solid #0f172a; 
}

.director { 
    border-top: 4px solid #38bdf8; 
}

.chart-line { 
    width: 2px; 
    height: 30px; 
    background: #e2e8f0; 
    margin: 0 auto; 
}

.staff-row { 
    display: flex; 
    gap: 20px; 
    margin-top: 10px; 
}

.post-date { 
    font-size: 11px; 
    color: #94a3b8; 
    margin-top: 10px; 
}

.side-text-bold { 
    font-weight: 600; 
    font-size: 13px; 
    color: #1e293b; 
}





















/*VOICE OF SUCCESS */
.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.story-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #38bdf8;
}

.story-date {
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.story-headline {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.story-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-story-link {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: inline-block;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    transition: color 0.2s;
}

.read-story-link:hover {
    color: #38bdf8;
}

/* Mobile Responsive for Stories */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .staff-row {
        flex-direction: column;
        align-items: center;
    }
}















/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.8;
}

/* --- HEADER & NAVIGATION --- */
header { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.05); width: 100%; overflow: hidden; }

.main-banner { 
    width: 100%; height: 460px; object-fit: cover; object-position: center; display: block; 
}

@media (max-width: 768px) { .main-banner { height: 220px; } }

nav { background-color: #0f172a; position: sticky; top: 0; z-index: 1000; }
nav ul { list-style: none; display: flex; justify-content: center; max-width: 1100px; margin: 0 auto; }
nav ul li a {
    color: #f1f5f9; text-decoration: none; padding: 22px 25px;
    display: block; font-weight: 500; text-transform: uppercase;
    font-size: 13px; letter-spacing: 1px; transition: 0.3s;
}
nav ul li a:hover, .active { background-color: #38bdf8; color: white; }

/* --- LAYOUT COMPONENTS --- */
.main-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.content-area {
    background: #fff; padding: 45px; border-radius: 20px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); margin-bottom: 30px;
}

.section-title { font-size: 32px; color: #0f172a; margin-bottom: 20px; }
.sub-section-title { 
    color:#0f172a; border-bottom: 3px solid #38bdf8; 
    display: inline-block; padding-bottom: 5px; 
}












/*ABOUT PAGE SPECIFIC */

.story-img-wrapper { margin-top: 20px; border-radius: 12px; overflow: hidden; }
.story-img { width: 100%; height: 350px; object-fit: cover; }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.mv-card { padding: 40px; border-radius: 15px; text-align: center; color: white; transition: 0.3s; }
.mv-card.vision { background: #0f172a; }
.mv-card.mission { background: #38bdf8; }
.mv-card .mv-icon { font-size: 40px; display: block; margin-bottom: 15px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; }
.value-item {
    background: #f1f5f9; padding: 20px; border-radius: 10px;
    text-align: center; font-weight: 600; font-size: 14px; color: #0f172a;
    border-bottom: 3px solid #38bdf8;
}

















/*ORG CHART*/
.chart-container { display: flex; flex-direction: column; align-items: center; padding: 20px 0; }
.profile-card {
    background: #fff; border: 1px solid #e2e8f0; padding: 15px 20px;
    border-radius: 12px; display: flex; align-items: center; gap: 15px;
    width: 260px; box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.profile-card.leader { border-top: 4px solid #0f172a; }
.profile-card.director { border-top: 4px solid #38bdf8; }
.profile-img { 
    width: 50px; height: 50px; background: #f1f5f9; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 20px; 
}
.profile-info h4 { font-size: 14px; color: #0f172a; }
.profile-info p { font-size: 11px; color: #64748b; font-weight: 700; text-transform: uppercase; }

.chart-line { width: 2px; height: 30px; background: #cbd5e1; }
.staff-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; }

















/*VOLUNTEER SECTION*/
.cta-volunteer {
    margin-top: 60px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('https://images.unsplash.com/photo-1524062734483-8ecb754b2086?auto=format&fit=crop&w=1200&q=80');
    background-size: cover; background-position: center; background-attachment: fixed;
    padding: 80px 40px; border-radius: 20px; text-align: center; color: white;
}

.volunteer-badge {
    display: inline-block; background: #38bdf8; padding: 5px 15px;
    border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 20px;
}

.volunteer-features { display: flex; justify-content: center; gap: 20px; margin: 30px 0; flex-wrap: wrap; }
.v-item { background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 10px; font-size: 14px; }

.btn-volunteer {
    display: inline-block; padding: 16px 45px; background: #38bdf8; color: white;
    text-decoration: none; border-radius: 50px; font-weight: 700; 
    transition: 0.3s; box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}
.btn-volunteer:hover { background: #fff; color: #0f172a; transform: translateY(-3px); }

/* --- FOOTER --- */
footer { background: #0f172a; color: #94a3b8; padding: 60px 20px; text-align: center; margin-top: 80px; }
.disclaimer { max-width: 800px; margin: 0 auto; font-size: 12px; border-top: 1px solid #1e293b; padding-top: 30px; }












/*ACTIVITIES PAGE SPECIFIC */
#activities-page .activity-section {
    margin: 30px 0;
}

#activities-page .activity-flex {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

#activities-page .activity-text { flex: 1; }
#activities-page .activity-image { flex: 1; }

#activities-page .work-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

#activities-page .work-img:hover { transform: scale(1.03); }

#activities-page .activity-list {
    margin-top: 15px;
    list-style: none;
}

#activities-page .activity-list li {
    background: #f1f5f9;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-left: 4px solid #38bdf8;
    border-radius: 4px;
    font-size: 14px;
}

/* Photo Gallery Grid */
#activities-page .activity-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); }

.img-cap {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    font-size: 11px;
    padding: 8px;
    text-align: center;
    transform: translateY(100%);
    transition: 0.3s;
}

.gallery-item:hover .img-cap { transform: translateY(0); }

/* Sidebar Extra Style */
.side-sub { font-size: 11px; color: #64748b; }
.mini-sep { border: 0; border-top: 1px solid #e2e8f0; margin: 10px 0; }

/* Responsive for Gallery */
@media (max-width: 768px) {
    #activities-page .activity-flex { flex-direction: column; }
    #activities-page .activity-gallery { grid-template-columns: repeat(2, 1fr); }
    #activities-page .invert { flex-direction: column-reverse; }
}



















/*SUPPORT PAGE SPECIFIC */

#support-page .section-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

#support-page .support-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
}

#support-page .input-box {
    display: flex;
    flex-direction: column;
}

#support-page .input-box label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

#support-page .input-box input, 
#support-page .input-box select, 
#support-page .input-box textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
}

#support-page .full-width { grid-column: span 2; }

#support-page .btn-main.volunteer {
    background: #38bdf8;
    grid-column: span 2;
}

/* Goods Grid Styling */
#support-page .goods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.goods-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.goods-card:hover { border-color: #38bdf8; transform: translateY(-5px); }

.goods-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.goods-card h4 { font-size: 14px; margin-bottom: 5px; }
.goods-card p { font-size: 11px; color: #64748b; line-height: 1.4; }

@media (max-width: 768px) {
    #support-page .support-form-grid { grid-template-columns: 1fr; }
    #support-page .full-width, #support-page .btn-main.volunteer { grid-column: span 1; }
    #support-page .goods-grid { grid-template-columns: 1fr; }
}











/*CONTACT PAGE*/

/* Location Sections (Image + Text) */
.location-section {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
}
.location-section.invert { flex-direction: row-reverse; background: #fff; border: 1px solid #e2e8f0; }

.loc-image { flex: 1; }
.shelter-preview-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.loc-details { flex: 1; }
.loc-label { 
    background: #38bdf8; color: white; padding: 4px 12px; 
    border-radius: 20px; font-size: 11px; font-weight: 700; 
}
.loc-details h4 { margin: 15px 0 10px; font-size: 22px; color: #0f172a; }
.loc-details p { font-size: 14px; color: #475569; margin-bottom: 5px; }
.map-btn {
    display: inline-block; margin-top: 15px; color: #38bdf8; 
    text-decoration: none; font-weight: 700; font-size: 13px;
}

/* Contact Form Modern */
.contact-form-modern { margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.f-group { margin-bottom: 15px; }
.f-group label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.f-group input, .f-group select, .f-group textarea {
    width: 100%; padding: 15px; border: 1px solid #cbd5e1; border-radius: 10px; font-family: inherit;
}
.btn-send {
    width: 100%; padding: 18px; background: #0f172a; color: white; 
    border: none; border-radius: 10px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-send:hover { background: #38bdf8; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(56,189,248,0.2); }

/* FAQ Grid Full */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 25px; }
.faq-item { background: #fff; border-bottom: 3px solid #38bdf8; padding: 20px; border-radius: 10px; }
.faq-item h5 { color: #0f172a; margin-bottom: 8px; font-size: 15px; }
.faq-item p { font-size: 13px; color: #64748b; line-height: 1.5; }

@media (max-width: 992px) {
    .location-section, .location-section.invert, .form-grid, .faq-grid {
        flex-direction: column; grid-template-columns: 1fr;
    }
}


















/*STUDENT PROFILE*/

#profile-page .resume-container {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.resume-sidebar {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.image-frame {
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.faid-photo-pro {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* UiTM Logo Styling */
.university-logo-box {
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.uitm-logo-img {
    width: 100px; /* Sized to fit perfectly */
    height: auto;
    margin-bottom: 10px;
}

.univ-name {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.resume-main { 
    flex: 2; 
}

.resume-sub { 
    font-size: 20px; 
    color: #0f172a; 
    margin-bottom: 25px; 
    border-bottom: 2px solid #0f172a; 
    display: inline-block; 
}

.data-sheet { 
    background: #fff; 
}

.data-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.data-row .label {
    flex: 1;
    font-weight: 700;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
}

.data-row .value {
    flex: 2;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.highlight-url { 
    color: #38bdf8; 
    font-weight: 700; 
}

.no-border { 
    border-bottom: none; 
}

/* Statement Box Styling */
.project-statement p {
    font-size: 14px;
    color: #334155;
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
    border-right: 5px solid #0f172a;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive for Mobile Devices */
@media (max-width: 768px) {
    #profile-page .resume-container { 
        flex-direction: column; 
    }
    .resume-sidebar { 
        max-width: 100%; 
        margin: 0 auto; 
    }
}














  