/* General & Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.main-header {
    background: linear-gradient(90deg, #e4582f 0%, #ff8347 100%); /* Orange Gradient */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #ffd700; /* Gold accent */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2a5298 0%, #4facfe 100%); /* Blue Gradient */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Call Now Button (Hero) */
.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #2ecc71 0%, #27ae60 100%); /* Green Gradient */
    color: #fff;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.call-now-btn i {
    font-size: 22px;
}

.call-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.call-now-btn:hover::before {
    width: 250%;
    height: 250%;
}

.call-now-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(46, 204, 113, 0.6);
}

/* Support Categories Section */
.support-categories-section {
    padding: 60px 0;
    background-color: #fefefe;
    text-align: center;
}

.support-categories-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #e4582f; /* Orange accent */
    position: relative;
    display: inline-block;
}

.support-categories-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e4582f 0%, #ff8347 100%);
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default; 
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    background: linear-gradient(45deg, #2a5298 0%, #4facfe 100%); /* Blue Gradient for icons */
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.category-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.5);
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    z-index: 1;
}

.category-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px; 
    flex-grow: 1;
    z-index: 1;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(45deg, #e4582f 0%, #ff8347 100%); /* Orange Gradient for buttons */
    color: #fff;
    box-shadow: 0 4px 10px rgba(228, 88, 47, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-btn i {
    font-size: 18px;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.category-btn:hover::before {
    width: 200%;
    height: 200%;
}

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(228, 88, 47, 0.5);
}


/* Pledge Section (Now full-width block) */
.pledge-section {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.pledge-section .container {
    display: flex;
    justify-content: center;
}

.pledge-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.pledge-block h4 {
    font-size: 16px;
    color: #fff;
    background-color: #3f60a6; /* Blue Header */
    text-align: center;
    padding: 10px 0;
    margin: -20px -20px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.pledge-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.guarantee-badge {
    background-color: #3f60a6;
    color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    flex-shrink: 0;
}

.pledge-points {
    text-align: left;
    max-width: 400px;
}

.pledge-points p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 5px;
}

.point .icon {
    font-size: 20px;
    color: #2ecc71;
    font-weight: bold;
}


/* Footer & Disclaimer */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-call-number {
    font-size: 22px;
    font-weight: 700;
    color: #ffd700; /* Gold color for high visibility */
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-call-number:hover {
    color: #fff;
}

.footer-call-number i {
    font-size: 24px;
}

.ads-disclaimer {
    font-size: 12px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    /* ... (rest of media queries remain the same for responsiveness) ... */
    .pledge-content {
        flex-direction: column;
        gap: 20px;
    }
    .pledge-points {
        text-align: center;
    }
    .point {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* ... (rest of media queries remain the same for responsiveness) ... */
    .footer-call-number {
        font-size: 18px;
        flex-direction: column;
        gap: 5px;
    }
}