@font-face {
    font-family: "Aclonica-Regular";
    src: url(../assets/fonts/Aclonica-Regular.ttf);
}

@font-face {
    font-family: "Roboto-Medium";
    src: url(../assets/fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: "Roboto-Regular";
    src: url(../assets/fonts/Roboto-Regular.ttf);
}

/* CSS Variables */
:root {
    --font-main: Aclonica-Regular;
    --font-medium: Roboto-Medium;
    --font-regular: Roboto-Regular;

    --font-s-h1: 38px;
    --font-s-h2: 34px;
    --font-s-h3: 28px;
    --font-s-h4: 24px;
    --font-s-h5: 20px;
    --font-s-h6: 18px;
    --font-s-p: 14px;

    --dark-background: #E4DDEB;
    --light-background: #E4DDEB;
}

/*Style */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    transition: all 0.5s ease;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
}

/*--------------Nav-Bar----------------*/

.navbar-section {
    background-color: var(--dark-background);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.navbar-brand>img {
    width: 200px;
}

.navbar-collapse {
    justify-content: center;
    padding: 10px 0px;
}

.navbar-nav {
    display: flex;
    gap: 20px;
}

.navbar-nav>li>a {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #1D0039;
    font-weight: 200;
}

.navbar-nav>li>a:hover {
    color: #533A6C;
}

.dropdown-menu>li>a {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #1D0039;
    font-weight: 200;
}

.dropdown-menu {
    background-color: var(--dark-background);
}

/*--------banner-section--------*/
.banner {
    padding-top: 150px;
    padding-bottom: 100px;
    background-image: url(../assets/images/bg-img/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    height: 450px;
}

.banner-content {
    text-align: center;
}

.banner-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 35px;
}

.banner-content>p {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 20px;
}

.banner-img>img {
    width: 350px;
}

.banner-content>a {
    color: #1D0039;
    background-color: #ffff;
    font-family: var(--font-medium);
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
}

.banner-content>a:hover {
    color: #ffff;
    background-color: #1D0039;
}

/*-------pooja-section--------*/
.pooja-section {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: var(--dark-background);
}

.main-heading {
    text-align: center;
    font-family: var(--font-main);
    font-size: 30px;
    color: #1D0039;
    margin-bottom: 50px;
}

.main-heading2 {
    text-align: center;
    font-family: var(--font-main);
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 50px;
}

.poojas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 80px;
}

.pooja-content>h1 {
    font-family: var(--font-main);
    color: #1D0039;
    font-size: 25px;
    margin-bottom: 10px;
}

.pooja-img>img {
    width: 400px;
}

.pooja-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #533A6C;
}

.pooja-content>a {
    color: #1D0039;
    background-color: #ffff;
    font-family: var(--font-medium);
    font-size: 18px;
    padding: 5px 15px;
    border-radius: 5px;
}

.pooja-content>a:hover {
    color: #ffff;
    background-color: #1D0039;
}

