/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');

:root {
  --default-font: "Roboto Condensed", sans-serif;
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Roboto Condensed", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #012970;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #956300;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #343C2B;
  /* The default color of the main navmenu links */
  --nav-hover-color: #956300;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #343C2B;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #956300;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #f5f3ed;
  font-family: var(--default-font);
  overflow-x: hidden !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Squada One", sans-serif;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: max-content;
  /* margin-right: 8px; */
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-family: var(--nav-font);
    font-style: normal;
    font-weight: 600;
    font-size: clamp(16px, 2.5vw, 24px);
    line-height: clamp(20px, 3vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffff;
  background-color: #4A4A4A;
  padding: 70px 0px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* 
.footer .footer-top {
  padding-top: 50px;
} */

.footer-contact h3 {

  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.0625rem);
  line-height: 39px;
  text-transform: uppercase;
  color: #F5F3ED;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  position: relative;
  padding-bottom: 12px;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #F5F3ED;
}

.adderess {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #F5F3ED;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 15px 0;
  display: flex;
  align-items: center;
}



.footer .footer-links ul a {
  display: inline-block;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #F5F3ED;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}



.footer .copyright p {
  margin-bottom: 0;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 35px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 100vh; */
  position: relative;
  padding: 170px 0 0px 0;
  display: flex;
  align-items: center;

}



.btn-get-started {
  color: #000000;
  background: transparent;
  font-family: var(--default-font);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  padding: 5px 24px;
  border: 1px solid #CAA962;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: clamp(24px, 2.8vw, 35px);
  text-transform: uppercase;
  color: #000000;
}



.btn-get-started:hover {
  color: var(--background-color);
  background: #CAA962;
}


.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/* ====================== Muscat Church Website css Farhan ==================== */



:root {
  --small-heading-color: #868686;
  --orange: #956300;
  --big-heading-color: #030303;
  --dark-black: #000000;
}

.small_heading {
  font-family: var(--default-font);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: clamp(17px, 2vw, 21px);
  text-transform: uppercase;
  color: var(--small-heading-color);
  margin-bottom: 2rem;

}

.orange_color {
  color: var(--orange);
}

.big_heading {
  font-family: "Squada One", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(42px, 8vw, 90px);
  line-height: clamp(46px, 8.5vw, 95px);
  color: var(--big-heading-color);
}

.banner_text p {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: clamp(18px, 1.7vw, 23px);
  font-family: var(--default-font);
  font-style: normal;
  color: var(--dark-black);
  margin-bottom: 2rem;
}

.text_sec {
  padding: 0 4rem;
}

.sermon_audio {
  padding-top: clamp(60px, 10vw, 150px);
}


/* audion btn  */

.audio-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  cursor: pointer;
}

.rotating-text {
  position: absolute;
  inset: 0;
  animation: spin 12s linear infinite;
}

/* Reverse rotation on hover */
.audio-wrap:hover .rotating-text {
  animation-direction: reverse;
}


.rotating-text img {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.center-btn:hover {
  background-color: var(--orange);
  transition: all 0.3s ease;
}

.center-btn svg {
  width: 28px;
  height: 28px;
  fill: #111;
  transition: fill 0.3s ease;
}

.audio-wrap.active .center-btn svg {
  fill: var(--background-color);

}

.center-btn svg:hover {
  fill: var(--background-color);

}

.join-our-services {
  padding: 4rem 1rem;
}

.join-our-services h2,
.contact-us h2,
.Our_Mission h1 {
  font-family: 'Squada One';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
  line-height: clamp(36px, 5.5vw, 51px);
  color: #030303;

}

.service-time {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 27px);
  line-height: 1.296;
  color: #956300;
}

.service-card p {
  margin-bottom: 0.25rem;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #33302E;
}

.service-divider {
  width: 1px;

  border: 1px solid rgba(128, 128, 128, 0.55);
  margin: 0 2rem;
}



.quote {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 23px);
  line-height: 1.522;
  text-transform: uppercase;
  color: #000000;
}

.quote span {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 35px;
  text-transform: uppercase;
  color: #956300;
}

.ministry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* KEY */
  min-height: 420px;
  border-radius: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.mid_head {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: clamp(2.1rem, 4.2vw, 3.2rem);
  color: #fff;
}


