* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #188F8B;
    --primary-dark: #147773;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #2d3436;
    --yellow: #D4AA3A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;

}

/* Header & Navigation */
header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
}

/* When scrolled - solid background */
header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
  
}

.nav-logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    font-size: larger;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--white);
    border-bottom: 2px solid var(--white);
    opacity: 0.9;
}

header.scrolled .nav-links a {
    color: var(--dark);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

header.scrolled .mobile-menu span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    min-height: 150vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    max-width: 100%;
}

.hero-image img {
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.ios-img {
    height: 420px;
}

.android-img {
    height: 380px;
}

.download-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0px;
    animation: fadeInUp 1.6s ease;
    position: relative;
    z-index: 5;
}

.download-section a {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;

}

.download-section img:hover {
    transform:  scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: 0.8s;
}

.download-section img {
    object-fit: contain;
    display: block;
    cursor: pointer;
}


.android-sticker {
    max-height: 200px;
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ios-sticker {
    max-height: 350px;
    max-width: 650px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.notify-section {
    display: flex;
    gap: 4rem; 
    animation: fadeInUp 1.4s ease;
    margin-top: 40px;
}

.notify-section div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.notify-section img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.notify-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.floating-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    width: 230px;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    width: 230px;
    text-align: center;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image {
        gap: 1.5rem;
    }
    
    .hero-image img {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
        min-height: 450px;
    }
    
    .hero-image img {
       width: auto;
        height: 450px !important; /* Increased from 280px */
        max-height: 450px;
        max-width: 100%;
    }
    
    .notify-section {
        gap: 2rem;
        justify-content: center;
    }
    .ios-img {
        height: 450px !important;
    }
    
    .android-img {
        height: 420px !important;
    }
    .download-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        height: 400px !important; 
        max-height: 400px;
    }
    
    .ios-img {
        height: 400px !important;
    }
    
    .android-img {
        height: 380px !important;
    }
    .download-section {
        display: none;
    }
}

/* Prayer Times Section */
.section {
    padding: 3rem 0;
}

.prayer-times-section {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.prayer-times-widget {
    background: transparent;
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.location-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    min-width: 250px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    z-index: 1;
}

.location-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236c757d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.location-select:focus {
    outline: none;
    border-color: var(--primary);
}

.location-select option {
    padding: 0.5rem;
}

.search-btn {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 143, 139, 0.3);
}

.current-info {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
}

.info-text {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.prayer-times-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.prayer-card {
    background: transparent;
    padding: 1.8rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: 0px 0px 40px rgba(24, 143, 139, 0.15);
    height: 350px;
}

.prayer-card:hover {
    transform: translateY(-8px);
}

.prayer-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    margin-top: 0.8rem;
}

.prayer-emoji img{
    width: 50px;
}

.prayer-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.prayer-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}
/* Current Prayer Styling */
.prayer-card.current-prayer {
    background: var(--yellow);
    border: none;
    box-shadow: 0 8px 30px rgba(212, 170, 58, 0.25);
    transform: scale(1.08);
}

.prayer-card.current-prayer:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 170, 58, 0.3);
}

.prayer-card.current-prayer .prayer-name {
    color: var(--dark);
    font-weight: 700;
}

.prayer-card.current-prayer .prayer-time {
    color: var(--dark);
    font-weight: 700;
}

.prayer-card.current-prayer .prayer-emoji img {
    filter: var(--dark);
}

.now-indicator {
    /* display: inline-block; */
    padding: 4px 20px;
    margin-top: 1px;
    background: var(--dark);
    color: var(--yellow);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prayer-card.current-prayer .prayer-time {
    display: inline-block;
}

.current-countdown {
  margin-top: 7px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--dark);
  text-align: center;
  font-weight: 700;
}
/* Next Prayer Styling */
.next-prayer {
    background: var(--primary);
    color: var(--white);
    border: 3px solid var(--primary);
    border-radius: 25px;
    padding: 2.5rem 1.5rem 2rem;
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(24, 143, 139, 0.35);
}

.next-prayer:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 50px rgba(24, 143, 139, 0.4);
}

.next-prayer .prayer-name,
.next-prayer .prayer-time {
    color: var(--white);
}


.next-label {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: -10px;
}

/* .countdown {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
     margin-top: 0px;
    font-size: small; 
} */

/* Responsive for Prayer Times */
@media (max-width: 1024px) {
    .prayer-times-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .next-prayer {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .prayer-times-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .next-prayer {
        grid-column: span 1;
        transform: scale(1.02);
    }
    
    .next-prayer:hover {
        transform: scale(1.04) translateY(-5px);
    }
    
    .prayer-times-widget {
        padding: 1.5rem;
    }
    
    .search-input-wrapper {
        min-width: 100%;
    }
    
    .search-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .prayer-times-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .next-prayer {
        grid-column: span 1;
    }

    .prayer-name {
        font-size: 1.1rem;
        margin-bottom: 0.0rem;
    }

    .prayer-time {
        font-size: 1.1rem;
    }
    
    .prayer-card {
        padding: 1.5rem 1rem;
        height: 305px;
    }

    .prayer-emoji img{
        width: 40px;
    }

    .prayer-emoji {
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .next-prayer {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .countdown {
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        background: rgba(255, 255, 255, 0.25);
        border-radius: 20px;
        padding: 5px 15px;
        /* display: inline-block; */
        margin-top: 20px;
        font-size: small;
    }
}


/* Features Section */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(24, 143, 139, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 143, 139, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-icon img{
    width: 50px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-content .grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal grids in a row */
    gap: 20px;
}

.footer-section img{
    height: 70px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        background: rgba(24, 143, 139, 0.9);
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        gap: 2rem;
        z-index: 999;
        box-shadow: none;
    }

    .nav-links.active {
        display: flex;
    }
    
    /* Mobile menu links should always be dark */
    .nav-links a {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: #e0e0e0;
    }

    .mobile-menu {
        display: flex;
        position: relative;
        z-index: 1001; /* keep toggle icon on top */
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-image img {
        max-width: 250px;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .notify-section {
        flex-direction: flex;
        gap: 3rem;
        margin-top: 2rem;
    
    }

    .notify-section div {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .prayer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .footer-content .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section img {
        height: 50px;
    }
    
}



.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.privacy-container-header {
    text-align: center;
    padding: 1rem 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.privacy-container-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.last-updated {
    font-size: 0.95rem;
    opacity: 0.9;
    color: var(--white);
}

.privacy-content {
    background: var(--white);
    padding: 3rem;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 120px;
}

.privacy-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.8;
}

.privacy-content ul,
.privacy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-info {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info h2 {
    border-bottom: none;
    margin-top: 0;
}

.back-home {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 143, 139, 0.3);
}

/* Footer styling for privacy page */
.policy-footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .privacy-container-header {
        padding: 2rem 20px;
    }

    .privacy-container-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0px; 
}

section {
    scroll-margin-top: 0px; 
}

#home,
#prayer-times,
#features,
#about,
#contact {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    section {
        scroll-margin-top: 80px;
    }
    
    #home,
    #prayer-times,
    #features,
    #about,
    #contact {
        scroll-margin-top: 80px;
    }
}