/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FDF7F0;  /* Soft Beige */
    color: #2C2C2C;             /* Dark Charcoal */
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .nav-links a {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: #F28C38;  /* Orange */
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #08c0a8;  /* Cyan */
    padding: 16px 32px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon i {
    color: #F28C38;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0A2E3F;
}

.mobile-menu-btn:hover {
    color: #0A2E3F;
}

.donate-nav-btn {
    background-color: #F28C38;
    padding: 8px 20px;
    border-radius: 40px;
    color: white !important;
    font-weight: 600;
    transition: background-color 0.3s;
}

.donate-nav-btn:hover {
    background-color: #E07A20;
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION - PURE BACKGROUND IMAGE (NO TEXT) ===== */
.hero-full-image {
    background-image: url('images/home.png');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    height: 85vh;
    width: 100%;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .hero-full-image {
        height: 50vh;
        background-position: center 30%;
    }
}

/* Dark text version since no overlay */
.hero-overlay-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 32px;
    backdrop-filter: blur(2px);
}

.hero-badge {
    display: inline-block;
    background: #08c0a8;  /* Cyan */
    color: #1A1A1A;  /* Black text */
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.hero-title .highlight {
    color: #F28C38;  /* Orange */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    color: #2C2C2C;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-full-image {
        min-height: 80vh;
        background-position: center 30%;
    }
    
    .hero-overlay-content {
        margin: 20px;
        padding: 32px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

.btn {
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #F28C38;  /* Orange */
    color: #1A1A1A;  /* Black text */
}

.btn-primary:hover {
    background-color: #E07A20;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1A1A1A;
    border: 2px solid #08c0a8;  /* Cyan border */
}

.btn-secondary:hover {
    background-color: #08c0a8;
    color: #1A1A1A;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 32px;
    border-radius: 20px;
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F28C38;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===== PROGRAMS TEASER ===== */
.programs-teaser {
    padding: 80px 0;
    background-color: #FDF7F0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: #08c0a810;
    color: #F28C38;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.section-title .highlight {
    color: #F28C38;  /* Orange */
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 24px;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #F28C38;  /* Orange titles */
}

.program-description {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.program-tags span {
    background: #FDF7F0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #F28C38;  /* Orange titles */
}

.program-link {
    color: #08c0a8;  /* Cyan links */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.program-link:hover {
    gap: 10px;
    color: #067A68;  /* Darker cyan */
}

/* ===== COUNT-UP IMPACT SECTION ===== */
.countup-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #08c0a8 0%, #067A68 100%);  /* Cyan gradient */
    position: relative;
    overflow: hidden;
}

/* Background pattern (subtle) */
.countup-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.countup-header {
    text-align: center;
    margin-bottom: 48px;
}

.countup-header .section-tag {
    background: rgba(255,255,255,0.15);
    color: white;
}

.countup-header .section-title {
    color: white;  /* White text on cyan background */
}

.countup-header .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.countup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.countup-card {
    background: #067A68;  /* Darker cyan */
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.countup-card .countup-label,
.countup-card .countup-comparison {
    color: white;  /* White text on dark cyan */
}

.countup-card .countup-number {
    color: #F28C38;  /* Orange numbers pop */
}

.countup-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #F28C38;
}

.countup-icon {
    font-size: 2.5rem;
    color: #F28C38;
    margin-bottom: 16px;
}

.countup-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.countup-number {
    font-size: 3.5rem;
    font-weight: 800;
    color:  #F28C38;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.countup-plus,
.countup-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #F28C38;
}

.countup-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-top: 12px;
    margin-bottom: 8px;
}

.countup-comparison {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.countup-comparison i {
    color: #F28C38;
}

/* Pulse animation for completed cards */
.countup-card.pulse {
    animation: cardPulse 0.5s ease-in-out;
}

@keyframes cardPulse {
    0% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255,255,255,0.2);
    }
    50% {
        transform: scale(1.02);
        background: rgba(242, 140, 56, 0.2);
        border-color: #F28C38;
        box-shadow: 0 0 20px rgba(242, 140, 56, 0.3);
    }
    100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255,255,255,0.2);
    }
}

/* Quote section */
.countup-quote {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 32px;
    border-left: 4px solid #F28C38;
    animation: fadeInUp 0.6s ease-out;
}

.quote-icon {
    font-size: 2rem;
    color: #F28C38;
    opacity: 0.5;
    margin-bottom: 16px;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 0.9rem;
    color: #F28C38;
    font-weight: 500;
}

/* Share button */
.countup-share {
    text-align: center;
    margin-top: 32px;
}

