html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.content-grow {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    background: white;
    color: #222;
    padding: 16px;
    text-align: center;
    border-top: 1px solid #eee;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}


.temple-about {
    padding: 20px 20px;
    background: #f7f7f7;
     /* background: linear-gradient(
        180deg,
        #f9f9f9 0%,
        #f3f3f3 100%
    ); */
}

.activities-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.activities-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.activities-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}
.activities-block h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.activities-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #333;
}
@media (max-width: 768px) {
    #mainTempleImg {
        height: 300px;
    }

    .about-portal {
        padding: 30px 20px;
    }

    .about-portal h2 {
        font-size: 1.75rem;
    }

    .about-portal p {
        font-size: 1rem;
    }

    .explore-section {
        padding: 30px 20px;
    }

    .explore-section h2 {
        font-size: 1.6rem;
    }

    .explore-grid {
        gap: 15px;
    }

    .explore-grid>div {
        padding: 15px;
    }

    .nav-arrow {
        font-size: 2rem;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}

@media (max-width: 480px) {
    #mainTempleImg {
        height: 200px;
    }

    .about-portal {
        padding: 20px 15px;
    }

    .about-portal h2 {
        font-size: 1.5rem;
    }

    .about-portal p {
        font-size: 0.95rem;
    }

    .explore-section {
        padding: 20px 15px;
    }

    .explore-section h2 {
        font-size: 1.35rem;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .explore-grid>div {
        padding: 10px;
    }

    .nav-arrow {
        font-size: 1.5rem;
    }

    .dot {
        height: 8px;
        width: 8px;
    }
}