@import url('https://fonts.googleapis.com/css2?family=Kurale&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Gujarati:wght@100..900&display=swap');
:root {
    --orange-color: #EC7638;
    --yellow-color: #FFCB08;
    --yellow10-color: #FFFAE6;
    --black-color: #333333;
    --white-color: #ffffff;
    --kurale-family: "Kurale", serif;
    --transition: all 300ms ease-in-out;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

a,
button {
    text-decoration: none;
    outline: none;
    transition: var(--transition);
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    transition: var(--transition);
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

img {
    max-width: 100%;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 400;
}

p {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 162%;
}

p:last-child {
    margin-bottom: 0;
}

.gujarati-title-text {
    font-size: 28px;
    font-family: "Noto Sans Gujarati", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.gujarati-text {
    font-family: "Noto Sans Gujarati", sans-serif;
    font-size: 18px;
}

.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.9);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1200px;
}

.comn-padding {
    padding: 100px 0px;
}

.comn-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.comn-title {
    font-family: var(--kurale-family);
    font-size: 50px;
    line-height: 80%;
    color: var(--black-color);
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--yellow-color);
    text-transform: capitalize;
}

.comn-title-row .comn-title {
    margin-bottom: 0;
}

.comn-title>span {
    display: block;
    font-size: 20px;
    line-height: 140%;
    color: var(--orange-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.comn-btn {
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 190%;
    text-transform: uppercase;
    color: var(--black-color);
    border: none;
    padding: 0px 25px 0px 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 100px;
}

.comn-btn:hover {
    color: var(--white-color);
}

.comn-btn::before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-color: var(--orange-color);
    border-radius: 100px;
    transition: var(--transition);
}

.comn-btn:hover::before {
    width: 100%;
}

.comn-btn>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--orange-color);
    color: var(--white-color);
    transition: var(--transition);
}

.splide__pagination__page.is-active {
    background-color: var(--black-color);
}

.splide__arrows {
    position: absolute;
    right: 0;
    top: -72px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.splide__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    opacity: 1;
    position: initial;
    transform: none;
    background-color: var(--white-color);
    color: #898989;
    box-shadow: 0px 3px 12px 0px #00000040;
}

.splide__arrow:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
}

header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 999;
    padding: 0px 30px;
}

header .navbar {
    padding: 15px 30px;
    max-width: 1400px;
    background-color: #FFFFFFF2;
    border-radius: 20px;
    margin: 0px auto;
}

header .navbar-brand {
    padding: 0;
}

header .navbar .navbar-nav {
    gap: 40px;
}

.header-btn,
header .navbar .navbar-nav .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

header .navbar .navbar-nav .nav-link>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    position: relative;
}

header .navbar .navbar-nav .nav-link>span::before,
header .navbar .navbar-nav .nav-link>span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--black-color);
    border-radius: 50px;
    transition: var(--transition);
}

header .navbar .navbar-nav .nav-link>span::after {
    height: 100%;
    width: 2px;
}

header .navbar .navbar-nav .nav-link.active>span::after,
header .navbar .navbar-nav .nav-link:hover>span::after,
header .navbar .navbar-nav .nav-link[aria-expanded="true"]>span::after {
    transform: rotate(90deg);
}

header .navbar .navbar-nav .nav-link:hover,
header .navbar .navbar-nav .nav-link.active {
    color: var(--orange-color);
}

header .navbar .navbar-nav .nav-link.active>span::before,
header .navbar .navbar-nav .nav-link.active>span::after,
header .navbar .navbar-nav .nav-link:hover>span::before,
header .navbar .navbar-nav .nav-link:hover>span::after {
    background-color: var(--orange-color);
}

.header-btn {
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 40px;
    border: none;
    background-color: var(--orange-color);
    color: var(--white-color);
}

.header-btn:hover {
    background-color: var(--yellow-color);
    color: var(--black-color);
}

.banner-section {
    position: relative;
}

.banner-pattern-1,
.banner-pattern-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.banner-pattern-2 {
    left: auto;
    right: 0;
}

.banner-image-box {
    height: 100vh;
    position: relative;
}

.banner-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(91, 30, 0, 0.2);
}

.banner-image-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section .splide__pagination {
    display: flex;
    align-items: center;
    gap: 5px;
    bottom: 40px;
}

.banner-section .splide__pagination li {
    line-height: 0;
}

.banner-section .splide__pagination__page {
    width: 30px;
    height: 4px;
    background-color: var(--white-color);
    border-radius: 0px;
    margin: 0;
    transform: none;
    opacity: 1;
}

.banner-section .splide__pagination__page.is-active {
    background-color: var(--yellow-color);
}

.about-section {
    position: relative;
    z-index: 1;
}

.about-bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.about-data-box {
    padding-left: 36px;
}

.about-data-box>img {
    margin-bottom: 30px;
}

.about-data-box .comn-title {
    margin-bottom: 30px;
}

.about-data-box>p {
    margin-bottom: 25px;
}

.about-data-box .comn-btn {
    margin-top: 5px;
}

