/* =========================================
   GLOBAL RESET
========================================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f5ef;
    color: #333;
}



/* =========================================
   COMMON PARAGRAPH
========================================= */

p{
    font-size: 17px;

    line-height: 1.9;

    color: #444;

    margin-bottom: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    p{
        font-size: 16px;
    }

}
a{
    text-decoration: none;
}

ul{
    list-style: none;
}


/* =========================================
   COMMON SECTION SPACING
========================================= */

section{
    padding: 50px 0;
}

@media(max-width:768px){
    section{
    padding: 30px 0;
    }
}




/* =========================================
   COMMON H1 TAG
========================================= */

h1{
    font-size: 36px;

    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 25px;
}

@media(max-width:768px){

    h1{
        font-size: 28px;
    }

}

@media(max-width:480px){

    h1{
        font-size: 24px;
    }

}


/* =========================================
   COMMON H2 TAG
========================================= */

h2{
    position: relative;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.3;

    color: #8b0000;

    
    margin-bottom: 35px;

    padding-bottom: 18px;
}

/* Decorative underline */

h2::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 90px;
    height: 5px;

    border-radius: 10px;

    background:
    linear-gradient(to right, #ff6600, #8b0000);
}

@media(max-width:768px){
    h2{
    font-size: 24px;

    margin-bottom: 28px;
    }
}

@media(max-width:480px) {
    h2{
    font-size: 22px;
    }
}


/* =========================================
   COMMON H3 TAG
========================================= */

h3{
    font-size: 24px;

    font-weight: 600;

    line-height: 1.4;

    color: #8b0000;

    margin-bottom: 14px;
}

@media(max-width:768px){

    h3{
        font-size: 22px;
    }

}

@media(max-width:480px){

    h3{
        font-size: 20px;
    }

}

/* =========================================
   COMMON H4 TAG
========================================= */

h4{
    font-size: 20px;

    font-weight: 600;

    line-height: 1.5;

    color: #000000;

    margin-bottom: 12px;
}

@media(max-width:768px){

    h4{
        font-size: 18px;
    }

}

@media(max-width:480px){

    h4{
        font-size: 16px;
    }

}




/* =========================================
   COMMON CONTAINER
========================================= */

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   COMMON HEADER
========================================= */