.btn-share-impact {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-share-impact:hover {
    background: #F28C38;
    border-color: #F28C38;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .countup-impact {
        padding: 60px 20px;
    }
    
    .countup-number {
        font-size: 2.5rem;
    }
    
    .countup-plus,
    .countup-percent {
        font-size: 1.5rem;
    }
    
    .countup-card {
        padding: 24px 16px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .countup-comparison {
        font-size: 0.7rem;
    }
}

.fundraising-progress {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.progress-bar-container {
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-fill {
    background: #F28C38;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    transition: width 0.5s ease;
}

.btn-donate-mini {
    background: #F28C38;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-donate-mini:hover {
    background: #E07A20;
}

/* ===== LATEST MEDIA ===== */
.latest-media {
    padding: 80px 0;
    background: #FDF7F0;
}

.media-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.media-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.media-image {
    background: linear-gradient(135deg, #1D4A5F, #144050);
    padding: 40px;
    text-align: center;
    font-size: 3rem;
    color: #F28C38;
}

.media-content {
    padding: 24px;
}

.media-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #F28C38;
    margin-bottom: 8px;
    display: block;
}

.media-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #F28C38;
}

.media-content p {
    color: #666;
    margin-bottom: 16px;
}

.play-btn {
    background: #1D4A5F;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #F28C38;
    color: #F28C38;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #F28C38;
    color: white;
}

.text-center {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #F28C38, #E07A20);
    padding: 70px 0;
    text-align: center;
    color: #1A1A1A;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content .highlight {
    color: #1D4A5F;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

.cta-section .btn-primary {
    background: #08c0a8;  /* Cyan button on orange */
    color: #1A1A1A;
}

.cta-section .btn-primary:hover {
    background: #067A68;
}

.cta-section .btn-secondary {
    border: 2px solid white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #F28C38;
}

/* ===== FOOTER ===== */
.footer {
    background:#056a5d;  /* Dark teal (matches well with cyan theme) */
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.footer-col a:hover {
    color: #F28C38;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.3rem;
}

.donate-bank-highlight {
    color: #F28C38;
    font-weight: 600;
    margin-top: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1D4A5F;
        padding: 20px;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 12px 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .impact-wrapper {
        padding: 24px;
    }
    
    .impact-stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 8px;
    }
}
/* ===== STATS SECTION (Separate from Hero) ===== */
.stats-section {
    background: linear-gradient(135deg, #1D4A5F 0%, #144050 100%);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    border-radius: 40px 40px 0 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-section .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 24px;
    text-align: center;
    min-width: 180px;
    transition: transform 0.3s;
}

.stats-section .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stats-section .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #F28C38;
}

.stats-section .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

@media (max-width: 768px) {
    .stats-section {
        margin-top: -20px;
        padding: 40px 20px;
    }
    
    .stats-section .stat-card {
        min-width: 140px;
        padding: 16px 20px;
    }
    
    .stats-section .stat-number {
        font-size: 2rem;
    }
}
/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(242, 140, 56, 0.85), rgba(224, 122, 32, 0.85)), url('images/img14.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROGRAMS FULL LIST ===== */
.programs-full {
    padding: 80px 0;
    background-color: #FDF7F0;
}

.program-full-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

.program-full-item.reverse {
    direction: rtl;
}

.program-full-item.reverse .program-full-content {
    direction: ltr;
}

.program-full-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.program-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    transition: transform 0.3s;
}

.program-full-image:hover img {
    transform: scale(1.03);
}

.program-full-content {
    direction: ltr;
}

.program-full-badge {
    display: inline-block;
    background: #F28C38;
    color: white;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.program-full-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #F28C38;
    margin-bottom: 16px;
}

.program-full-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.program-full-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #F28C38;
    margin-bottom: 12px;
}

.program-full-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.program-full-features li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-full-features li i {
    color: #F28C38;
    font-size: 0.9rem;
}

.program-full-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.program-full-tags span {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #F28C38;
}

/* ===== WHY WE'RE DIFFERENT ===== */
.why-different {
    padding: 80px 0;
    background: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.different-card {
    text-align: center;
    padding: 32px 24px;
    background: #FDF7F0;
    border-radius: 24px;
    transition: all 0.3s;
}

.different-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.different-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F28C38;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
}

.different-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F28C38;
    margin-bottom: 12px;
}

.different-card p {
    color: #666;
    line-height: 1.6;
    line-height: 1.6;
}

/* Mobile Responsive for What We Do */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .program-full-item {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .program-full-item.reverse {
        direction: ltr;
    }
    
    .program-full-title {
        font-size: 1.6rem;
    }
    
    .program-full-image img {
        min-height: 220px;
    }
    
    .different-grid {
        gap: 20px;
    }
}
/* ===== ABOUT SECTION ON HOMEPAGE ===== */
.about-section-home {
    padding: 80px 0;
    background: white;
}

.about-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card-home {
    text-align: center;
    padding: 40px 28px;
    background: #FDF7F0;
    border-radius: 24px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.about-card-home:hover {
    transform: translateY(-8px);
    border-bottom-color: #F28C38;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-icon-home {
    font-size: 3rem;
    color: #F28C38;
    margin-bottom: 24px;
}

.about-card-home h3 {
    font-size: 1.6rem;
    color: #F28C38;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.about-card-home p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile responsive for about section */
@media (max-width: 768px) {
    .about-section-home {
        padding: 60px 20px;
    }
    
    .about-card-home {
        padding: 28px 20px;
    }
    
    .about-card-home h3 {
        font-size: 1.3rem;
    }
    
    .about-icon-home {
        font-size: 2.5rem;
    }
}
/* Hero Section - Mobile Friendly */
.hero-full-image {
    width: 100%;
    min-height: 300px; /* Smaller height on mobile */
     background-image: url('images/home.png');
    background-size: contain; /* Shows FULL image without cropping */
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #f0f0f0; /* Background color while image loads */
}

/* Desktop screens */
@media (min-width: 768px) {
    .hero-full-image {
        min-height: 500px; /* Taller on desktop */
        background-size: cover; /* Cover full width on desktop */
        background-position: center;
    }
}