.darshan-image-box {
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
}

.darshan-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-row {
    display: flex;
    flex-wrap: wrap;
}

.activities-row-leftside,
.activities-row-rightside {
    width: 50%;
}

.activities-data-box {
    padding: 30px;
}

.activities-data-box>aside {
    font-family: var(--kurale-family);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--black-color);
}

.activities-data-box>p {
    font-family: var(--kurale-family);
    font-size: 26px;
    font-weight: 400;
    line-height: 154%;
    color: var(--black-color);
    margin-bottom: 20px;
}

.activities-data-box .comn-btn {
    font-size: 14px;
}

.activities-row-leftside {
    border-top-left-radius: 200px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--white-color);
}

.activities-row-leftside::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 47%, rgba(0, 0, 0, 0.6) 100%);
}

.activities-row-leftside>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-row-leftside .activities-data-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
}

.activities-row-leftside .activities-data-box>aside {
    font-size: 40px;
    color: var(--white-color);
}

.activities-row-leftside .activities-data-box>p {
    font-size: 30px;
    color: var(--white-color);
}

.activities-row-leftside .activities-data-box .comn-btn {
    color: var(--white-color);
}

.activities-row-rightside {
    display: flex;
    flex-wrap: wrap;
}

.activities-comn-box {
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: var(--yellow10-color);
    overflow: hidden;
    height: 50%;
    display: flex;
    align-items: flex-start;
}

.activities-comn-box:nth-child(even) {
    flex-direction: row-reverse;
}

.activities-pattern {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

.activities-comn-box:nth-child(even) .activities-pattern {
    right: 50%;
}

.activities-image,
.activities-data-box {
    width: 50%;
}

.activities-image {
    align-self: stretch;
}

.activities-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.antar-section {
    position: relative;
    z-index: 1;
}

.antar-pattern {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: -1;
}

.antar-slider-box:not(:last-child) {
    margin-bottom: 55px;
}

.antar-slider-box .comn-title,
.antar-rightside-box .comn-title {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 127%;
}

.antar-slider-box .comn-title>span,
.antar-rightside-box .comn-title>span {
    font-size: 16px;
}

.antar-image-box {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.antar-image-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.antar-image-box-overlay {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000066;
    color: var(--white-color);
    font-size: 30px;
    transition: var(--transition);
}

.antar-image-box:hover .antar-image-box-overlay {
    top: 0%;
}

.antar-slider-box .comn-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.antar-rightside-box {
    padding-left: 26px;
}

.antar-rightside-image {
    position: relative;
    z-index: 1;
}

.antar-rightside-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.antar-rightside-image .comn-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white-color);
}

.parampara-section {
    background-image: url(../images/parampara-bg-image.png);
    background-size: cover;
}

.parampara-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.parampara-row:last-child {
    margin-bottom: 0;
}

.parampara-box {
    width: 205px;
    text-align: center;
}

.parampara-box>img {
    width: 100%;
}

.parampara-box>aside {
    font-family: var(--kurale-family);
    font-size: 22px;
    line-height: 180%;
    color: var(--orange-color);
    text-transform: capitalize;
}

footer {
    padding: 50px 0px 42px;
    background-color: #BD4100EB;
    position: relative;
}

.footer-pattern-1 {
    position: absolute;
    top: 0;
    z-index: -1;
    height: 100%;
}

.footer-pattern-1 img {
    height: 100%;
}

.footer-pattern-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 50px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-form-control-row {
    display: flex;
    border: 1px solid var(--white-color);
    border-radius: 100px;
    overflow: hidden;
    width: 470px;
    max-width: 100%;
}

.footer-form-control-row input {
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 125%;
    color: var(--black-color);
}

.footer-form-control-row button {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: var(--black-color);
    border: none;
    background-color: var(--yellow-color);
    padding: 14px 25px;
    white-space: nowrap;
}

.footer-form-control-row button:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}

.footer-middle {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    padding: 50px 0px 65px;
    border: solid #DC8152;
    border-width: 1px 0px;
}

.footer-middle>* {
    flex-shrink: 0;
}

.footer-aim-box {
    width: 540px;
}

.footer-aim-box>p {
    font-size: 20px;
    line-height: 122%;
    color: var(--white-color);
    margin-bottom: 40px;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--white-color);
    border-radius: 5px;
    color: var(--white-color);
    font-size: 20px;
}

.social-list li a:hover {
    background-color: var(--black-color);
}

.footer-contact-box {
    width: 355px;
}

.contact-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list li span {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    border-radius: 50%;
}

.contact-list li p {
    font-size: 16px;
    font-weight: 600;
    line-height: 122%;
    color: var(--white-color);
}

.contact-list li p a {
    display: block;
    font-weight: 500;
    color: var(--white-color);
}

.contact-list li p a:hover {
    color: var(--yellow-color);
}

.footer-link-box {
    width: 160px;
}

.link-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.link-list li {
    width: 100%;
}

.link-list li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 122%;
    color: var(--white-color);
}

.link-list li a:hover {
    color: var(--yellow-color);
}