.site-header{
    background: #ffffff;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   LOGO
========================================= */

.logo{
    display: flex;
    align-items: center;
}

.logo a{
    display: flex;
    align-items: center;
}

.logo img{
    height: 50px;
    width: auto;
    display: block;
}

/* =========================================
   NAVIGATION MENU
========================================= */

.navbar nav{
    display: flex;
    align-items: center;
}

.navbar nav ul{
    display: flex;
    gap: 28px;
}

.navbar nav ul li a{
    color: #b30000;
    font-weight: 700;
    font-size: 17px;
    transition: 0.3s;
    padding: 8px 0;
}

.navbar nav ul li a:hover{
    color: #ff6600;
}

/* =========================================
   COMMON BUTTON
========================================= */

.btn{
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover{
    background: #d94f00;
}





/* =========================================
   COMMON HERO SECTION
========================================= */

.hero-section{
    position: relative;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 130px 0;

    overflow: hidden;
}

/* Dark Overlay */

.hero-section::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
    rgba(0,0,0,0.60);
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content{
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

/* =========================================
   HERO TITLE
========================================= */

.hero-section h1{
    color: #ffffff;

    margin-bottom: 25px;
}

/* =========================================
   HERO TEXT
========================================= */

.hero-section p{
    color: rgba(255,255,255,0.92);

    font-size: 22px;

    line-height: 1.9;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .hero-section{
        padding: 90px 0;
    }

    .hero-section p{
        font-size: 18px;
    }

}

@media(max-width:480px){

    .hero-section{
        padding: 70px 0;
    }

    .hero-section p{
        font-size: 16px;
    }

}





/* =========================================
   COMMON INTRO SECTION
========================================= */

/* =========================================
   COMMON CONTENT BOX
========================================= */

.content-box{
    background: #ffffff;

    padding: 45px;

    border-radius: 18px;

    border: 1px solid #f1e5d8;

    box-shadow:
    0 8px 30px rgba(0,0,0,0.06);
}

/* =========================================
   CONTENT TYPOGRAPHY
========================================= */

.content-box p:last-child{
    margin-bottom: 0;
}

/* =========================================
   HIGHLIGHT TITLE
========================================= */

.highlight-title{
    margin-top: 35px;
    margin-bottom: 20px;

    font-size: 22px;

    font-weight: 700;

    color: #8b0000;

    line-height: 1.5;
}


/* =========================================
   COMMON FEATURE BOXES
========================================= */

.feature-title{

    margin-top: 35px;
    margin-bottom: 20px;

    color: #8b0000;
}


/* =========================================
   FEATURE GRID
========================================= */

.feature-grid{
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;
}

/* =========================================
   FEATURE BOX
========================================= */

.feature-box{
    flex: 1 1 calc(50% - 20px);

    background:
    linear-gradient(135deg, #fff8f2, #ffffff);

    border-left: 5px solid #ff6600;

    padding: 22px 24px;

    border-radius: 14px;

    font-size: 18px;

    font-weight: 600;

    color: #333;

    line-height: 1.7;

    box-shadow:
    0 4px 15px rgba(0,0,0,0.06);

    transition: 0.3s;
}

.feature-box:hover{
    transform: translateY(-5px);

    box-shadow:
    0 8px 24px rgba(0,0,0,0.10);
}

/* =========================================
   GUIDE LINK
========================================= */

.guide-link{
    margin-top: 30px;

    font-size: 18px;

    font-weight: 500;

    color: #8b0000;

    line-height: 1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .intro-section{
        padding: 50px 0;
    }

    .content-box{
        padding: 30px;
    }

    .highlight-title{
        font-size: 20px;
    }

    .feature-box{
        flex: 1 1 100%;

        font-size: 17px;
    }

}

@media(max-width:480px){

    .content-box{
        padding: 25px;
    }

    .highlight-title{
        font-size: 19px;
    }

    .guide-link{
        font-size: 16px;
    }

}









/* =========================================
   COMMON TABLE SECTION
========================================= */

/* =========================================
   LIGHT BACKGROUND
========================================= */

.light-bg{
    background: #fff8f2;
}

/* =========================================
   TABLE WRAPPER
========================================= */

.table-wrapper{
    overflow-x: auto;

    border-radius: 18px;

    box-shadow:
    0 8px 30px rgba(0,0,0,0.06);
}

/* =========================================
   CUSTOM TABLE
========================================= */

.custom-table{
    width: 100%;

    border-collapse: collapse;

    background: #ffffff;

    overflow: hidden;
}

/* =========================================
   TABLE HEADER
========================================= */

.custom-table thead{
    background: #8b0000;
}

.custom-table th{
    color: #ffffff;

    padding: 20px;

    font-size: 17px;

    font-weight: 700;

    text-align: left;

    border: none;
}

/* =========================================
   TABLE BODY
========================================= */

.custom-table td{
    padding: 18px 20px;

    border-bottom: 1px solid #f1e5d8;

    font-size: 16px;

    line-height: 1.7;

    color: #444;
}

/* =========================================
   TABLE ROW
========================================= */

.custom-table tbody tr{
    transition: 0.3s;
}

.custom-table tbody tr:nth-child(even){
    background: #fffaf5;
}

.custom-table tbody tr:hover{
    background: #fff2e8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .table-section{
        padding: 50px 0;
    }

    .custom-table th,
    .custom-table td{
        padding: 14px 16px;

        font-size: 15px;
    }

}






/* =========================================
   MONTH WISE SECTION
========================================= */

.month-wise-section{
    background: #fff8f2;
}

/* =========================================
   MONTH WRAPPER
========================================= */

.month-wise-wrapper{
    margin-top: 40px;
}

/* =========================================
   MONTH ITEM
========================================= */

.month-wise-item{
    background: #ffffff;

    padding: 40px;

    border-radius: 22px;

    border: 1px solid #f1e5d8;

    box-shadow:
    0 8px 28px rgba(0,0,0,0.06);

    margin-bottom: 35px;
}

.month-wise-item:last-child{
    margin-bottom: 0;
}

/* =========================================
   MONTH TITLE
========================================= */

.month-wise-item h3{
    margin-bottom: 30px;

    padding-bottom: 15px;

    border-bottom: 2px solid #f3e4d6;
}

/* =========================================
   ENTRY
========================================= */

.month-entry{
    margin-bottom: 28px;
}

.month-entry:last-child{
    margin-bottom: 0;
}

/* =========================================
   ENTRY TITLE
========================================= */

.month-entry h4{
    color: #8b0000;

    margin-bottom: 10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .month-wise-item{
        padding: 30px;
    }

}

@media(max-width:480px){

    .month-wise-item{
        padding: 24px;
    }

}






/* =========================================
   COMMON INFO SECTION
========================================= */

.info-section{
    background: #fff8f2;
}

/* =========================================
   CARD GRID
========================================= */

.card-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(260px,1fr));

    gap: 30px;

    margin-top: 40px;
}

/* =========================================
   INFO CARD
========================================= */

.info-card{
    background: #ffffff;

    padding: 35px;

    border-radius: 20px;

    border: 1px solid #f1e5d8;

    box-shadow:
    0 6px 22px rgba(0,0,0,0.06);

    transition: 0.3s;
}

/* Hover */

.info-card:hover{
    transform: translateY(-8px);

    box-shadow:
    0 14px 32px rgba(0,0,0,0.10);

    background: #fffdfb;
}

/* =========================================
   CARD TITLE
========================================= */

.info-card h3{
    color: #8b0000;

    margin-bottom: 18px;
}

/* =========================================
   CARD TEXT
========================================= */

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .card-grid{
        gap: 22px;
    }

    .info-card{
        padding: 28px;
    }

}

