* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}



.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
    /* padding: 15px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80%;
    font-size: 20px;
    color: #4fc3f7;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.clarity {
    font-size: 28px;
    font-weight: bold;
    color: #666;
    letter-spacing: 2px;
}

.tagline {
    font-size: 12px;
    color: #999;
    margin-top: -2px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #666;
}

.phone,
.email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone i,
.email i {
    color: #999;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #999;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4fc3f7;
}

.search-icon {
    color: #4fc3f7;
    font-size: 18px;
    cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 15px 0;
}

.menu-items li a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.menu-items li a:hover {
    color: #4fc3f7;
}

.menu-item li a {
    color: white;
}

.menu-items li.dropdown a i {
    font-size: 10px;
}

.menu-items .dropdown-menu {
    display: none;
    position: absolute;
    border-radius: 20px;
    background: #1483ae;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.menu-items .dropdown.open>.dropdown-menu {
    display: block;
}

.menu-items .dropdown {
    position: relative;
}

.menu-items .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.menu-items .dropdown-menu li a:hover {
    background: #17b9dd;
    border-radius: 10px;
}

/* Donate Button */
.btn-donate {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

.btn-donate i {
    color: #ff6b6b;
}

/* Hero Section */
.hero-section {
    background: url('../images/donat-bg.png') center center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #503444;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    padding-bottom: 50px;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    color: black;
}


.follow-locate-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

/* Follow Us Section */
.follow-us h2,
.locate-us h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 400;
    font-style: italic;
    position: relative;
}

.follow-us h2::after,
.locate-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #87ceeb 0%, #4a90e2 100%);
    border-radius: 2px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #26a5e4 100%);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #357abd;
}

/* Locate Us Section */
.locations {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.location-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.location-map iframe {
    display: block;
    border-radius: 10px;
}

.map-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-label {
    font-weight: 600;
    color: #333;
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}

.view-larger {
    color: #4a90e2;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s ease;
}

.view-larger:hover {
    color: #357abd;
    text-decoration: underline;
}

.location-details h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.location-details .address {
    color: #666;
    margin-bottom: 6px;
    font-size: 16px;
}

.location-details .phone {
    color: #4a90e2;
    font-weight: 500;
    margin-top: 10px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .follow-us {
        order: 2;
    }
    
    .locate-us {
        order: 1;
    }
}

@media (max-width: 768px) {
    .follow-locate-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
        gap: 40px;
    }
    
    .follow-us h2,
    .locate-us h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
    }
    
    .location-map iframe {
        width: 100%;
        height: 200px;
    }
    
    .social-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .location-item {
        padding: 20px 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .follow-us h2,
    .locate-us h2 {
        font-size: 24px;
    }
}


.donation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.donation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.donation-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #5d4e75;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.donation-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #87ceeb 0%, #4a90e2 100%);
    border-radius: 2px;
}

.donation-text {
    margin: 40px 0;
}

.donation-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
    text-align: justify;
}

.description {
    font-weight: 400;
}

.tax-info {
    font-weight: 400;
    background: #f8f9ff;
    padding: 20px;
    border-left: 4px solid #4a90e2;
    border-radius: 6px;
    margin-top: 30px;
}

.donation-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.donate-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

.donate-btn.primary {
    background: linear-gradient(135deg, #5d4e75 0%, #7b6b8f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(93, 78, 117, 0.3);
}

.donate-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 78, 117, 0.4);
}

.donate-btn.secondary {
    background: transparent;
    color: #5d4e75;
    border: 2px solid #5d4e75;
}

.donate-btn.secondary:hover {
    background: #5d4e75;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 78, 117, 0.3);
}

.donate-btn:active {
    transform: translateY(0);
}

/* Impact stats section (optional addition) */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e1e8ed;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #5d4e75;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .donation-content h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .donation-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .donation-text {
        margin: 30px 0;
    }
    
    .donation-text p {
        font-size: 15px;
        text-align: left;
    }
    
    .tax-info {
        padding: 15px;
        margin-top: 20px;
    }
    
    .donation-actions {
        justify-content: center;
        gap: 15px;
    }
    
    .donate-btn {
        flex: 1;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .donation-content h2 {
        font-size: 28px;
    }
    
    .donation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .donate-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .donation-text p {
        font-size: 14px;
    }
}

/* Enhanced styling for better visual appeal */
.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
    z-index: -1;
}

.donation-section {
    position: relative;
}

/* Optional: Add a subtle pattern overlay */
.donation-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(93, 78, 117, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}



.donation-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 400px;
            width: 100%;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .sg-qr-logo {
            background: #e91e63;
            color: white;
            padding: 8px 12px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 14px;
        }

        .version-info {
            font-size: 10px;
            color: #666;
            text-align: right;
        }

        .claritysg-title {
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .qr-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .qr-code {
            width: 250px;
            height: 250px;
            border: 2px solid #ddd;
            margin: 0 auto 15px;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .qr-placeholder {
            color: #999;
            font-size: 14px;
        }

        .scan-to-pay {
            background: linear-gradient(45deg, #e91e63, #ff4081);
            color: white;
            padding: 12px;
            text-align: center;
            font-weight: bold;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .payment-icon {
            width: 35px;
            height: 25px;
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #666;
        }

        .paynow-section {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .paynow-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .info-line {
            margin-bottom: 12px;
            color: #555;
            font-size: 14px;
        }

        .uen {
            font-weight: 600;
        }

        .donation-ref {
            color: #666;
        }

        .tax-info {
            color: #555;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .tax-request {
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .website-link {
            color: #2196F3;
            text-decoration: none;
            font-size: 14px;
        }

        .website-link:hover {
            text-decoration: underline;
        }

        /* QR Code Image Styling */
        .qr-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 4px;
        }



/* Footer */
.footer {
    background-color: #e7e7e7;
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Logo Section */
.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #4db8e8;
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Links Section */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4db8e8;
}

/* Location Sections */
.location-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.location-section p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Social Section */
.social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.phone {
    background-color: #4db8e8;
    color: white;
}

.social-icon.email {
    background-color: #4db8e8;
    color: white;
}

.social-icon.instagram {
    background-color: #4db8e8;
    color: white;
}

.social-icon.facebook {
    background-color: #4db8e8;
    color: white;
}

.social-icon.linkedin {
    background-color: #4db8e8;
    color: white;
}

.mailing-list-btn {
    background-color: #4db8e8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mailing-list-btn:hover {
    background-color: #3da3d3;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    color: #888;
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-bottom p {
    font-size: 0.85rem;
    text-align: center;
}

/* Donation Card Section Styling */
.donation-card-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}
.padding{
    padding: 60px 20px;
}
/* .donate-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
} */

.info-line h3{
    text-align: justify;
    font-size: 15px;
    line-height: 30px;
}

.donation-card {
    max-width: 400px;
    height: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Clickable Donation Card Link */
.donation-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.clickable-card:active {
    transform: translateY(-3px) !important;
}

/* Add visual indicator for clickable card */
.clickable-card::after {
    content: '🔗';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.clickable-card:hover::after {
    opacity: 1;
}