.footer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 40px;
}

.footer-foot>p {
    font-size: 16px;
    font-weight: 500;
    line-height: 122%;
    color: var(--white-color);
    margin-bottom: 0;
}

.foot-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.foot-list li:not(:last-child) {
    padding-right: 15px;
    border-right: 1px solid var(--white-color);
    line-height: 1;
}

.foot-list li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 122%;
    color: var(--white-color);
}

.foot-list li a:hover {
    color: var(--yellow-color);
}

.inner-banner-section .banner-image-box {
    height: 350px;
}

.soul-image {
    width: 100%;
    position: relative;
}

.soul-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.soul-image>img {
    width: 100%;
    vertical-align: middle;
}

.soul-box {
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0px 10px 20px #00000010;
    margin-top: -10%;
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
}

.navbar-nav .dropdown-menu {
    padding: 0;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, .05), -2px 0 5px 1px rgba(0, 0, 0, .05);
    border: none;
    border-radius: 10px;
}

.navbar-nav .dropdown-menu li a {
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    color: var(--black-color);
    border-bottom: 1px solid #dddddd;
    font-size: 16px;
}

.navbar-nav .dropdown-menu li a:hover {
    background-color: rgb(236 118 56 / 10%);
    color: var(--orange-color);
}

.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.navbar-nav .dropdown-menu li:first-child a {
    border-radius: 10px 10px 0 0;
}

.navbar-nav .dropdown-menu li:last-child a {
    border-radius: 0 0 10px 10px;
    border-bottom: none;
}

.navbar-nav .dropdown-menu li a i {
    font-size: 14px;
}

.inner-dropdown-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 53px;
    width: 40px;
    background-color: transparent;
    border: none;
    color: var(--black-color);
}

.inner-dropdown-arrow[aria-expanded="true"] {
    transform: rotate(90deg);
}

header .navbar .nav-link.active+.dropdown-menu .inner-dropdown .inner-dropdown-arrow {
    color: var(--white-color);
}

.inner-dropdown .dropdown-menu {
    left: 100%;
    top: 0;
    overflow: hidden;
}

.navbar-nav .inner-dropdown .dropdown-menu li a {
    border-radius: 0;
}

.haridam-gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    grid-gap: 20px;
    margin-top: 30px;
}

.haridam-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    max-height: 300px;
    min-height: 150px;
}

.haridam-gallery-card a::before {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    font-weight: 900;
    background-color: rgb(0 0 0 / 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 22px;
    transition: all 200ms ease-in-out;
}

.haridam-gallery-card:hover a::before {
    top: 0;
}

.haridam-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prasang-image {
    border-radius: 20px;
}

.comn-hr {
    border-color: #eeeeee;
    opacity: 1;
    margin: 0;
}

.comn-nav-tabs .nav {
    border: none;
    margin-bottom: 20px;
    background-color: var(--white-color);
    gap: 10px;
    position: sticky;
    top: 0;
    padding: 10px 0px;
    z-index: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.comn-nav-tabs .is-stuck {
    border-bottom: 1px solid #dddddd;
}

.comn-nav-tabs .nav .nav-link {
    padding: 10px 20px;
    background-color: rgba(236, 119, 56, 0.10);
    color: var(--black-color);
    border-radius: 10px;
    font-weight: 500;
    border: none;
    text-transform: capitalize;
    white-space: nowrap;
}

.comn-nav-tabs .nav .nav-link:hover {
    background-color: rgba(236, 119, 56, 0.20);
}

.comn-nav-tabs .nav .nav-link.active {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.video-section {
    background-color: #FFFAE6;
}

.video-card {
    width: 100%;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    border: 2px solid var(--orange-color);
}

.aarti-box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    font-family: "Noto Sans Gujarati", sans-serif;
}

.aarti-box>span {
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    flex: 0 0 115px;
    text-align: right;
    line-height: 130%;
}

.aarti-box>p {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
    flex: 0 0 calc(100% - 125px);
    line-height: 125%;
}

.darshan-image {
    height: calc(100% - 20px);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.darshan-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comn-table {
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.comn-table .table {
    margin: 0;
}

.comn-table .table tr th,
.comn-table .table tr td {
    padding: 12px 15px;
    font-size: 14px;
    line-height: 130%;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.comn-table .table tr th {
    background-color: var(--orange-color);
    color: var(--white-color);
    white-space: nowrap;
}

.comn-table .table tr:last-child td {
    border-bottom: none;
}

.news-activities-row {
    width: 100% !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 30px;
}

.news-activities-row .activities-comn-box {
    height: auto;
    display: block;
    border-radius: 20px;
}

.news-activities-row .activities-image,
.news-activities-row .activities-data-box {
    width: 100%;
}

.news-activities-row .activities-image {
    height: 220px;
}

.news-activities-row .activities-data-box {
    padding: 30px 20px;
}

.news-activities-row .activities-data-box>aside {
    font-size: 24px;
}

.news-activities-row .activities-data-box>p {
    font-size: 18px;
}