@media(max-width:480px){

    .info-card{
        padding: 24px;
    }

}





/* =========================================
   COMMON RITUAL SECTION
========================================= */

.ritual-section{
    background: #fff8f2;
}

/* =========================================
   RITUAL GRID
========================================= */

.ritual-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(240px,1fr));

    gap: 20px;

    margin-top: 35px;
    margin-bottom: 35px;
}

/* =========================================
   RITUAL CARD
========================================= */

.ritual-card{
    background:
    linear-gradient(135deg, #fff8f2, #ffffff);

    border-left: 5px solid #ff6600;

    padding: 22px 24px;

    border-radius: 16px;

    font-size: 18px;

    font-weight: 600;

    color: #333;

    line-height: 1.7;

    box-shadow:
    0 4px 15px rgba(0,0,0,0.06);

    transition: 0.3s;
}

/* Hover */

.ritual-card:hover{
    transform: translateY(-5px);

    box-shadow:
    0 10px 24px rgba(0,0,0,0.10);

    background: #fffdfb;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .ritual-grid{
        gap: 18px;
    }

    .ritual-card{
        font-size: 17px;

        padding: 20px;
    }

}

@media(max-width:480px){

    .ritual-card{
        font-size: 16px;
    }

}






/* =========================================
   COMMON FAQ SECTION
========================================= */

.faq-section{
    background: #fff8f2;
}

/* =========================================
   FAQ WRAPPER
========================================= */

.faq-wrapper{
    background: #ffffff;

    border-radius: 22px;

    border: 1px solid #f2e8de;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

    overflow: hidden;

    margin-top: 40px;
}

/* =========================================
   FAQ ITEM
========================================= */

.faq-item{
    padding: 20px 40px 5px 40px;

    border-bottom: 1px solid #f1e5d8;

    transition: 0.3s;
}

.faq-item:last-child{
    border-bottom: none;
}

/* Hover */

.faq-item:hover{
    background: #fffaf5;
}

/* =========================================
   FAQ ANSWER
========================================= */

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .faq-item{
        padding: 28px;
    }

}

@media(max-width:480px){

    .faq-item{
        padding: 24px;
    }

}







/* =========================================
   COMMON RELATED ARTICLES
========================================= */

.related-section{
    background: #fff8f2;
}

/* =========================================
   RELATED ARTICLES GRID
========================================= */

.related-articles-grid{
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(280px,1fr));

    gap: 25px;

    margin-top: 40px;
}

/* =========================================
   RELATED ARTICLE CARD
========================================= */

.related-article-card{
    background: #ffffff;

    padding: 30px;

    border-radius: 18px;

    border: 1px solid #f1e5d8;

    box-shadow:
    0 6px 20px rgba(0,0,0,0.06);

    transition: 0.3s;

    color: #333;
}

/* Hover */

.related-article-card:hover{
    transform: translateY(-6px);

    background: #fff3e8;

    box-shadow:
    0 12px 28px rgba(0,0,0,0.10);
}

/* =========================================
   ICON
========================================= */

.related-article-card span{
    display: inline-block;

    font-size: 34px;

    margin-bottom: 18px;
}






/* =========================================
   COMMON SECTION
========================================= */

.common-box{
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.common-box p:last-child{
    margin-bottom: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .common-box{
        padding: 35px 20px;
    }

}



/* =========================================
   COMMON FOOTER
========================================= */

.site-footer{
    background: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.site-footer p{
    color: #fff;
    margin: 0;
}