.our-ministers {
  padding: 4rem 0;

  background: linear-gradient(to bottom,
      #8E8572 0%,
      #8E8572 50%,
      #4A4A4A 50%,
      #4A4A4A 100%);

}

/* Dark overlay */
.ministry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

/* TOP HEADER */
.ministry-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.ministry-header h5 {
  margin: 0;
  font-family: 'Squada One';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: clamp(28px, 3.4vw, 38px);
  color: #FFFFFF;
}

/* BOTTOM CONTENT */
.ministry-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.ministry-content p {
  margin: 0;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #FFFFFF;
}

/* ARROW BUTTON */
.ministry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border: 1.23678px solid #FFFFFF;
  border-radius: 31.5379px;
}

.ministry-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.ministry-link:hover .arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

.ministry-link:hover .arrow svg {
  filter: invert(100%) brightness(100%);

}

.ministry-link:hover {
  background-color: #CAA962;

}


.give-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #4a4a4a;
}

.give-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 4px;
}

.give-arrow {
  margin-top: 20px;
  width: 30px;
  height: 30px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.image-box {
  position: relative;
  overflow: hidden;
  /* border-radius:6px; */
}

.image-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .4s ease;
}

.image-box:hover img {
  transform: scale(1.08);
}

@media (max-width:991px) {
  .give-title {
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    margin-bottom: 20px;
  }

  .give-arrow {
    margin: 15px auto;
  }
}

.donation-wrapper {

  padding-top: 20px;
}

.donation-card {
  background: #f4f1ec;
  padding: clamp(24px, 4vw, 48px);
  height: 100%;
}

.donation-card h4 {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 37px);
  line-height: clamp(30px, 3.2vw, 39px);
  color: #4A4A4A;
}

.donation-card p {
  margin-bottom: 0;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: clamp(18px, 2.4vw, 23px);
  color: #5A5A5A;
}

.bank-info {
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
}

.bank-info p {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 37px);
  line-height: clamp(32px, 3.4vw, 43px);
  color: #FFFFFF;
}

.contact-us {
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
}

.contact-us .section-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

/* .contact-us h2  {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 2rem;

} */

.contact-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 30px;
  right: 30px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.7);
}

.contact-card h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 53px);
  line-height: 100%;
  text-transform: uppercase;
  color: #F5F3ED;
  max-width: 70%;
}

.contact-card p {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: clamp(20px, 2.8vw, 24px);
  text-transform: uppercase;
  color: #FFFFFF;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.bg-kids {
  background-color: #545454;
}

.bg-youth {
  background-color: #9a907d;
}

.bg-life {
  background-color: #9b6a00;
}


.contact-us::after {

  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 30px;
  background-image: url(../img/top-img.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  z-index: 99;

}

.event-slider {
  background: #D9D9D9;
  position: relative;
  overflow: hidden;
}

.es_slider {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.es_slider h4 {
  font-family: 'Squada One';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 77px);
  line-height: clamp(48px, 6.3vw, 81px);
  color: #030303;
  max-width: 30%;
}


.slider-wrapper {
  width: 100%;
  height: 600px;
  position: relative;
  border-radius: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background: #fff;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.card-box {
  text-align: center;
  width: 100%;
}

.card-box h2 {

  margin-bottom: 3rem;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 53px);
  line-height: 100%;
  text-transform: uppercase;
  color: #000000;
}

