/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #5c3f4a;
  --secondary: #333333;
  font-family: "Montserrat", sans-serif;
  font-family: "Playfair Display", serif;
  font-family: "Roboto", sans-serif;
  font-family: "Lato", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 17px;
  color: var(--white);
  font-weight: 500;
  display: inline-block;
  padding: 1rem 1.875rem;
  line-height: normal;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  transition: 0.3s ease-in-out;
  background-color: #eed8b0;
  padding: 1.5rem 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 0.875rem 1.25rem;
  position: relative;
}

/* !NAV HEADER CSS */

/* --- Section gzm1qj --- */
.blog-grid-section {
  background-color: #efddb9;
  /* Matches the warm beige background */
  padding: 6rem 0 3rem;
}

.post-card {
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  margin: 0;
  overflow: hidden;
}

.post-image img {
  height: 350px;
}

.post-content {
  padding: 1.25rem 1.25rem 1.25rem 2.25rem;
}

.post-title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
  width: 84%;
}

.read-more-link {
  display: flex;
  align-items: center;
  gap: 0.3625rem;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #896943;
}

.read-more-link:hover {
  text-decoration: none;
  color: var(--primary);
}

/* --- Section 7xb6z --- */
/* Footer Base Styles */
.footer-section {
  background: url(../images/footerbg.webp) center/cover no-repeat;
  padding: 2rem 0 0 0;
}

/* Content Wrapper to sit above overlay */
.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

/* Headings */
.footer-heading {
  color: #ffffff;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: capitalize;
}

/* Icon Color (Gold/Brownish) */
.icon-gold {
  color: #c49a6c;
  width: 20px;
  margin-right: 10px;
  text-align: center;
}

/* Link Styles */
.footer-list li {
  margin-bottom: 18px;
}

.footer-list a {
  color: #eeeeee;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  text-aligtr: c;
}

.footer-list a:hover {
  color: #c49a6c;
  transform: translateX(5px);
}

/* Contact List Styles */
.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #eeeeee;
}

/* Social Media Icons */
.social-icons {
  margin-top: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  background-color: #ffffff;
  color: #5c3f4a;
  border-radius: 50%;
  margin-right: 12px;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #c49a6c;
  color: #ffffff;
}

/* Copyright Bar */
.copyright-bar {
  position: relative;
  z-index: 2;
  background-color: #5c3f4a;
  border-top: 2px solid var(--white);
  padding: 15px 0;
  margin: 2rem 0 0 0;
}

.hero-section {
  background: none;
}

.mainHead {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.1;
}

.silent-content p {
  color: var(--black);
  line-height: 2.5;
  margin: 0.625rem 0 1.25rem 0;
  width: 90%;
}

section.silent-sec {
  background: url(../images/bg1.webp) center/cover no-repeat;
}

.pray-sec {
  background: url(../images/bg2.webp) center/cover no-repeat;
}

.invite-sec .silent-imag {
  text-align: center;
}

.about-sec {
  background: url(../images/bg3.webp) center/cover no-repeat;
  padding: 6rem 0 0 0;
}

.invite-sec {
  background: url(../images/bg4.webp) center/cover no-repeat;
}

.subHead {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  width: fit-content;
  background-color: var(--primary);
  padding: 0.6725rem 0.925rem 0.6725rem 0.625rem;
}

.invite-sec .mainHead {
  margin: 1rem 0 0;
}

.clark-sec {
  background: url(../images/bg5.webp) center/cover no-repeat;
}

.clark-main {
  text-align: center;
  border: 1px solid #896943;
  padding: 52px 0px 52px 0px;
  border-radius: 10px;
  background-color: rgb(255 255 255 / 2%);
  box-shadow: 0 0 10px 0 rgb(255 255 255 / 50%);
}

.clark-content .mainHead {
  color: var(--white);
  width: 76%;
  margin: 1rem auto 1rem;
}

.clark-content p {
  color: var(--white);
  line-height: 2.3;
  width: 60%;
  margin: 0 auto 1.5rem;
}

.feedback-sec {
  background: url(../images/bg6.webp) center/cover no-repeat;
  padding: 6rem 0 7rem;
}

.feedback-top {
  text-align: center;
  margin: 0 0 4rem 0;
}

.feedback-top .subHead {
  margin: 0 auto 1rem;
}

.feedback-top .mainHead {
  color: var(--white);
}

.feedback-content {
  text-align: center;
  background-color: rgb(255 255 255 / 36%);
  padding: 33px 23px 33px 30px;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
  border-radius: 10px;
  transition: 0.6s ease;
}

