@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html{
  overflow-x: hidden;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  /* line-height: 1.6; */
  color: #333;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}
/* body {
    padding-top: 80px;  
} */

a { text-decoration: none; color: inherit; }



/* HEADER */
/* Header styles */
header {
    background: rgba(17, 17, 17, 0.938);
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;       /* ✅ Fix: was sticky */
    top: 0;
    left: 0;
    width: 100%;           /* ✅ Ensure full width */
    z-index: 1000;
}


.header-container-fx {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo styles */
.logo-fx {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1001;
}

.logo-img-fx {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

/* Desktop navigation */
.nav-menu-fx {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link-fx {
    color: white;
    text-decoration: none;
    /* font-weight: 500; */
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 18px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.nav-link-fx:hover {
    /* background-color: rgba(255, 255, 255, 0.1); */
    border-bottom: 2px solid red;
    color: rgb(255, 46, 46);
}

/* Dropdown styles */
.dropdown-fx {
    position: relative;
}

.dropdown-content-fx {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    padding: 0.75rem 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-content-fx a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.dropdown-content-fx a:hover {
    color: #ff0000;
}

.dropdown-fx:hover .dropdown-content-fx {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Social media icons */
.social-icons-fx {
    display: flex;
    gap: 1rem;
}

.social-link-fx {
    color: rgb(255, 0, 0);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.xfacebook {
    color: rgba(18, 54, 255, 0.623);
}

.xinstagram {
    color: rgba(255, 166, 0, 0.644);
}

.xyoutube {
    color: rgba(255, 0, 0, 0.623);
}

.xtiktok {
    color: rgba(197, 197, 197, 0.644);
}

.xtwitter {
    color: rgba(14, 148, 201, 0.678);
}

.social-link-fx:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

/* Mobile menu button */
.menu-toggle-fx {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle-fx span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-social-icons-fx {
    display: none;
}

@media only screen and (max-width: 1006px) {
  .nav-link-fx {
    color: white;
    text-decoration: none;
    /* font-weight: 500; */
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 16px;
  }   
}

/* Mobile styles */
@media (max-width: 920px) {
    header {
        padding: 1rem;
    }
    
    .menu-toggle-fx {
        display: flex;
    }

    .nav-menu-fx {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(17, 17, 17, 0.979);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        overflow: hidden;
        transition: height 0.5s ease;
        z-index: 999;
        gap: 0;
        /* padding-bottom: 40px; */
        padding-left: 30px;
    }

    .nav-menu-fx.active-fx {
        min-height: 85vh;
        height: fit-content;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .nav-menu-fx li {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.5s ease;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-menu-fx.active-fx li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu-fx.active-fx li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu-fx.active-fx li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu-fx.active-fx li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu-fx.active-fx li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu-fx.active-fx li:nth-child(5) { transition-delay: 0.5s; }

    .dropdown-content-fx {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        text-align: center;
        margin: 0 auto;
        width: 80%;
    }

    .dropdown-fx.active-fx .dropdown-content-fx {
        max-height: 300px;
        margin-top: 0.5rem;
    }

    .dropdown-content-fx a {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.8rem;
        /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    }

    .dropdown-content-fx a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .social-icons-fx {
        display: none;
    }
    
    .mobile-social-icons-fx {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .mobile-social-icons-fx a {
        color: white;
        /* font-size: 1.5rem; */
        margin-bottom: 40px;
    }

    .nav-link-fx{
      font-size: 20px;
    }
}

/* Content for demonstration */
.content-fx {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    flex: 1;
}


/* Animation for menu toggle */
.menu-toggle-fx.active-fx span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle-fx.active-fx span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-fx.active-fx span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* header ends */


/* Footer Background */
.footerbg {
  width: 100%;
  padding-top: 200px;
  background-color: #fff;
  background-image: url("../images/ministries/banners/28.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Footer Main */
footer {
  background: #271616;
  color: #fff;
  padding: 80px 20px 40px;
  font-size: 0.95rem;
  margin-top: 120px;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  gap: 40px;
}

.footer-about,
.footer-newsletter,
.footer-menus {
  flex: 1;
  min-width: 250px;
}

.footer-about h3,
.footer-menus h3,
.footer-newsletter h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ff4d4d;
}

.footer-about p,
.footer-newsletter p {
  /* line-height: 1.6; */
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* Quick Links into 2 columns */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 30px;
}

.footer-links a {
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-links a:hover {
  color: #ff4d4d;
}

/* Newsletter */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 0.95rem;
}

.footer-newsletter button {
  padding: 12px 20px;
  border: none;
  background: #000000;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #a50000;
}

/* Social Media Icons FSM */
.social-iconsfsm {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-iconsfsm a {
  width: 40px;
  height: 40px;
  background: #ff1a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: 0.3s;
}

.social-iconsfsm a:hover {
  background: #000000;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 1.2rem;
}

/* Responsive */
  @media only screen and (max-width: 1051px) {
    .footer-newsletter .newsletter-form {
      flex-direction: column;
      gap: 12px;
    }
  }

.footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 991px) {
  footer {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 15px;
    font-size: 1.8rem;
  }

  .footer-menus {
    align-items: center;
  }

  .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    border-radius: 5px;
  }

  .social-iconsfsm {
    justify-content: center;
  }

  footer {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 60px 20px 30px;
  }
}
/* footer ends */



  /* ========================= */
    /* Background Hero Section   */
    /* ========================= */
    .bg-container {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 5%;
    }

    .bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .bg1 {
      background-image: url("../images/exphoto/1.webp"); /* back image */
      z-index: 0;
    }

    .bg2 {
      background-image: url("../images/4.webp"); /* top image */
      opacity: 0.5;
      z-index: 1;
    }

    /* Content over background */
    .bg-container .content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: left;
      max-width: 700px;
    }

    .bg-container .content h1 {
      font-size: 3.5rem;
      font-weight: 800;
      font-family: "Rajdhani", sans-serif;
      line-height: 1.2;
      margin-bottom: 20px;
      text-shadow: 2px 4px 6px rgba(0,0,0,0.6);
    }

    .bg-container .content p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      font-weight: 400;
      /* line-height: 1.6; */
      max-width: 600px;
      text-shadow: 2px 4px 6px rgba(0,0,0,0.6);
    }

    .btn-group {
      display: flex;
      gap: 15px;
    }

    /* Buttons */
    .btn {
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 1.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: #e53935;       /* red */
      color: #fff;
    }
    .btn-primary:hover {
      background: #b71c1c;       /* deep red */
    }

   

    .btn-secondary {
      background: transparent;
      border: 2px solid #ff0000; /* red border */
      color: #fff;
      animation: glowRed 1s ease-in-out infinite alternate;
    }

    @keyframes glowRed {
      from {
        box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000;
      }
      to {
        box-shadow: 0 0 15px #272727, 0 0 30px #4e1414;
      }
    }

    
    .btn-secondary:hover {
      background: #fff;
      color: #e53935;
      animation: none;
    }

    /* Wave divider */
    .custom-shape-divider-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      transform: rotate(180deg);
      z-index: 3;
    }
    .custom-shape-divider-bottom svg {
      position: relative;
      display: block;
      width: calc(155% + 1.3px);
      height: 217px;
      transform: rotateY(180deg);
    }
    .custom-shape-divider-bottom .shape-fill {
      fill: #b91a1ad0;
      animation: waveMove 6s ease-in-out infinite;
    }
    .custom-shape-divider-bottom path:nth-child(1) { animation-delay: 0s; }
    .custom-shape-divider-bottom path:nth-child(2) { animation-delay: 2s; }
    .custom-shape-divider-bottom path:nth-child(3) { animation-delay: 4s; }

    @keyframes waveMove {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(15px); }
      100% { transform: translateY(0); }
    }

    /* Example content section after wave */
    .headcard {
      width: 100vw;
      margin-top: 50px;
      margin-bottom: 50px;
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 50vh;
      background-color: rgb(187, 5, 5);
      box-shadow: -1px 0px 41px 1px rgba(0,0,0,0.78);
      -webkit-box-shadow: -1px 0px 41px 1px rgba(0,0,0,0.78);
      -moz-box-shadow: -1px 0px 41px 1px rgba(0,0,0,0.78);
    }
    .headcard h1 {
      font-size: 8rem;
      color: rgb(255, 255, 255);
      font-family: 'Barlow Condensed', sans-serif;
      /* font-weight: 300; */
    }
    
    .headcard h1 span {
      color: rgb(22, 0, 0);
    }

    @media only screen and (max-width: 550px) {
      .custom-shape-divider-bottom svg {
        height: 100px;
      }

      .headcard h1 {
        font-size: 6rem;
        line-height: 4rem;
      }

      .headcard h1 span {
        font-size: 5rem;
      }
    }




/* Sub bg starts here */
/* ================================
   Background Container (Sub Page)
   ================================ */
.bg-container-sub {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Background layers */
.bgsub {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.bg1sub {
  background-image: url("../images/exphoto/10.webp"); /* back image */
}

.bg2sub {
  background-image: url("../images/4.webp"); /* top image */
  opacity: 0.4; /* slightly transparent */
}

.nwh2 h2{
  color: white !important;
}
.nwh2 h2 span{
  color: rgb(255, 208, 0) !important;
}

.bgimg3{
  background-image: url("../images/2.webp"); /* top image */
}
/* Foreground content */
.content-sub {
  position: relative;
  z-index: 2;
  color: #ffffffc9;
  padding: 20px;
}

.content-sub h1 {
  font-size: 6rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.content-sub p {
  font-size: 1.8rem;
  margin: 10px 0;
  font-family: "Barlow Condensed", sans-serif;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
  max-width: 1000px;
}

.content-sub p a:hover{
  color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-sub h1 {
    font-size: 3rem;
  }
  .content-sub p {
    font-size: 1.5rem;
    text-align: left;
  }
  
  .content-sub2 p {
    text-align: center;
  }

  .content-sub {
    padding: 10px;
  }
}

/* Sub bg ends here */





/* ebook page start */
.afeb-body {
  margin: 0;
  padding: 20px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.afeb-heading {
  text-align: center;
  margin-bottom: 20px;
}

.afeb-table-container {
  max-width: 85vw;
  margin: 0 auto;
  overflow-x: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.afeb-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.afeb-table th,
.afeb-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.afeb-table th {
  background-color: #333;
  color: white;
}

.afeb-table tbody tr:nth-child(odd) {
  background-color: #ffe5e5; /* Light red */
}

.afeb-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Title link styled like SN text */
.afeb-title-link {
  color: #333; /* same as SN text */
  text-decoration: none;
  font-weight: 500;
}
.afeb-title-link:hover {
  text-decoration: underline;
}

.afeb-download {
  color: #2e2e2e;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
  display: inline-block;
  border: 1px solid grey;
  font-family: Arial, Helvetica, sans-serif;
}

.afeb-download:hover {
  background: rgb(255, 107, 107);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  /* hide SN + Download column headers */
  .afeb-table th:nth-child(1),
  .afeb-table th:nth-child(3) {
    display: none;
  }

  /* hide SN td */
  .afeb-table td:nth-child(1) {
    display: none;
  }

  .afeb-table {
    min-width: 100%;
  }

  .afeb-table td,
  .afeb-table th {
    padding: 14px 12px;
  }

  /* stack title & button */
  .afeb-table td:nth-child(2) {
    display: block;
    width: 100%;
    text-align: left;   /* ✅ Title left-aligned */
    margin-bottom: 10px;
  }

  .afeb-table td:nth-child(2) a {
    display: inline-block;
  }

  .afeb-table td:nth-child(3) {
    display: block;
    width: 100%;
    text-align: center; /* ✅ Button centered */
  }

  .afeb-table td:nth-child(3) .afeb-download {
    margin: 10px auto;
    font-size: 16px;
  }
}
/* ebook page ends */




/* hero 2 start */
.custom-shape-divider-bottom-1755982592 {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1755982592 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px; /* adjust as needed */
}

.custom-shape-divider-bottom-1755982592 .shape-fill {
    fill: #FFFFFF; /* match your section bg */
}
/* hero 2 ends */




/* prayer request page starts */

    .contact-section {
      display: flex;
      justify-content: center;
      align-items: stretch;
      min-height: 100vh;
      padding: 20px;
      gap: 20px;
    }

    .contact-img {
      flex: 1;
      background: url("../images/ministries/banners/26.webp") no-repeat center center/cover;
      border-radius: 10px;
    }

    .contact-form {
      flex: 1;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.281);
    }

    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 24px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 16px;
      color: rgb(65, 65, 65);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #d1d1d1;
      border-radius: 6px;
      font-size: 14px;
      background: #f9f9f9;
    }

    .form-row {
      display: flex;
      gap: 15px;
    }
    .form-row .form-group {
      flex: 1;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-group button {
      width: 100%;
      padding: 14px;
      background: #e53935; /* red */
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    /* Multiple animated light streaks */
    .form-group button::before,
    .form-group button::after,
    .form-group button span::before {
      content: "";
      position: absolute;
      top: 0;
      width: 50%;
      height: 100%;
      transform: skewX(-20deg);
      pointer-events: none;
    }

    .form-group button::before {
      left: -80%;
      background: rgba(255, 255, 255, 0.2);
      animation: shine1 3s linear infinite;
    }

    .form-group button::after {
      left: -100%;
      background: rgba(255, 0, 0, 0.15); /* soft red glow */
      animation: shine2 4s linear infinite;
    }

    .form-group button span::before {
      left: -120%;
      background: rgba(255, 255, 255, 0.1); /* dimmer streak */
      animation: shine3 5s linear infinite;
    }

    @keyframes shine1 {
      0% { left: -80%; }
      100% { left: 120%; }
    }
    @keyframes shine2 {
      0% { left: -100%; }
      100% { left: 140%; }
    }
    @keyframes shine3 {
      0% { left: -120%; }
      100% { left: 160%; }
    }

    .form-group button:hover {
      background: #b71c1c; /* deep red */
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }
      .contact-img {
        width: 100%;           /* Full width on mobile */
        aspect-ratio: 16 / 9;  /* Auto height based on width */
        flex: none;            /* Prevent flex shrinking */
      }
      .form-row {
        flex-direction: column;
      }
    }

    .largimg{
        width: 100%;
    }

    .largimg img{
        width: 100%;
    }

    .shorttitle{
        width: 100%;
        min-height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: rgb(255, 255, 255);
        padding: 10px;
    }

    .shorttitle h3{
        font-size: 2rem;
    }

    .subtitlep{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      min-height: 100px;
    }


 .shorttitle2 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 10px; */
  margin-bottom: 10px;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  /* Background image */
  background-image: url("../images/exphoto/6.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative; /* ✅ Needed for overlay */
  overflow: hidden;
  text-align: center;
}

/* ✅ Transparent overlay */
.shorttitle2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.514); /* white transparent overlay */
  z-index: 0; /* stays below the text */
}

.shorttitle2 h3 {
  font-size: 2rem;
  position: relative;
  z-index: 1; /* text stays above overlay */
  color: white;
}


/* prayer request page ends */



/* social media icons start */
    .social-boxn1 {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.164);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      max-width: 95vw;
    }
    
    .social-boxn1:hover {
      box-shadow: none;
      transition: 0.5s ease-in;
    }

    .social-boxn1 a {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #000000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.281);
      text-decoration: none;
      transition: 0.3s;
      /* color: #000; */
      margin: 10px;
    }

    .social-boxn1 a:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    .social-boxn1 i {
      font-size: 30px;
      color: white;
    }

    .social-boxn1 i:hover {
      font-size: 30px;
      color: rgb(255, 12, 12);
    }

    /* Mobile (shrink sizes) */
    @media (max-width: 600px) {
      .social-boxn1 a {
        width: 45px;
        height: 45px;
        margin: 3px;
      }
      .social-boxn1 i {
        font-size: 20px;
      }
    }

    /* Tablet (medium size) */
    @media (min-width: 601px) and (max-width: 1024px) {
      .social-boxn1 a {
        width: 55px;
        height: 55px;
      }
      .social-boxn1 i {
        font-size: 24px;
      }

      .shorttitle h3{
        font-size: 1.5rem;
      }
    }

    /* Brand colors */
    .youtuben1   { color: #FF0000; }
    .twittern1   { color: #000000; }
    .facebookn1  { color: #1877F2; }
    .instagramn1 { color: orangered; }
    .tiktokn1 { color: #000; }
/* social media icons ends */





/* responsive table starts */
  .tablecv {
      background: #fff;
      margin: 0;
      padding: 20px;
      display: flex;
      justify-content: center;
    }

    .table-container {
      max-width: 800px;
      width: 100%;
      overflow-x: auto; /* ✅ Responsive scroll if needed */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      background: #fff;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }

    thead {
      background-color: #cc1100; /* Light red theme */
      color: #fff;
    }

    th, td {
      padding: 12px 15px;
      text-align: left;
      /* border-bottom: 1px solid #f4cccc; */
    }

    tbody tr:nth-child(even) {
      background-color: #fceaea; /* softer red for alternating rows */
    }

    tbody tr:hover {
      background-color: #fde0dc; /* hover effect */
    }

    th {
      font-size: 20px;
    }

    td {
      font-size: px;
    }

    @media (max-width: 600px) {
      th, td {
        padding: 10px;
        font-size: 22px;
      }
    }
/* responsive table ends */






/* port folio starts */
.affin9-container {
  width: 100%;
  margin: auto;
}
.affin9-title {
  font-size: 24px;
  text-align: center;
  margin: 20px 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  color: red;
}
.affin9-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}
.affin9-card {
  border: 1px solid #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  background: #f9f9f9;
  cursor: pointer;
}

.affin9-card:hover{
  box-shadow: 5px 5px 10px rgba(143, 143, 143, 0.514);
}

.affin9-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}
.affin9-video {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.affin9-video iframe {
  width: 100%;
  height: 200px;
}
.affin9-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.affin9-modal-content {
  max-width: 90%;
  max-height: 90%;
}
.affin9-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.gallerybtn{
  text-decoration: none;
  color: rgb(59, 59, 59);
  width: 100%;
  text-align: right;
  font-size: 16px;
}


.gallerybtn:hover{
  color: rgb(189, 0, 0);
}


@media (max-width: 768px) {
  .affin9-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .affin9-video {
      grid-template-columns: repeat(1, 1fr);
  }
}
/* port folio ends */


/* video display start */
section.video-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;

      /* 🔥 Gradient overlay + transparent background image */
      background: 
        linear-gradient(135deg, rgba(255, 77, 77, 0.432), rgba(179, 0, 0, 0.623)),
        url("../images/exphoto/4.webp"); /* <-- replace with your image */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin-top: -20px;
    }

    .video-container {
      position: relative;
      width: 80%;
      max-width: 900px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      background: #000;
    }

    .video-container video {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Optional: border glow */
    .video-container::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 3px solid rgba(255, 255, 255, 0.2);
      border-radius: 15px;
      pointer-events: none;
    }

    /* Mobile responsive */
    @media (max-width: 600px) {
      section.video-section {
        padding: 20px 10px;
      }
      .video-container {
        width: 100%;
        border-radius: 10px;
      }
    }
    
    
    
      /* youtube iframe */
    .video-container iframe {
      width: 100%;
      height: 500px; /* ✅ fixed height for desktop */
      display: block;
    }
    
    @media (max-width: 600px) {
      .video-container iframe {
        height: 250px; /* ✅ smaller height for mobile */
      }
    }

/* video display ends */



/* about affin ministries starts */
    .abt2cards {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 10px;
      display: flex;
      justify-content: center;
    }

    .card-containerfn {
      display: flex;
      width: 100%;
      background: #fff;
      padding: 10px;
      box-sizing: border-box;
      border-radius: 15px;
      overflow: hidden;
    }

    /* Left Image */
    .card-imagefn {
      flex: 0 0 40%;
    }

    .card-imagefn img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      border-radius: 15px 0 0 15px;
    }

    /* Right Text with background image + gradient */
    .card-contentfn {
      flex: 0 0 60%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(254, 242, 242, 0.85)), 
        url('../images/ministries/banners/37.webp');
      background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border-top-right-radius: 15px;
      border-bottom-right-radius: 15px;
      box-sizing: border-box;
    }
    
    .card-contentfn2 {
      background: 
        linear-gradient(rgba(255, 255, 255, 0.103), rgba(254, 242, 242, 0.205)), 
        url('../images/exphoto/10.jpg');
    }

    .card-contentfn h2 {
      margin: 0 0 0px;
      font-size: 4rem;
      color: #b91c1c;
      font-family: 'Alex Brush', cursive;
      font-weight: normal;
    }

    .card-contentfn p {
      margin: 0;
      font-size: 1.8rem;
      color: #363636;
      font-family: 'Barlow Condensed', sans-serif;
    }

    .dshr{
      width: 20%;
      border: 5px solid red;
      margin-top: 5%;
      margin-bottom: 5%;
    }

    /* Responsive */
    @media (max-width: 768px) {

      .card-containerfn {
        flex-direction: column;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
      }

      .card-imagefn img {
        border-radius: 0;
        width: 100%;
      }

      .card-contentfn {
        flex: 0 0 auto;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        padding: 10px; /* ✅ only 10px padding */
        margin: 0;
        width: 100%;
        box-sizing: border-box;
      }

      .card-contentfn h2,
      .card-contentfn p {
        word-wrap: break-word; /* ✅ prevent overflow */
      }
      
      .card-contentfn h2{
        margin: unset;
        font-size: 3rem;
      }
      
      .card-contentfn p {
        font-size: 1.6rem;
        line-height: unset;
        padding-bottom: 20px;
      }

      .smfontcc{
        font-size: 1.2rem !important;
      }
    }
/* about affin ministries ends */

/* home youtube iframe starts */
.video-wrapper-ytiframe {
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/photos/10.webp');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.iframe-container-ytiframe {
    width: 90vw;
    max-width: 1200px;
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    height: 0; /* Standard for aspect ratio */
    overflow: visible;
    border-radius: 12px; /* Rounded corners on container */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* Shadow on container */
}

.iframe-container-ytiframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0; /* No border-radius on iframe */
    box-shadow: none; /* No shadow on iframe */
    transform: none !important; /* Prevent transform issues */
    z-index: 1; /* Ensure iframe is above background */
}
/* home youtube iframe ends */


  .ccemail{
      width: 100%;
      /* min-height: 200px; */
      margin-top: 40px;
      margin-bottom: 10px;
      background-color: rgb(255, 255, 255);
  }

  .ccemail P a i{
    color: red;
  }




/* new layout style starts */
  .layoutx1{
      width: 100%;
      min-height: 50px;
      padding-top: 10px;
      padding-bottom: 10px;
  }

  .layoutx1 img{
      width: 100%;
      height: auto;
  }

  .layoutx1 p{
      padding: 25px;
      margin-top: 15px;
      padding-left: 5vw;
      padding-right: 5vw;
      color: rgb(36, 36, 36);
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .layoutx1 p span{
      font-size: 25px;
      max-width: 1200px;
      font-family: 'Barlow Condensed', sans-serif;
      color: rgb(36, 36, 36);
  }

  
  
  @media only screen and (max-width: 800px) {
    .layoutx1 p{
      padding-left: unset;
      padding-right: unset;
      padding: 20px;
      margin-top: 5px;
    }

    .layoutx1 p span{
      font-size: 22px;
    }

  .withbg{
    background-color: rgb(172, 21, 21);
  }

    .withbg span{
      color: rgba(255, 255, 255, 0.877) !important;
    }
  }

  .withbg{
    background-color: rgb(172, 21, 21);
  }

  .withbg span{
    color: rgba(255, 255, 255, 0.877) !important;
  }

/* new layout style ends */






/* what we believe card starts */
section.vswwb {
  padding: 80px 20px;
  max-width: 1300px;
  margin: auto;
}

section.vswwb h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #8b0000;
  position: relative;
}

section.vswwb h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff0000;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.gridvswwb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vscolor2 h2{
  color: #9c0a0a !important;
}

/* Ensure the last two cards in the last row span the remaining columns (desktop only) */
@media(min-width: 769px) {
  .gridvswwb > :nth-last-child(2),
  .gridvswwb > :nth-last-child(1) {
    grid-column: span 2;
  }
}

.cardvswwb {
  background: #0c0d18cb;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.74);
  text-align: center;
  transition: 0.4s;
}

.cardvswwb:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.cardvswwb i {
  font-size: 40px;
  color: #ff0000;
  margin-bottom: 15px;
}

.cardvswwb h3 {
  font-size: 20px;
  color: #ffd900;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.cardvswwb p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffffc7;
}

@media(max-width: 768px) {
  section.vswwb { 
    padding: 20px 0; /* remove side padding completely */
  }

  section.vswwb h2 { 
    font-size: 28px; 
    padding: 0 10px; /* keep heading readable */
  }

  .gridvswwb {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 10px; /* tighter gap */
    padding: 0 10px; /* just 10px left/right */
    
  }

  /* Remove forced span on small screens */
  .gridvswwb > * {
    grid-column: auto !important;
  }

  .cardvswwb {
    padding: 15px; /* tighter inside padding */
    width: 100%; /* take full width */
    margin-top: 10px;
  }

  .cardvswwb h3 {
    font-size: 18px;
  }

  .cardvswwb p {
    font-size: 18px;
  }
}

.vsbgwwb {
  background-color: rgb(255, 174, 0);
}

.vsbgwwb p {
  max-width: 800px;
}
/* What we believe card ends */




/* mission vision starts */
section.vs {
  padding: 80px 20px;
  max-width: 1300px;
  margin: auto;
}

section.vs h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  position: relative;
  /* font-family: 'Segoe UI', sans-serif; */
}

section.vs h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: rgb(202, 202, 202);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.gridvs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cardvs {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.479);
  text-align: center;
  transition: 0.4s;
}

.cardvs:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.082);
}

.cardvs i {
  font-size: 40px;
  color: #ff0909;
  margin-bottom: 15px;
}

.cardvs h3 {
  font-size: 20px;
  color: #000000e3;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.cardvs p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Segoe UI', sans-serif;
  color: #292929;
}

@media (max-width: 768px) {
  section.vs {
    padding: 50px 15px;
  }

  section.vs h2 {
    font-size: 30px;
  }

  .cardvs p {
  font-size: 18px;
  line-height: 1.6;
}
}

.vsbg {
  background-color: rgb(37, 37, 37);
}

.vsbg p {
  max-width: 800px;
  color: rgb(255, 220, 220);
  font-size: 30px;
}

@media only screen and (max-width: 500px) {
  .vsbg p {
    font-size: 25px;
}

}

/* mission vision ends */


/* donat online home starts */

.im22{
  width: 100%;
  height: 300px;
  background-color: #2b2525;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}


.im223{
  width: 100%;
  height: 300px;
  background-color: #4d0101;
  display: flex;
  justify-content: center;
  align-items: center;
}

.im223 p{
  max-width: 500px;
  color: white;
}

.cktg{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  background-color: rgb(165, 0, 0);
  overflow-y: hidden;;
}

.ovf{
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.containertv {
  position: relative;
  width: 95%;
}



.overlaytp {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000ab;
  overflow: hidden;
  width: 100%;
  height: 5%;
  transition: .5s ease;
}

.containertv:hover .overlaytp {
  height: 100%;
}

.textun {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.xlll{
  font-size: 2rem;
  font-family: 'Rajdhani', sans-serif;
}


.stretchbg{
  background: #fa0000;
  background: linear-gradient(90deg, rgba(250, 0, 0, 1) 0%, rgba(206, 1, 1, 1) 0%, rgba(102, 5, 5, 1) 50%, rgba(255, 28, 28, 1) 100%, rgba(158, 0, 0, 1) 100%);
  width: 100vw;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stretchbg p{
  color: rgba(255, 255, 255, 0.76);
  max-width: 600px;
  font-size: 1.5rem;
  text-align: center;
}

@media (max-width: 556px) {
  .xlll{
    font-size: 1.2rem;
  }

}

.banner-btn2{
  border: none;
  background-color: white;
  color: rgb(0, 0, 0);
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
}


.banner-btn2:hover{
  transition: 0.5s ease-in-out;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

/* donat online home ends */



/* pay online page starts */
/* Container */
.afnpaycontainer {
  display: flex;
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Sidebar (tabs) */
.afnpaytab {
  flex: 1;
  background: linear-gradient(180deg, #7f1d1d, #b91c1c);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: stretch;
  padding: 20px 0;
}

/* Buttons inside tab */
.afnpaytab button {
  background: #b91c1c;
  color: white;
  padding: 20px;
  margin: 0 15px;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border-radius: 8px;
}

.afnpaytab button:hover {
  background: #7f1d1d;
  transform: translateX(5px);
}

.afnpaytab button.afnpayactive {
  background: #a11212;
  font-weight: bold;
  border-left: 4px solid #fff;
}

/* Content area */
.afnpaytabcontent {
  flex: 3;
  padding: 30px;
  background: #fff;
  display: none;
  animation: afnpayfadeEffect 0.5s;
  position: relative;
}

.afnpaytabcontent h3 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #b91c1c;
}

.afnpaytabcontent p {
  line-height: 1.6;
  color: #555;
  font-size: 25px;
}

/* Grid for cards */
.afnpaycards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.afnpaycard {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.afnpaycard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(127, 29, 29, 0.6);
}

.afnpaycard h4 {
  color: #7f1d1d;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.afnpaycard .afnpayaccount-number {
  font-size: 35px;
  font-weight: bold;
  color: #b91c1c;
  letter-spacing: 2px;
  word-break: break-word;
}

.afnpaycard p {
  margin: 8px 0;
  color: #444;
  font-size: 25px;
}

/* PayPal section */
.afnpaypaypal-box, .afnpaypaystack-box, .afnpaypayu-box {
  text-align: center;
  margin-top: 40px;
}

.afnpaypaypal-box img, .afnpaypaystack-box img, .afnpaypayu-box img {
  max-width: 200px;
  margin-bottom: 20px;
}

.afnpaypaypal-email {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  background: #f1f5f9;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Paystack and PayU form */
.afnpaypaystack-form, .afnpaypayu-form {
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
}

.afnpaypaystack-form label, .afnpaypayu-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
  font-size: 16px;
}

.afnpaypaystack-form input, .afnpaypayu-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.afnpaypaystack-form button, .afnpaypayu-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #b91c1c;
  cursor: pointer;
  transition: background 0.3s;
}

.afnpaypaystack-form button:hover, .afnpaypayu-form button:hover {
  background: #7f1d1d;
}

/* Fade animation */
@keyframes afnpayfadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Currency dropdown styling */
.afnpaypaystack-form select#afnpaycurrency, .afnpaypayu-form select#afnpaycurrency-payu {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  appearance: none;
  background-image: url("../images/2.webp");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.afnpaypaystack-form select#afnpaycurrency:focus, .afnpaypayu-form select#afnpaycurrency-payu:focus {
  outline: none;
  border-color: #b91c1c;
  box-shadow: 0 0 5px rgba(185, 28, 28, 0.3);
}

.afnpaypaystack-form select#afnpaycurrency:hover, .afnpaypayu-form select#afnpaycurrency-payu:hover {
  border-color: #b91c1c;
}

.afnpaypaystack-form select#afnpaycurrency option, .afnpaypayu-form select#afnpaycurrency-payu option {
  padding: 10px;
  background-color: #fff;
  color: #333;
}

/* Ensure consistency with other form elements */
.afnpaypaystack-form input, .afnpaypayu-form input,
.afnpaypaystack-form button, .afnpaypayu-form button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.afnpaypaystack-form button, .afnpaypayu-form button {
  background-color: #b91c1c;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.afnpaypaystack-form button:hover, .afnpaypayu-form button:hover {
  background-color: #7f1d1d;
}

/* Overlay for Paystack and PayU */
.afnpayoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.651);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.afnpayoverlay h4 {
  font-size: 20px;
  font-weight: 600;
  color: #b91c1c;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 90%;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {

  .afnpaycontainer {
    flex-direction: column;
  }

  .afnpaytab {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .afnpaytab button {
    flex: 1 1 100%;
    margin: 5px 0;
    padding: 15px;
    font-size: 16px;
    transform: none;
  }

  .afnpaytab button:hover {
    transform: none;
  }

  .afnpaytab button.afnpayactive {
    border-left: none;
    border-bottom: 4px solid #fff;
  }

  .afnpaytabcontent {
    padding: 20px;
  }

  .afnpaytabcontent h3 {
    font-size: 22px;
  }

  .afnpaytabcontent p {
    font-size: 20px;
  }

  .afnpaycards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .afnpaycard {
    padding: 20px;
  }

  .afnpaycard h4 {
    font-size: 20px;
  }

  .afnpaycard .afnpayaccount-number {
    font-size: 30px;
  }

  .afnpaycard p {
    font-size: 20px;
  }

  .afnpaypaypal-box img, .afnpaypaystack-box img, .afnpaypayu-box img {
    max-width: 150px;
  }

  .afnpaypaypal-email {
    font-size: 20px;
    padding: 10px 20px;
  }

  .afnpaypaystack-form, .afnpaypayu-form {
    max-width: 100%;
    margin: 15px auto;
  }

  .afnpaypaystack-form label, .afnpaypayu-form label {
    font-size: 15px;
  }

  .afnpaypaystack-form input, .afnpaypayu-form input {
    padding: 10px;
    font-size: 14px;
  }

  .afnpaypaystack-form button, .afnpaypayu-form button {
    padding: 12px;
    font-size: 15px;
  }

  .afnpaypaystack-form select#afnpaycurrency, .afnpaypayu-form select#afnpaycurrency-payu {
    padding: 10px;
    font-size: 14px;
    background-size: 14px;
  }

  .afnpayoverlay h4 {
    font-size: 18px;
    padding: 15px;
    max-width: 85%;
  }

}
/* pay online page ends */


.largefontcc h3{
  font-size: 10rem;
  font-family: 'Great Vibes', cursive;
  line-height: 1.1;
}

.largefontcc{
  font-size: 10rem;
  font-family: 'Great Vibes', cursive;
  line-height: 1.1;
}

.largefontcc3 h3 {
  font-size: 10rem;
  font-family: 'Great Vibes', cursive;
  line-height: 1.1;
}

.largefontcc3 p{
  color: rgba(255, 13, 13, 1);
  font-size: 3rem;
}


@media only screen and (max-width: 648px) {
  .largefontcc h3{
    font-size: 5rem;
    font-family: 'Great Vibes', cursive;
    line-height: 1.1;
  }

  .largefontcc{
    font-size: 5rem;
    font-family: 'Great Vibes', cursive;
    line-height: 1.1;
  }

  .largefontcc3 h3 {
    font-size: 5rem;
    font-family: 'Great Vibes', cursive;
    line-height: 1.1;
  }

  .largefontcc3 p{
    color: rgb(255, 187, 0);
    font-size: 1.8rem;
  }
}

.lmbtn{
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}


.lmbtn a {
    display: inline-block;
    padding: 12px 150px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #727272;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    /* box-shadow: 0 5px 4px rgba(0, 0, 0, 0.342); */
    box-shadow: -1px 4px 38px -9px rgba(0,0,0,0.9);
    -webkit-box-shadow: -1px 4px 38px -9px rgba(0,0,0,0.9);
    -moz-box-shadow: -1px 4px 38px -9px rgba(0,0,0,0.9);
}

.lmbtn a:hover {
    transform: translateY(-2px);
    padding: 12px 50px;

}

.lmbtn a:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


@media only screen and (max-width: 900px) {
  .lmbtn a {
    padding: 12px 50px;
    font-size: 20px;
    font-weight: unset;
  }
}


.noebook{
  text-align:center;
  color:#575757; 
  font-size: 20px;
  padding: 20px;
  width: 100%;
}



/* back to top starts */
.floating-divbt {
  width: 50px;
  height: 50px;
  background-color:rgba(0, 0, 0, 0.5);
  /* border-radius: 50%; */
  position: fixed;
  top: 70%;
  right: 5px;
  display: none; /* Initially hidden */
  z-index: 1000000;
  box-shadow: 0 5px 10px rgba(1, 33, 54, 0.575);
  cursor: pointer;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.floating-divbt:hover {
  background-color:rgba(141, 0, 0, 0.81);
  box-shadow: none;
}
/* back to top ends */




/* 404 page starts */
 .error40-container {
      background: #1a1a1a;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
      color: #fff;
    }
    .error40-box {
      max-width: 600px;
      padding: 40px;
    }
    .error40-code {
      font-size: 140px;
      font-weight: bold;
      color: #f50000; /* deep red */
      margin-bottom: 10px;
    }
    .error40-message {
      font-size: 22px;
      color: #ddd;
      margin-bottom: 25px;
    }
    .error40-actions a {
      display: inline-block;
      padding: 12px 28px;
      margin: 8px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      color: #d1a3a3;
      background: #cc0000;
      box-shadow: 0 4px 12px rgba(204,0,0,0.4);
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .error40-actions a:hover {
      background: #990000;
      transform: translateY(-3px);
    }
/* 404 page ends */







/* pagination starts */
.paginationcl {
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.paginationcl ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
}

.paginationcl ul li {
  background-color: #fff;
  margin: 0 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.paginationcl ul li:hover {
  box-shadow: none;
  border: 1px solid #ccc;
}

.paginationcl ul li a {
  display: block;
  padding: 8px 15px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  transition: color 0.3s ease, background 0.3s ease;
}

.paginationcl ul li a:hover {
  color: #fff;
  background-color: #ff2e13;
  border-radius: 5px;
}

/* active page styling */
.paginationcl ul li.active a {
  color: #fff;
  background-color: #ff2b0f;
  pointer-events: none;
  border-radius: 5px;
}

/* pagination ends */





.affin9-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile default = 1 card per row */
  gap: 20px; /* spacing between cards */
  margin: 20px 0;
}

.affin9-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

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

/* Make iframes responsive */
.affin9-card iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

/* Desktop: 2 cards per row */
@media (min-width: 768px) {
  .affin9-grid {
    grid-template-columns: 1fr 1fr;
  }
}




.spaceup{
  width: 100%;
  min-height: 92px;
}

.spaceup2{
  width: 100%;
  min-height: 72px;
}


@media only screen and (max-width: 400px) {
  .spaceup2{
    min-height: 80px;
  }  
}





.presentbg{
  background-color: rgb(255, 0, 0);
  padding: 20px;
  border-radius: 20px;
}








/* new contact pg section starts */

.newcic{
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: rgba(255, 0, 0, 0.021);
}

.contact-container-afs25 {
  min-width: 88vw;
  background: #ffffff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-height: 400px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact-container-afs25 h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
.contact-container-afs25 p.subtitle-afs25 {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}
.contact-box-afs25 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px; /* adds even spacing between cards */
}
.contact-info-afs25 {
  flex: 1 1 calc(33.333% - 20px); /* ensures max 3 per row */
  min-width: 280px;
  background-color: rgb(255, 223, 223);
  padding: 25px 15px 35px;
  box-sizing: border-box;
}
.contact-info-afs25 i {
  font-size: 28px;
  color: #ff4d4d;
  margin-bottom: 10px;
}
.contact-info-afs25 h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  font-family: 'Poppins', sans-serif;
}
.contact-info-afs25 p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  font-family: 'Poppins', sans-serif;
}
.email-afs25 a {
  color: #ff4d4d;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}
.email-afs25 a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-box-afs25 {
      flex-direction: column;
      margin-right: 10px;
  }
}


@media only screen and (max-width: 392px) {
  .contact-info-afs25 {
    flex: 1 1 calc(33.333% - 20px); /* ensures max 3 per row */
    min-width: 200px !important;
    max-width: 350px !important;
    background-color: rgb(255, 223, 223);
    padding: 25px 15px 35px;
    box-sizing: border-box;
  }

  .contact-info-afs25 p {
    font-size: 14px;
  }
}


/* new contact pg section ends */




/* testimony page starts */
/* ===== Carousel Wrapper ===== */
.carousel-affints {
  position: relative;
  min-height: 100vh; /* at least full screen */
  height: auto;      /* allow it to grow if content is longer */
  overflow: hidden;
}

/* Background images that fade */
.bg-affints {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-affints.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.overlay-affints {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

/* Content (testimonies) */
.content-wrapper-affints {
  position: relative;
  z-index: 3;
  min-height: 100vh; /* take at least full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.content-affints {
  max-width: 700px;
  height: 100%;
}

.content-affints h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.testifier-affints {
  color: black;
  background-color: rgba(255, 255, 255, 0.815);
  padding: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.content-affints p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

/* Shake animation */
@keyframes shake-affints {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.shake-affints {
  animation: shake-affints 0.6s;
}

/* Navigation */
.prev-affints, .next-affints {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s;
  z-index: 4;
}

.prev-affints:hover, .next-affints:hover {
  color: red;
}

.prev-affints { left: 20px; }
.next-affints { right: 20px; }

/* Bottom controls */
.controls-affints {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 4;
}

.pause-btn-affints {
  background: red;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  margin-right: 15px;
  cursor: pointer;
  font-size: 0.9rem;
}

.pause-btn-affints:hover {
  background: darkred;
}

.dot-affints {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot-affints.active {
  background-color: red;
}

/* ===== Testimony Form ===== */
.form-section-affints {
  background: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.form-section-affints h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.form-intro-affints {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  font-family: Arial, Helvetica, sans-serif;
}

.form-card-affints {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  width: 100%; /* ensure full stretch on small screens */
}

.form-group-affints {
  margin-bottom: 20px;
}

.form-group-affints label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
  font-family: Arial, sans-serif;
}

.form-group-affints input,
.form-group-affints textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
  resize: none;
  font-family: Arial, sans-serif;
}

.form-group-affints input:focus,
.form-group-affints textarea:focus {
  border-color: red;
  box-shadow: 0 0 8px rgba(255,0,0,0.3);
  outline: none;
}

.form-card-affints button {
  display: inline-block;
  width: 100%;
  background: red;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: Arial, sans-serif;
}

.form-card-affints button:hover {
  background: darkred;
  transform: translateY(-2px);
}

/* Section title */
.testh1{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  color: rgb(88, 88, 88);
  background-color: rgb(241, 231, 231);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.644);
  z-index: 2;
  margin-bottom: 10px;
  font-family: 'Great Vibes', cursive;
  font-size: 7rem;
}

/* Responsive tweaks */
@media only screen and (max-width: 768px) {
  .form-card-affints {
    max-width: 90%;   /* expand form on tablets and small devices */
    padding: 30px;
  }
}

@media only screen and (max-width: 469px) {
  .testh1 {
    font-size: 4rem;
  }
  .form-card-affints {
    max-width: 100%; /* full width on very small phones */
    padding: 20px;
    border-radius: 8px;
  }

}


@media only screen and (max-width: 609px) {
 
  .prev-affints, .next-affints {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.205);
  }
}
/* testimony page ends */



/* schools page added css start */
.covf19 {
  width: 100%;
  min-height: 300px;
  background-color: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 3rem;
  padding: 10px;
}


@media only screen and (max-width: 450px) {
  .covf19 {
    min-height: 200px;
    font-size: 1.5rem;
  }
}


.affinss2-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}



.affinss2-hero h1 {
  font-size: 3em;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.74);
  padding: 20px;
  border-radius: 10px;
}


.sectionwtext2{
  padding: 15px;
  width: 100%;
  background-color: rgb(221, 221, 221);
  margin-bottom: 30px;
  padding-bottom: 50px;
}

.sectionwtext2 h3{
  padding-top: 50px;
  margin-top: 20px;
}

.sectionwtext2 p{
  font-size: 25px;
  max-width: 800px;
  padding-top: 20px;
}
/* 3 cards 2 ends */

/* schools page added css ends */








/* mtestimony video and photos ends */
/* === PHOTO SECTION === */
    .card-container-nts {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      width: 90vw;
      margin: 40px auto;
    }

    .card-nts {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: inset 4px 4px 8px rgba(0,0,0,0.1),
                  inset -4px -4px 8px rgba(255,255,255,0.7),
                  0 4px 12px rgba(0,0,0,0.15);
      flex: 1 1 calc(33.333% - 20px); /* 3 per row */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-nts:hover {
      transform: translateY(-6px);
      box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05),
                  inset -4px -4px 8px rgba(255,255,255,0.8),
                  0 8px 20px rgba(0,0,0,0.25);
    }

    .card-nts img {
      width: 100%;
      display: block;
      height: auto;
      cursor: pointer;
    }

    .card-nts p {
      margin: 18px;
      text-align: center;
      color: #333;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .card-nts {
        flex: 1 1 100%;
      }
    }

    /* Modal for photos */
    .modal-nts {
      display: none; 
      position: fixed; 
      z-index: 9999; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    .modal-content-nts {
      position: relative;
      animation: zoomIn-nts 0.4s ease;
    }

    .modal-content-nts img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      display: block;
      margin: 0 auto;
    }

    .close-nts {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    @keyframes zoomIn-nts {
      from {transform: scale(0.7); opacity: 0;}
      to {transform: scale(1); opacity: 1;}
    }

    /* === VIDEO SECTION === */

    .card-container-tsvid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      width: 90vw;
      margin: 40px auto;
    }

    .card-tsvid {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: inset 4px 4px 8px rgba(0,0,0,0.1),
                  inset -4px -4px 8px rgba(255,255,255,0.7),
                  0 4px 12px rgba(0,0,0,0.15);
      flex: 1 1 calc(50% - 20px); /* 2 per row */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-tsvid:hover {
      transform: translateY(-6px);
      box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05),
                  inset -4px -4px 8px rgba(255,255,255,0.8),
                  0 8px 20px rgba(0,0,0,0.25);
    }

    .card-tsvid video {
      width: 100%;
      display: block;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      background: #000;
    }

    .card-tsvid p {
      margin: 15px;
      text-align: center;
      color: #333;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .card-tsvid {
        flex: 1 1 100%;
      }
    }



    /* pagination */
    .pagination-pagnts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap; /* wrap for small screens */
  }

  .pagination-pagnts a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .pagination-pagnts a:hover {
    background: #4f46e5; /* nice indigo */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }

  .pagination-pagnts .active-pagnts {
    background: #4f46e5;
    color: #fff;
    font-weight: bold;
    pointer-events: none;
  }

  .pagination-pagnts .prev-pagnts,
  .pagination-pagnts .next-pagnts {
    font-weight: bold;
    font-size: 1.1rem;
  }

  @media (max-width: 480px) {
    .pagination-pagnts a {
      padding: 8px 12px;
      font-size: 0.9rem;
    }
  }
    /* testimony video and photos ends */
    
    
    

.withbg23{
  background-color: rgba(250, 140, 67, 0.301);
}


.covf1920{
  font-family: "Rajdhani", sans-serif;
  /* font-weight: 600; */
  font-weight: lighter;
}

.dcbg{
  background-color: rgb(196, 7, 7);
}