/*----------Card-section--------*/
.Card-section {
    background: url(../assets/images/bg-img/card-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 10px;
}

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.card-content {
    background-color: #ffff;
    padding: 20px 20px;
    text-align: center;
    border-radius: 10px;
}

.card-content>div>img {
    width: 100px;
    margin-bottom: 40px;
}

.card-content>div>h5 {
    font-family: var(--font-main);
    font-size: 18px;
    color: #1D0039;
}

.card-content>div>p {
    font-family: var(--font-regular);
    font-size: 14px;
    color: #533A6C;
}

/*----------divine-activities-----------*/
.divine-activities-section {
    background-color: var(--dark-background);
    background: url(../assets/images/bg-img/divine-activities-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 10px;
}

.divine-activities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    justify-items: center;
}

.divine-activities>div {
    width: 300px;
}

.divine-activities>div>p>a {
    font-size: 16px;
    color: #A93B42;
}

.divine-activities>div>h5 {
    font-family: var(--font-main);
    font-size: 18px;
    color: #ffff;
}

.divine-activities>div>p {
    font-family: var(--font-regular);
    font-size: 14px;
    color: #ffff;
}

/*------footer-section-------*/
.footer-widget-area {
    background-color: var(--dark-background);
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}

.widget-logo>a>img {
    width: 100px;
}

.widget-logo>a>h3 {
    font-family: var(--font-main);
    color: #1D0039;
    font-size: 25px;
    margin-top: 22px;
}

.widget-logo>a>p {
    font-family: var(--font-regular);
    color: #1D0039;
    font-size: 14px;
    margin-top: 10px;
}

.quick-links>h6 {
    font-family: var(--font-main);
    color: #1D0039;
    font-size: 18px;
}

.reach-us>h6 {
    font-family: var(--font-main);
    color: #1D0039;
    font-size: 18px;
}

.quick-links>div>li>a {
    color: #1D0039;
    font-family: var(--font-regular);
    font-size: 14px;
}

.quick-links>div>li>a:hover {
    color: #1D0039;
}

.reach-us>div>li>a {
    color: #1D0039;
    font-family: var(--font-regular);
    font-size: 14px;
}

.reach-us>div>li>a:hover {
    color: #1D0039;
}

.reach-us>div>li>img {
    width: 30px;
    padding-right: 10px;
}

.quick-links>div>li {
    margin-top: 5px;
}

.reach-us>div>li {
    margin-top: 5px;
    display: flex;
}

.quick-links {
    margin-top: 20px;
}

.reach-us {
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social>a>img {
    width: 30px;
    margin-top: 10px;
    border: 4px solid;
    border-color: #ffff;
    border-radius: 20px;
    background-color: #ffff;
}

.footer-social>a>img:hover {
    border-color: #1D0039;
}

/*-------page-heading section--------*/
.img8 {
    background: url(../assets/images/bg-img/gallery-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
}

.page-heading {
    padding-top: 120px;
    padding-bottom: 50px;
    text-align: center;
}

.page-heading-section>ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-right: 20px;
}

.page-heading-section>ul>li {
    color: var(--dark-background);
}

.page-heading-section>ul>li>a {
    font-family: var(--font-regular);
    color: #000;
}

.img1 {
    background: url(../assets/images/bg-img/about-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-heading-section>h1 {
    font-family: var(--font-main);
    font-size: 30px;
    color: #000;
}

/*-------about-section------*/
.about {
    margin-top: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.about-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.about-section-sub-content {
    margin-top: 20px;
}

.about-section-sub-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

/*-------about-highlight-------*/
.about-highlight {
    padding-top: 40px;
    padding-bottom: 40px;
    background: url(../assets/images/bg-img/about-highlight-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 10px;

}

.about-highlight>ul {
    text-align: center;
}

.about-highlight>ul>li {
    font-family: var(--font-main);
    font-size: 17px;
    margin-bottom: 5px;
    color: #1D0039;
}

/*------------about-skandashram---------*/
.skandashram {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../assets/images/bg-img/about-skandashram.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-skandashram-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-skandashram-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}


.about-skandashram-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.about-section-sub-content {
    margin-top: 20px;
}

.about-section-sub-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.about-section-sub-content>h4 {
    font-family: var(--font-main);
    font-size: 20px;
    color: #F1F0F0;
}

/*------sitting-schedule------*/
.img2 {
    background: url(../assets/images/bg-img/sitting-schedule.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
}

.sitting-schedule {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--dark-background);
    margin-bottom: 10px;
}

.table-border {
    border: 3px solid #fff;
}

.head>tr>th {
    color: #1D0039;
    background-color: #1D0039;
    font-family: var(--font-medium);
    font-size: 16px;
}

.t-body>tr>td {
    color: #000;
    background-color: #1D0039;
    font-family: var(--font-regular);
    font-size: 15px;
}

/*--------burn-unit---------*/
.img3 {
    background: url(../assets/images/bg-img/divine-activities-title-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
}

.burnunit {
    margin-top: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.burn-unit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.burn-unit-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.burn-unit-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

/*-------diabetes-camp-----*/
.diabetes-camp {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.diabetes-camp-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.diabetes-camp-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}


.diabetes-camp-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.about-section-sub-content {
    margin-top: 20px;
}

.diabetes-camp-sub-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.diabetes-camp-content>h4 {
    font-family: var(--font-main);
    font-size: 16px;
    color: #F1F0F0;
}

/*-----piles-treatment------*/
.pilestreatment {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.piles-treatment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.piles-treatment-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.piles-treatment-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.plastic-surgery-section {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.plastic-surgery-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.plastic-surgery-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.plastic-surgery-content>h4 {
    font-family: var(--font-main);
    font-size: 16px;
    color: #F1F0F0;
}

/*--------skand-shasti--------*/
.img4 {
    background: url(../assets/images/bg-img/poojas-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
}

.skandshasti {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.skand-shasti-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.skand-shasti-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.skand-shasti-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.skand-shasti-content>h4 {
    font-family: var(--font-main);
    font-size: 16px;
    color: #F1F0F0;
}

.skand-shasti-sub-content {
    text-align: center;
    margin-top: 50px;
}

.skand-shasti-sub-content>h6 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.skand-shasti-list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.skand-shasti-list-content>ul>li {
    list-style: circle;
    color: #ffff;
    font-family: var(--font-regular);
    font-size: 16px;
}

.skand-shasti-list-img>img {
    padding-bottom: 10px;
    width: 450px;
}

/*----------Kavadi Yatra--------*/
.kavadiyatra {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.kavadi-yatra-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.kavadi-yatra-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.kavadi-yatra-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.kavadi-yatra-img>img {
    width: 350px;
}

/*--------maha-rudram--------*/
.maharudram {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.maha-rudram-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.maha-rudram-content>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    margin-bottom: 10px;
}

.maha-rudram-content>p {
    font-family: var(--font-regular);
    font-size: 16px;
    color: #F1F0F0;
}

.maha-rudram-img>img {
    width: 350px;
}

.maha-rudram-content>h6 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 18px;
    margin-bottom: 10px;
}


.about-rudham-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 100px;
}

.about-rudham-list-content>ul>li {
    list-style: circle;
    color: #ffff;
    font-family: var(--font-regular);
    font-size: 16px;
}

.about-rudham-list-content>h4 {
    font-family: var(--font-main);
    font-size: 20px;
    color: #F1F0F0;
}

/*----------contact-------*/
.img6 {
    background: url(../assets/images/bg-img/contact-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
}

.contactus {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.contact-us-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-adderss-section>li>img {
    width: 20px;
}

.contact-dic {
    background-color: #1D0039;
    padding: 40px 20px;
    border-radius: 15px;
}

.contact-dic>div>li>a {
    color: #ffffff;
    font-family: var(--font-medium);
    font-size: 16px;
}

.contact-adderss-section>li>div>a {
    color: #ffffff;
    font-family: var(--font-medium);
    font-size: 16px;
}

.contact-dic>div>li>a:hover {
    color: var(--dark-background);
}


.contact-dic>div>li>div>a:hover {
    color: #E4DDEB;
}

.contact-dic>div>li {
    margin-top: 25px;
}

.contact-adderss-section>li {
    display: flex;
    gap: 30px;
}

.contact-dic>h1 {
    font-family: var(--font-main);
    color: var(--dark-background);
    font-size: 25px;
}

.map-section>iframe {
    width: 500px;
    height: 350px;
}

/*--------Photos-section-------*/
.photos-section {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.photo-card-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}


.card-body>h4 {
    font-family: var(--font-main);
    font-size: 18px;
    color: #1D0039;
}

.card-body>a {
    font-family: var(--font-medium);
    font-size: 15px;
    color: #1D0039;
}

.card-body>a:hover {
    color: #1D0039;
}

.card-body>div>img {
    width: 30px;
}

.card-body>div {
    display: flex;
    gap: 10px;
}

.card-subtitle,
.card-text {
    color: #fff;
    font-size: 14px;
}

.photos-section>div>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    text-align: center;
    margin-bottom: 30px;
}

/*--------video section-------*/
.videosection {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #1D0039;
}

.videosection>div>h1 {
    font-family: var(--font-main);
    color: #ffff;
    font-size: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.video-section {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}

.video-section>div>iframe {
    border: 3px solid #ffff;
    border-radius: 10px;
    width: 400px;
    height: 250px;
}

.video-section>div>h4 {
    font-family: var(--font-main);
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

/*-----------all photos------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
    flex: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

/*----------sitting-schedule-----------*/
.sitting-schedule>div>div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.card {
    background-color: #1D0039;
}

.card-body {
    margin-top: 20px;
}

.card-body>h5 {
    color: var(--dark-background);
    font-family: var(--font-medium);
    padding-bottom: 10px;
}

.card-body>h6 {
    color: #ffff;
}



/*----------donation-wrapper-----------*/
.donation-wrapper {
    margin: 40px auto;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.form-side {
    padding: 30px;
}

.form-side h2 {
    text-align: center;
    color: #1D0039;
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
}

.btn-donate {
    background-color: #1D0039;
    color: white;
    width: 100%;
}

.btn-donate:hover {
    background-color: #E4DDEB;
    color: #1D0039;
}

/*----------successfull card-----------*/
.donation-card {
    max-width: 500px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 30px;
    background-color: #f6f5f8;
}

.form-title {
    font-family: var(--font-main);
    color: #1D0039;
    font-size: 25px;
}

.donation-card h4 {
    color: #1D0039;
    font-weight: 600;
}

.donation-card p {
    font-size: 16px;
    color: #1D0039;
}

.thank-icon {
    font-size: 40px;
    color: #1D0039;
    margin-bottom: 15px;
}

.donation-section {
    background: #f6f5f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.donation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.required-star {
    color: red;
}

.form-title {
    margin-bottom: 1rem;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

.form-check-label a {
    color: #8636d0;
}

.footer-bottom{
    background-color: #E4DDEB;
    padding-bottom: 20px;
}
.copyright-text a{
    color: #8636d0;
}

 .terms-container {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 2rem;
      margin-top: 2rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }
    h1, h2 {
      color: #343a40;
    }
    .last-updated {
      font-size: 0.9rem;
      color: #6c757d;
    }
    ul {
      padding-left: 1.5rem;
    }
    .terms-point li{
        list-style: disc;
    }
