:root {
  --default-font: "Open Sans", system-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Jua", serif;  /*  "Merriweather", serif  */ 
  --nav-font: "Ubuntu", sans-serif;

  --background-color: #ffffff;
  --default-color: #272829;
  --heading-color: #DD9F52;
  --accent-color: #0B263D;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #e83e8c;
  --nav-hover-color: #0e3d6c;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0563bb;

  scroll-behavior: smooth;
}

.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;
}


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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: var(--heading-font);
}

/* Email Form
------------------------------*/
.email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: email-form-loading 1s linear infinite;
}

@keyframes email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
  margin-left: 0.5rem;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.d-none {
  display: none !important;
}
/*--------------------
# Header
--------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .header {
    background-color: lavender;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header~main {
    margin-left: 160px;
  }

  .header~main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--heading-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

@media (max-width: 576px) {
  .container-fluid span {
    font-size: 1.0rem !important;
  }

  .container-fluid img {
    height: 35px !important;
  }
}
.floating-support-btn {
    position: fixed;
    bottom: 7px;
    margin-right: 6px;
    left: 50%;
    transform: translateX(-50%);
    background-color:var(--heading-color);
    color: white;
    padding: 4px 13px;
    border-radius: 50px;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    animation: pulse 2.5s infinite;
    opacity: 0;
    pointer-events: none;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.floating-support-btn.active {
  opacity: 1;
  pointer-events: auto;  
}

.floating-support-btn:hover {
 background-color: var(--accent-color);
 transform: translateX(-50%) scale(1.05);
 color: white;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.07); }
}

/*--------------------
# Nav Menu
--------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
    color: #D6921C;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 8px;
    font-size: 15px;
    border-radius: 50px;
    background: #BCBFC5;
    height: 56px;
    width: 100%;
    overflow: hidden;
    transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
  
  .mobile-nav-header,
  .mobile-social-links {
    display: none !important;
  }
}

.mobile-nav-header {
  border-bottom: 1px solid var(--nav-hover-color);
}

.mobile-church-name {
  font-weight: bold;
  font-family: 'Jua', cursive;
  font-size: 1.1rem;
  color: var(--accent-color);
}


.mobile-logo {
  height: 80px;  
  width: 80px;
  border-radius: 50%;
  object-fit: cover; 
  border: 3px solid var(--accent-color); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}

.navmenu a:hover,
.navmenu li:hover>a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover>a span {
  display: block;
}

/*--------------------
# Footer
--------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 0;
  position: relative;
}

.footer p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 30px;
  padding: 0;
}

.footer .social-links {
  margin-bottom: 30px;
}

.social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color) !important;
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: 0.3s;
}

.social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.church-details,
.credits {
  max-width: 45%;
}

.logo-img {
  height: 70px;
  width: 70px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.church-details {
  text-align: left;
}

.sitecredits {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 14px !important;
}

.credits {
  text-align: right;
}
.footer a {
  color: inherit;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .church-details,
  .credits {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .credits {
    text-align: center;
  }
}

/*--------------------
# Pre-loader
--------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------
# Hero
--------------------*/

.hero .container {
  animation: fadeIn 2s ease-out forwards;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 3rem !important;
  font-family: 'Georgia', serif;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: var(--heading-color) !important;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero p {
  color: #ffffff !important;
  font-size: 1.4rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin: 15px auto;
  animation: fadeInUp 1.5s ease-in-out;
}
.donateBtn,
.supportBtn {
  background-color: var(--heading-color);
  color: white;
  border: none;
  padding: 7px 16px;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(238, 189, 80, 0.2);
  transition: all 0.3s ease;
}
.donateBtn:hover{
  background-color: var(--surface-color);
   color: var(--accent-color);;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(238, 189, 80, 0.2);
}
.supportBtn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(238, 189, 80, 0.2);
}

#supportBtn + div small {
  font-size: 0.95rem;
  opacity: 0.8;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero .sparkle-effect {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0.7;
}
h1 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}
.centered-highlight {
  background-color:#314F82;
  color: white;
  font-style: italic;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: 'Georgia', serif;
  display: table;     
  margin: 0 auto;     
  text-align: center;  
  margin-top: 15px;
}
.centered-highlight span {
  font-size: 2rem;
  line-height: 0;
  vertical-align: middle;
}

.about .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; 
  text-align: center;
}

.church-name {
  color: white;
  font-size: 1rem;
  font-family: 'Jua', Georgia, serif;
  font-weight: 700; 
  margin-left: 0.5rem; 
  white-space: nowrap;
}


@media (max-width: 600px) {
  .church-name {
    font-size: 0.8rem;
  }
}

/*--------------------
# Scroll
--------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color:var(--heading-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------
# Page Title
--------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------
# About
--------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

.donate-section {
  background: var(--accent-color);
  background-size: cover;
  color: #fff;
}

.donate-section-heading {
	background: var(--accent-color);
    color: #fff;
    font-weight: 300;
    line-height: 0.9;
	font-family: "Merriweather", serif ;
}
@media (max-width: 600px) {
  .donate-section-heading {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }
}
.donate-section-btn
{
	background-color: white;
color: var(--accent-color);
}

.donate-section h2 {
  font-size: 2.5rem;
}

.bible-ref
{
	font-size: medium;
    font-weight: bold;
}

.bible-verse p {
  font-size: 1.3rem;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

/*--------------------
# Ministries
--------------------*/
.ministries .ministry-item {
  background-color: lavender;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: 0.3s;
}