.feedback-content p {
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  font-family: "Lato";
}

.feedback-content h5 {
  font-size: 1rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.clark-sec::before {
  position: absolute;
  content: "";
  height: 1.875rem;
  width: 3.5rem;
  background-color: var(--white);
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(50% 0%, 100% 99%, 50% 100%, 0 100%);
}

.feedback-content h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.main-banner {
  background: url(../images/new-main.webp) center/cover no-repeat;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-flex ul li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white);
}

.top {
  background: linear-gradient(45deg, #5c3f4a, #000);
  padding: 0.875rem 0;
}

.top-flex ul li a i {
  font-size: 1rem;
}

.top-flex ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 1rem;
  width: 2px;
  border: 1px dashed #5c3f4a;
  right: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.navbar-nav .nav-item .nav-link:hover {
  background-color: #896943;
  color: var(--white);
}

.main-content h1 {
  font-size: 54px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white);
}

.main-content h1 span {
  color: #452a1f;
}

.main-content h3 {
  font-size: 45px;
  font-weight: 400;
  text-transform: uppercase;
  color: #e0d5c3;
  font-family: "Playfair Display", serif;
  text-align: center;
  width: 97%;
  margin: 6rem auto 6rem auto;
}

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

.main-content h4 {
  font-size: 52px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  font-family: "Playfair Display";
}

.main-img {
  margin: 0 0 0 110px;
}

.position-box p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.position-box {
  position: absolute;
  left: 156px;
  right: 156px;
  bottom: 2rem;
}

.blog-top {
  text-align: center;
}

.blog-top .subHead {
  margin: 0 auto 0;
}

.blog-top .mainHead {
  margin: 0.325rem 0 1rem;
}

.copyright-bar p {
  color: var(--white);
  font-weight: 500;
}

ul.list-unstyled.footer-contact li a span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.feedback-content:hover {
  transform: scale(0.98);
  background-color: rgb(255 255 255 / 46%);
}

/* Imag Shine Css Start */

.img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-box img {
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-25deg);
}

.img-box:hover .shine {
  animation: shineMove 0.9s ease forwards;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* Imag Shine Css End  */

/* New Imag Shine Css Start  */
.read-more-link:hover i {
  transform: translate(10px);
}

.read-more-link i {
  transition: 0.6s ease;
}

.themeBtn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.6s ease;
  background-color: var(--black);
  top: 0;
  bottom: 0;
}

.themeBtn:hover::before {
  width: 100%;
}

.themeBtn:hover {
  color: var(--white);
}



/* innerpages Start */


.innerBan h2 {
  font-size: 50px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.innerBan {
  background: #000;
  padding: 5rem 0;
}

.amzaonbtn a img {
  width: 220px;
}


.aboutpage-sec {
  background: url(../images/batbg.jpg)center/cover no-repeat;
  padding: 5rem 0;
}

.silent-content.about-page-content .mainHead {
  color: #fff;
}

.silent-content.about-page-content h4 {
  background: RGB(92, 63, 74);
  width: fit-content;
  color: #fff;
  padding: 10px;
}

.silent-content.about-page-content p {
  color: #fff;
}

section.invite-sec.invite-speak {
  background: RGB(238, 216, 176);
}

ul.speakerlist li+li {
  margin-top: 2rem;
}

ul.speakerlist li {
  font-size: 1.125rem;
  list-style: disc;
}

.clark-content.clak-speak h2 {
  font-size: 2rem;
  color: #fff;
  line-height: 1.5;
  width: 90%;
  margin: auto;
}

.subclak-speak h3 {
  font-size: 1.5rem;
  color: #fff;
  text-align: start;
  margin-bottom: 1rem;
}

.subclak-speak p {
  color: #fff;
  text-align: start;
}

.subclak-speak ul li {
  color: #fff;
  list-style: disc;
  text-align: start;
}

.mainclark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  padding: 1rem 2rem;
}

.subclak-speak ul li+li {
  margin-top: 11px;
}

/* Contact Sec Css Start */

.contact-img {
  position: absolute;
  left: -24%;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.3;
}

.contact-form .form-control {
  height: 48px;
  background-color: transparent;
  border-radius: 0;
  border: 2px solid rgba(119, 119, 119, 0.305);
}

form.contact-form label {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 0.75rem 0;
}

.contact-main .mainHead {
  font-size: 3rem;
  margin: 1rem 0 1rem 0;
}

section.contact-sec {
  overflow: hidden;
}

.contact-form .form-group textarea {
  height: 200px !important;
}

.main-banner {
  background: none !important;
  padding: 0;
}

/* Contact Sec Css End */