.card-box p {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

/* Custom Arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  color: #141B34;
  border: 1.5px solid #141B34;
}

.swiper-button-prev {
  top: 46px;
}

.swiper-button-next {
  bottom: 27px;
  top: auto;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 30px;
  color: #141B34;
  transform: rotate(90deg);
}

.event-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url('../img/bottom-img.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 10;
}


.custom-input-wrapper {
  width: 100%;
  max-width: 700px;
  background-color: #4a4a4a;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border: 2px solid #F5F3ED;
  border-radius: 2px;
  height: 85px;
}

.custom-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  width: 100%;
  font-size: 18px;
}

.custom-input::placeholder {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px !important;
  color: #F5F3ED;
}

.Our_Mission {
  padding-top: clamp(40px, 6vw, 75px);
}


#ministries_page .our-ministers {
  background: #F5F3ED !important;
}

#ministries_page .service-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
}

#ministries_page .service-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#ministries_page .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 25px;
  text-align: center;
}

.register_forms_services {
  padding: clamp(40px, 6vw, 70px) 0;
  background: #545454;
}

.need_support {
  padding: clamp(40px, 6vw, 70px) 0;
}

.php-email-form input[type=text],
.php-email-form input[type=email],
.php-email-form textarea,
.php-email-form select {
  font-size: 18px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #000000;
  background: rgba(217, 217, 217, 1);
  height: 56px;
  font-weight: 700;

}

.support_heading {
  font-family: 'Squada One';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: clamp(30px, 4vw, 39px);
  color: #4A4A4A;
}

.chevron_down {
  position: absolute;
  bottom: 15px;
  right: 20px;

}

.reg_form {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  color: #5A5A5A;
  margin-bottom: 0;
  padding: 1rem 1rem 0rem 0rem;
}

.register_forms_services form label {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
}

.send_msg {
  background: #FFFFFF;
  border: 1px solid #CAA962;
  padding: 5px 24px;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  line-height: 35px;
  color: #000000;
  margin-top: 2rem;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
}

.grid-item {
  min-height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order_text p {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 27px;
  line-height: 32px;
  text-transform: uppercase;
  color: #000000;

}

.latest_sermon {
  padding: clamp(40px, 6vw, 70px) 0;
  padding-top: 0;
}

.ls_text {

  font-family: 'Squada One';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: clamp(34px, 5vw, 51px);
  color: #000000;
}

.contact_forms {
  padding: clamp(40px, 6vw, 70px) 0;
  padding-top: 0;
}


.image-grid {
  position: relative;
}

.image-grid:before {
  content: '';
  right: 50%;
  border-left: 1px solid #ffffff;
  position: absolute;
  top: 0%;
  bottom: 0%;
}

.image-grid:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 0.5px;
  background-color: #ffffff;
}



/* modal video css */

.video-section {
  position: relative;
  background: url(../img/about-video-banner.png) center / cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 40px);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.video-content {
  position: relative;
  z-index: 2;
}

/* Play Button */
/* .play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.08);
}

.play-btn i {
  font-size: 32px;
  color: #000;
  margin-left: 5px;
}

.play-text {
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #000;
}

.play-btn:hover .play-text {
  opacity: 1;
} */
.hover_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 162px;
  height: 162px;
  padding: 40px;
  background: #ffffff;
  border-radius: 120px;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.45s ease;
}

/* Button expands on hover */
.hover_button:hover {
  width: 300px;
}

/* Icon stays fixed */
.button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hidden text by default */
.button__text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 0;
  transition:
    max-width 0.45s ease,
    opacity 0.25s ease,
    margin-left 0.3s ease;

  font-family: "Squada One", sans-serif;
  font-size: clamp(32px, 5.5vw, 77px);
  line-height: 1;
}

/* Text reveal on hover */
.hover_button:hover .button__text {
  max-width: 200px;
  opacity: 1;
  margin-left: 16px;
}


/* Text Box */
.info-box {
  background: #D9D9D9;
  color: #000000;
  padding: 30px;

}

.play_text h4 {
  font-family: 'Squada One';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 77px);
  line-height: clamp(38px, 5.8vw, 81px);
  color: #FFFFFF;
  max-width: 300px;
  margin-top: 20px;
}

.info-box p {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  text-transform: capitalize;
  color: #000000;
}

@media (max-width: 768px) {
  .video-section {
    min-height: auto;
    padding: 80px 0;
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn i {
    font-size: 26px;
  }

  .info-box {
    margin-top: 40px;
    max-width: 100%;
  }
}

/* ====================== Muscat Church Website css Farhan ends ==================== */


/* ====================== Muscat Church Website Media Queries Farhan ==================== */


@media screen and (max-width: 1440px) and (min-width: 1366px) {
  .big_heading {

    font-size: clamp(42px, 8vw, 72px);
    line-height: clamp(46px, 8.5vw, 80px);

  }

  .sermon_audio {
    padding-top: clamp(60px, 10vw, 100px);
  }
}

/* @media (max-width: 767px) {
  .service-card {
    height: 420px;
    margin-bottom: 20px;
  }
} */

/* Responsive */
@media (max-width: 576px) {
  .slider-wrapper {
    height: 500px;
    padding: 0 15px;
  }

  .how_imgs img {
    width: 50%;
  }

  .es_slider h4 {

    max-width: 50%;
  }


}

/* Responsive tweaks */
@media (max-width: 768px) {

  .contact-card {
    padding: 24px;
  }

  .bank-info {
    margin-top: 24px;
  }

  .service-divider {
    display: none;
  }

  .join-our-services {
    padding: 3rem 1rem;
  }

  .quote {
    margin-top: 2rem;
  }
}

@media (max-width: 640px) {
  .text_sec {
    padding: unset;
  }

  .es_slider {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }

  .footer .copyright p {

    font-size: 18px;
    line-height: 30px;

  }

  .play_text h4 {
   
    max-width: 100%;
  
}
}


/* ====================== Muscat Church Website Media Queries ends ==================== */