.ministries .ministry-item .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ministries .ministry-item .icon i {
  font-size: 36px;
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

.ministries .ministry-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  z-index: 1;
  transition: 0.4s;
}

.ministries .ministry-item .icon path {
  fill: color-mix(in srgb, currentColor 15%, transparent);
  transition: 0.4s;
}

.ministries .ministry-item:hover .icon i {
  color: #fff;
}

.ministries .ministry-item:hover .icon path {
  fill: currentColor;
}

.item-primary i { color: #0d6efd; }
.item-success i { color: #198754; }
.item-warning i { color: #ffc107; }
.item-danger i  { color: #dc3545; }
.item-info i    { color: #0dcaf0; }
.item-pink i    { color: #f3268c; }
.item-purple i  { color: #6f42c1; }

.item-primary:hover .icon path { fill: #0d6efd; }
.item-success:hover .icon path { fill: #198754; }
.item-warning:hover .icon path { fill: #ffc107; }
.item-danger:hover  .icon path { fill: #dc3545; }
.item-info:hover    .icon path { fill: #0dcaf0; }
.item-pink:hover    .icon path { fill: #f3268c; }
.item-purple:hover  .icon path { fill: #6f42c1; }


/*--------------------
# Contact
--------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .email-form {
  height: 100%;
}

.contact .email-form input[type=text],
.contact .email-form input[type=email],
.contact .email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color:white;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .email-form input[type=text]:focus,
.contact .email-form input[type=email]:focus,
.contact .email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .email-form input[type=text]::placeholder,
.contact .email-form input[type=email]::placeholder,
.contact .email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact-message {
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
    background-color: #e7f1fc;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 76, 153, 0.08);
    font-family: 'Segoe UI', sans-serif;
}
.donation-heading,
.ministries-heading,
.contact-message h2 {
    font-size: 1.8rem;
    color:var(--heading-color);
    margin-bottom: 15px;
}

.contact-message p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}


.contact .info-item h3 {
  text-align: left;              
  color: var(--accent-color);   
  margin-bottom: 5px;
}


.contact .info-item {
  align-items: flex-start;
}


/*--------------------
# Donation Popup
--------------------*/
#donationModal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow: auto;
}

.modal-content {
  background: linear-gradient(135deg, var(--accent-color), #fff2f4);
  padding: 30px;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.heart-icon {
  font-size: 30px;
  color: var(--heading-color);
}

h2 {
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  text-align: left;
}

.info-box p {
  text-align: center;
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

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

.info-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
  color: #333;
}

.info-box li .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
}

.icon-green { background: #eafaf1; color: #28a745; }
.icon-blue { background: #e8f0fe; color: #007bff; }
.icon-red { background: #fdecea; color: #dc3545; }
.icon-yellow { background: #fff9e6; color: #ffc107; }

.input-row {
 display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.input-row label {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--contrast-color);
}

.input-row input {
  padding: 10px 14px;
  border: 1.5px solid #ff99bb;
  border-radius: 10px;
  font-size: 15px;
  background-color: var(--input-bg);
  transition: all 0.3s ease;
  outline: none;
  flex: 1;
  margin-left: 20px;
}


.input-row input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 102, 153, 0.2);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

#noBtn, #yesBtn {
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

#noBtn {
  border: 2px solid lightpink;
  background: white;
}

#noBtn:hover {
  background-color: #eee;
  border-color: var(--heading-color);
  color: var(--heading-color);
}

#yesBtn {
  background: linear-gradient(to right, var(--heading-color), #ff6699);
  border: none;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#yesBtn:hover {
  transform: scale(1.05);
}

small {
  display: block;
  text-align: center;
  color: black;
  font-size: 13px;
  margin-top: 10px;
}

.contact-info {
  font-size: 13px;
  color: black;
  text-align: center;
}

.contact-info a {
  color: var(--heading-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
}

.close-btn:hover {
  color: white;
}

@media (max-width: 600px) {
  .modal-content {
    width: 100%;
    padding: 20px;
  }

  .input-row input {
    font-size: 14px;
    padding: 8px 12px;
  }

  #yesBtn, #noBtn {
    font-size: 14px;
    padding: 8px 20px;
  }
}


@media (max-width: 480px) {
  .input-row {
    flex-direction: column;
    align-items: stretch;
  }
  .input-row label {
    margin-bottom: 5px;
  }
  .input-row input {
    margin-left: 0;
    max-width: 100%;
  }
}

/*--------------------
# Video Section
--------------------*/
.vision-section {
  background-size: cover;
  background-attachment: scroll;
  color: #000;
  padding: 1rem 1rem;
  position: relative;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 240, 0.85);
  z-index: 0;
}

.vision-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.vision-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  flex: 1 1 500px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vision-content h2 {
  font-weight: 800;
  font-size: 2rem;
  color: #1a1a40;
  text-align: center;
  margin-bottom: 1rem;
}

.vision-content p,
.vision-item div {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.vision-item {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.vision-item img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.vision-item strong {
  color: #1a1a40;
  font-weight: 600;
}

.video-column {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: white;
  transition: all 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-caption {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a40;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
  }
}