
html {
  scroll-behavior: smooth;
}


.grecaptcha-badge {
    visibility: hidden !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f9f9f9;
    color: #333;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1D3144;
    box-shadow: 0 4px 6px rgba(0,0,0,0.10);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    height: 80px;
    transition: all 0.3s;
}

.logo img {
    height: 43px;
    transition: height 0.3s;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    white-space: nowrap;
    transition: color 0.6s;
}

.navbar a:hover {
    color: #E27615;
}

.contact-btn {
    background: #E27615;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.5s;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #1D3144;
}

.fade-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg,
        #E27615 0%,
        #E27615 65%,
        rgba(226, 118, 21, 0.7) 80%,
        transparent 92%);
}

/* ==================== Dropdown ==================== */
.has-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "";
    font-size: 0.65em;
    margin-left: 6px;
    opacity: 0.7;
    transition: transform 0.25s ease;
}

.has-dropdown:hover > .dropdown-toggle::after,
.has-dropdown.open > .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ==================== HAMBURGER & MOBILE MENU ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 3000;
}

.hamburger span {
    width: 34px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(9px, 9px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    max-width: 88vw;
    height: 100vh;
    background: #fff;
    padding: 110px 40px 60px;
    transition: right 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 2500;
    box-shadow: -15px 0 40px rgba(0,0,0,0.25);
    overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    color: #333;
    z-index: 2600;
}

.mobile-menu ul {
    list-style: none;
    margin-bottom: 60px;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 28px;
}

.mobile-menu a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-menu .contact-btn {
    width: 100%;
    padding: 18px;
    font-size: 19px;
    border-radius: 50px;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 2400;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #1D3144;
    color: #FBFAFF;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.footer a {
    color: #FBFAFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-logo-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.know-grow-go {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FBFAFF;
    font-size: 0.7rem;
}

.footer-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-columns .column {
    flex: 0 0 auto;
    min-width: 250px;
}

.footer-columns h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-columns h3.highlight {
    color: #E27615;
}

.footer-columns ul {
    list-style: none;
    padding: 0;
}

.footer-columns ul li {
    margin-bottom: 10px;
}

.contact-column .contact-info li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 1.5rem;
    display: inline-block;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #FBBF0A;
}

.footer-bottom {
    background-color: #143948;
    padding: 0px 0;
    height: 100px;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    gap: 10px;
}

.footer-bottom-content .privacy-link {
    color: #E27615;
}

.footer-bottom-content .privacy-link:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .right-section {
        display: none;
    }
    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
    }
    .know-grow-go {
        flex-direction: column;
        gap: 10px;
    }
}







/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 800px;
    background-image:
       
        url('img/LCBG.png');          /* Fixed: removed space */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    font-family: 'Articulat CF', sans-serif;
    padding-top: 80px;                /* Important for fixed header */
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}
.hero h1 {
    font-family: 'Articulat CF', sans-serif;
    font-weight: 700;
    font-size: 70px;
    margin-bottom: 40px;
    line-height: 1.1;
}
.service-time-strip {
    background-color: #E27615;
    color: white;
    font-family: 'Articulat CF', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 6px;
}
.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.8s ease;
    min-width: 180px;
    font-family: 'Articulat CF', sans-serif;
}
.btn-white {
    background-color: white;
    color: #001433;
}
.btn-orange {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btn-white:hover {
    background-color: #E27615;
    color: white;
     
}
.btn-orange:hover {
    background-color: white;
    color: #001433;
    
}
/* ==========================================
   HERO RESPONSIVE MEDIA QUERIES
   ========================================== */
/* Large Desktop */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: 3.3rem;
    }
}
/* Medium Desktop / Small Laptop */
@media (max-width: 1128px) {
    .hero h1 {
        font-size: 3.1rem;
    }
}
/* Tablet Landscape */
@media (max-width: 992px) {
    .hero {
        min-height: 700px;
    }
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 35px;
    }
    .btn {
        padding: 15px 36px;
        min-width: 170px;
    }
}
/* Tablet Portrait */
@media (max-width: 850px) {
    .hero {
        min-height: 650px;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
}
/* Mobile Landscape */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    .buttons {
        gap: 16px;
    }
    .btn {
        padding: 14px 32px;
        min-width: 160px;
        font-size: 1.05rem;
    }
    .service-time-strip {
        font-size: 1rem;
        padding: 8px 0;
    }
}
/* Small Mobile Landscape */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
/* Small Mobile Portrait */
@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    .btn {
        padding: 13px 28px;
        min-width: 100%;
        max-width: 280px;
    }
    .service-time-strip {
        font-size: 0.9rem;
        padding: 8px 0;
        margin-bottom: 25px;
    }
}
/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.85rem;
    }
    .btn {
        font-size: 1rem;
    }
}


/* ==========================================
   LATEST MESSAGE SECTION
   ========================================== */
.latest-message-section {
    background: #f4f1ee;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}
.latest-message-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}
.latest-message-title {
    margin: 0 0 25px;
    font-size: 4rem;
    font-weight: 800;
    color: #174f5a;
    line-height: 1;
    text-transform: uppercase;
}

/*
    ROW WRAPPER FOR ORANGE IMAGE BOX + BLUE TEXT BOX
*/
.message-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 750px;
    max-width: 100%;
    margin: 0 auto 25px;
}

/*
    ORANGE IMAGE BOX
    Swap the <img> src in the HTML to change the image
*/
/*.message-image-box {
    flex: 0 0 90px;
    width: 90px;
    height: 70px;
    background: #df7b12;
    border-radius: 10px;
    overflow: hidden;
}
.message-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}*/

/*
    CHANGE THIS WIDTH ONLY
    Box stays centered and scales from center
*/
.message-box {
    flex: 1 1 auto;
    min-width: 0;
    background: #123f51;
    padding: 14px 20px;
    box-sizing: border-box;
	height: 70px;
	border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.message-box h2 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
	line-height: 25px;
	
}
.message-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #222222;
}
.message-button {
    display: inline-block;
    background: #df7b12;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}
.message-button:hover {
    transform: translateY(-2px);
}
/* ==========================================
   RESPONSIVE MEDIA QUERIES TEMPLATE
   ========================================== */
/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {
}
/* Medium Desktop / Small Laptop (1128px and down) */
@media (max-width: 1128px) {
    .latest-message-title {
        font-size: 3.5rem;
    }
    .message-row {
        width: 700px;
    }
}
/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {
    .latest-message-title {
        font-size: 3rem;
    }
    .message-row {
        width: 600px;
    }
}
/* Tablet Portrait & Smaller Tablets (850px and down) */
@media (max-width: 850px) {
    .latest-message-title {
        font-size: 2.7rem;
    }
    .message-row {
        width: 90%;
    }
}
/* Mobile Landscape / Standard Mobile (768px and down) */
@media (max-width: 768px) {
    .latest-message-section {
        height: auto;
        padding: 50px 20px;
    }
    .latest-message-title {
        font-size: 2.3rem;
    }
    .message-box h2 {
        font-size: 1.6rem;
    }
    .message-text {
        font-size: 1rem;
    }
}
/* Small Mobile Landscape (640px and down) */
@media (max-width: 640px) {
    .latest-message-title {
        font-size: 2rem;
    }
}
/* Small Mobile Portrait (480px and down) */
@media (max-width: 480px) {
    .latest-message-title {
        font-size: 1.8rem;
    }
    .message-row {
        gap: 12px;
    }
    .message-image-box {
        flex: 0 0 60px;
        width: 60px;
    }
    .message-box {
        padding: 14px 15px;
    }
    .message-box h2 {
        font-size: 1.3rem;
    }
    .message-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 1rem;
    }
}
/* Extra Small Mobile (360px and down) */
@media (max-width: 360px) {
    .latest-message-title {
        font-size: 1.5rem;
    }
    .message-box h2 {
        font-size: 1.1rem;
    }
}

/* ==========================================
   EVENTS SECTION (BASE)
========================================== */
.events-section {
  width: 100%;
  height: 600px;
  background-image: url(img/eventsbg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  box-sizing: border-box;
}

.events-title {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

/* ==========================================
   FLIP CARDS SECTION
========================================== */
.flip-cards-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* MAIN CAROUSEL STRIP */
.card-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 1100px;
  align-items: center;
  justify-content: flex-start;
  scrollbar-width: none;
}

.card-wrapper::-webkit-scrollbar {
  display: none;
}

/* Centering fix */
.card-wrapper::before,
.card-wrapper::after {
  content: "";
  flex: 1 0 auto;
}

/* ==========================================
   FLIP CARD
========================================== */
.flip-card {
  flex: 0 0 320px;
  height: 380px;
  perspective: 1200px;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  border-radius: 16px;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.flip-card-front {
  background: #111;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
}

.flip-card-back {
  background: #F8F4F0;
  color: #181818;
  transform: rotateY(180deg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover effects */
.flip-card:hover {
  transform: scale(1.06);
}

/* Buttons */
.back-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.more-info-btn,
.share-event__btn {
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.more-info-btn {
  background: white;
  color: #E27615;
}

.share-event__btn {
  background: #E27615;
  color: white;
}

/* Calendar Card */
.calendar-card .flip-card-inner {
  transform: none !important;
}

.calendar-card .flip-card-back {
  background: #1e3a5f;
  text-align: center;
  justify-content: center;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {
  .events-section {
    height: 550px;
  }
  .card-wrapper {
    max-width: 1000px;
  }
}

/* Medium Desktop / Small Laptop (1128px and down) */
@media (max-width: 1128px) {
  .events-title {
    font-size: 38px;
  }
  .flip-card {
    flex: 0 0 300px;
    height: 360px;
  }
}

/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {
  .events-title {
    font-size: 36px;
  }
  .flip-card {
    flex: 0 0 290px;
    height: 355px;
  }
  .card-wrapper {
    gap: 18px;
    padding: 18px;
  }
}

/* Tablet Portrait & Smaller Tablets (850px and down) */
@media (max-width: 850px) {
  .events-section {
    height: 520px;
  }
  .events-title {
    font-size: 34px;
  }
  .flip-card {
    flex: 0 0 280px;
    height: 345px;
  }
}

/* Mobile Landscape / Standard Mobile (768px and down) */
@media (max-width: 768px) {
  .events-section {
    height: auto;
    min-height: 500px;
    padding: 40px 0;
  }

  .events-overlay {
    padding: 30px 15px;
  }

  .events-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  /* Stack cards vertically on mobile */
  .card-wrapper {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    max-width: 100%;
    padding: 15px 20px;
    gap: 25px;
    align-items: center;
  }

  /* Remove centering pseudo elements on mobile */
  .card-wrapper::before,
  .card-wrapper::after {
    display: none;
  }

  .flip-card {
    flex: 0 0 auto;
    width: 85%;
    max-width: 320px;
    height: 340px;
    scroll-snap-align: none;
  }
}

/* Small Mobile Landscape (640px and down) */
@media (max-width: 640px) {
  .events-title {
    font-size: 28px;
  }

  .flip-card {
    width: 88%;
    height: 330px;
  }

  .card-wrapper {
    gap: 20px;
  }
}

/* Small Mobile Portrait (480px and down) */
@media (max-width: 480px) {
  .events-section {
    min-height: 480px;
  }

  .events-title {
    font-size: 24px;
  }

  .flip-card {
    width: 90%;
    height: 380px;
  }

  .card-wrapper {
    padding: 10px 15px;
    gap: 22px;
  }
}

/* Extra Small Mobile (360px and down) */
@media (max-width: 360px) {
  .events-title {
    font-size: 22px;
  }

  .flip-card {
    width: 92%;
    height: 310px;
  }

  .card-wrapper {
    gap: 18px;
  }

  .back-buttons {
    gap: 8px;
  }

  .more-info-btn,
  .share-event__btn {
    padding: 9px 12px;
    font-size: 14px;
  }
}

/* ====================== ABOUT US SECTION ====================== */
.aboutus-section {
  min-height: 500px;
  background-image: url('img/aboutBG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay removed as per your preference */
.aboutus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.aboutus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* Left Side - Text */
.aboutus-content {
  flex: 0.8;
  max-width: 45%;
}

.aboutus-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1D3144;
  margin-bottom: 24px;
  line-height: 1.05;
}

.aboutus-text {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #1D3144;
  max-width: 90%;
}

/* Right Side - Image */
.aboutus-image-wrapper {
  flex: 1.2;
  max-width: 55%;
  min-width: 45%;
  border-radius: 12px;
  overflow: hidden;
}

.aboutus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================== RESPONSIVE BREAKPOINTS ====================== */

/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {
  .aboutus-section {
    min-height: 580px;
  }
  .aboutus-container {
    gap: 70px;
  }
  .aboutus-image-wrapper {
    flex: 1.15;
    max-width: 52%;
  }
  .aboutus-content {
    flex: 0.85;
    max-width: 48%;
  }
}

/* Medium Desktop / Small Laptop (1128px and down) */
@media (max-width: 1128px) {
  .aboutus-section {
    min-height: 550px;
  }
  .aboutus-heading {
    font-size: 3.2rem;
  }
  .aboutus-container {
    gap: 60px;
  }
}

/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {
  .aboutus-section {
    min-height: 680px;
    padding: 60px 0;
  }
  .aboutus-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 30px;
    align-items: center;
    text-align: center;
  }
  .aboutus-content,
  .aboutus-image-wrapper {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
  .aboutus-heading {
    font-size: 2.8rem;
  }
  .aboutus-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Tablet Portrait & Smaller Tablets (850px and down) */
@media (max-width: 850px) {
  .aboutus-section {
    min-height: 650px;
  }
  .aboutus-heading {
    font-size: 2.6rem;
  }
  .aboutus-container {
    gap: 45px;
  }
}

/* Mobile Landscape / Standard Mobile (768px and down) */
@media (max-width: 768px) {
  .aboutus-section {
    min-height: auto;
    padding: 50px 0;
  }
  .aboutus-container {
    padding: 0 25px;
    gap: 40px;
    text-align: center;
  }
  .aboutus-content {
    text-align: center;
  }
  .aboutus-heading {
    font-size: 2.4rem;
  }
  .aboutus-text {
    font-size: 1.15rem;
  }
  .aboutus-image-wrapper {
    max-width: 380px;
  }
}

/* Small Mobile Landscape (640px and down) */
@media (max-width: 640px) {
  .aboutus-section {
    padding: 45px 0;
  }
  .aboutus-container {
    text-align: center;
  }
  .aboutus-content {
    text-align: center;
  }
  .aboutus-heading {
    font-size: 2.2rem;
  }
  .aboutus-text {
    font-size: 1.12rem;
  }
  .aboutus-container {
    gap: 35px;
  }
}

/* Small Mobile Portrait (480px and down) */
@media (max-width: 480px) {
  .aboutus-section {
    padding: 40px 0;
  }
  .aboutus-container {
    padding: 0 20px;
    gap: 32px;
    text-align: center;
  }
  .aboutus-content {
    text-align: center;
	 
  }
  .aboutus-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .aboutus-text {
    font-size: 1.1rem;
    line-height: 1.25;
	   margin-left: 20px;
  }
  .aboutus-image-wrapper {
    max-width: 340px;
    border-radius: 10px;
  }
}

/* Extra Small Mobile (360px and down) */
@media (max-width: 360px) {
  .aboutus-section {
    padding: 35px 0;
  }
  .aboutus-container {
    padding: 0 18px;
    gap: 28px;
    text-align: center;
  }
  .aboutus-content {
    text-align: center;
  }
  .aboutus-heading {
    font-size: 1.85rem;
  }
  .aboutus-text {
    font-size: 1.05rem;
  }
  .aboutus-image-wrapper {
    max-width: 300px;
  }
}

/* ==========================================
   SINGLE GIVING BLOCK CSS - BANK DETAILS ONLY
   ========================================== */

/* Section Container */
.payment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 20px 40px;
    width: 1200px;
    margin: 0 auto;
    min-height: 800px;
}

/* Wrapper to hold image block + content block side by side */
.payment-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* SINGLE WRAPPER - Centered */
.single-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Separate full-image block on the left */
.image-block {
    flex: 0 0 39%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Dark overlay */
.image-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.23);
    z-index: 1;
}

/* For single block, use the Pinehurst image style */
.single-image-block {
    background-image: url('img/605752193_18053096255664002_7426844028144351711_n.jpg');
}

/* Heading text in image block */
.image-block h2 {
    margin: 0;
    font-size: 2.2em;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

/* Main content block */
.payment-block {
    flex: 1;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
    min-height: 400px;
}

.single-payment-block {
    background-color: #1D3144;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Column styling */
.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Centered bank details */
.centered-bank {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-bank p {
    margin: 0;
    line-height: 2;
    font-size: 1.3em;
    color: #FFFFFF;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.08);
    padding: 2rem 3rem;
    border-radius: 20px;
    backdrop-filter: blur(2px);
    width: auto;
    min-width: 280px;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {

}

/* Medium Desktop / Small Laptop (1128px and down) */
@media (max-width: 1128px) {
    .payment-section {
        width: 95%;
    }
}

/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {

}

/* Tablet Portrait & Smaller Tablets (850px and down) */
@media (max-width: 850px) {
    .payment-section {
        width: 95%;
        max-width: 800px;
        padding-top: 80px;
    }

    .single-payment-block {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Mobile Landscape / Standard Mobile (768px and down) */
@media (max-width: 768px) {
    .payment-section {
        width: 92%;
        padding: 60px 10px 20px;
    }

    /* Move blue block below image */
    .payment-wrapper {
        flex-direction: column;
    }

    .image-block {
        flex: none;
        width: 100%;
        min-height: 280px;
    }

    .payment-block,
    .single-payment-block {
        width: 100%;
        min-height: auto;
    }

    .single-payment-block {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .centered-bank p {
        padding: 1.5rem 2rem;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        box-sizing: border-box;
    }
}

/* Small Mobile Landscape (640px and down) */
@media (max-width: 640px) {
    .image-block {
        min-height: 240px;
    }

    .single-payment-block {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .centered-bank p {
        font-size: 1.1em;
        padding: 1.2rem 1.5rem;
    }
}

/* Small Mobile Portrait (480px and down) */
@media (max-width: 480px) {
    .image-block {
        min-height: 220px;
    }

    .image-block h2 {
        font-size: 1.8em;
        padding: 25px;
    }

    .single-payment-block {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .centered-bank p {
        font-size: 1em;
        padding: 1rem 1.2rem;
        line-height: 1.8;
    }
}

/* Extra Small Mobile (360px and down) */
@media (max-width: 360px) {
    .image-block {
        min-height: 200px;
    }

    .image-block h2 {
        font-size: 1.5em;
    }

    .single-payment-block {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .centered-bank p {
        padding: 0.8rem 1rem;
        font-size: 0.95em;
    }
}



/* Payment Section - Two Columns Layout */
.payment-block.single-payment-block {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.column.bank-details {
    flex: 1;
    min-width: 280px;
    background: #142433;           /* Blue block */
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.column.bank-details h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #FFFFFF;                /* Gold accent */
    border-bottom: 2px solid #FFFFFF;
    padding-bottom: 10px;
}

.column.bank-details p {
    line-height: 1.8;
    margin: 0 0 20px 0;
}

/* Centered Yoco logo */
.yoco-logo-container {
    text-align: center;
    margin: 40px 0 20px;
    padding-top: 20px;
}

.yoco-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.yoco-logo:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .payment-block.single-payment-block {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .column.bank-details {
        max-width: 420px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .column.bank-details {
        padding: 25px;
    }
}










/* CSS */
/* ====================== NEXT STEPS SECTION ====================== */
.nextsteps {
    min-height: 120px;
    background: #143948;
    display: flex;
    align-items: center;
    padding: 0 50px;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}



.nextsteps h1 {
    color: #ffffff;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 50px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {
    .nextsteps {
        min-height: 115px;
        padding: 0 45px;
		 margin-top: 25px;
    }
    .nextsteps h1 {
        font-size: 46px;
    }
}

/* Medium Desktop / Small Laptop (1128px and down) */
@media (max-width: 1128px) {
    .nextsteps {
        min-height: 110px;
		 margin-top: 25px;
    }
    .nextsteps h1 {
        font-size: 42px;
    }
}

/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {
    .nextsteps {
        min-height: 105px;
        padding: 0 35px;
        margin-top: 70px;
    }
    .nextsteps h1 {
        font-size: 38px;
    }
}

/* Tablet Portrait & Smaller Tablets (850px and down) */
@media (max-width: 850px) {
    .nextsteps {
        min-height: 100px;
        padding: 0 30px;
    }
    .nextsteps h1 {
        font-size: 36px;
    }
}

/* Mobile Landscape / Standard Mobile (768px and down) */
@media (max-width: 768px) {
    .nextsteps {
        min-height: 95px;
        padding: 0 25px;
        margin-top: 60px;
    }
    .nextsteps h1 {
        font-size: 32px;
    }
}

/* Small Mobile Landscape (640px and down) */
@media (max-width: 640px) {
    .nextsteps {
        min-height: 90px;
        padding: 0 20px;
    }
    .nextsteps h1 {
        font-size: 30px;
    }
}

/* Small Mobile Portrait (480px and down) */
@media (max-width: 480px) {
    .nextsteps {
        min-height: 85px;
        padding: 0 18px;
        margin-top: 80px;
    }
    .nextsteps h1 {
        font-size: 28px;
        letter-spacing: -0.8px;
    }
}

/* Extra Small Mobile (360px and down) */
@media (max-width: 360px) {
    .nextsteps {
        min-height: 80px;
        padding: 0 15px;
        margin-top: 45px;
    }
    .nextsteps h1 {
        font-size: 26px;
        letter-spacing: -1px;
    }
}







.web-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.grid-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background-color: #143948;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.25);
}

.card-inner {
  display: flex;
  height: 100%;
}

.card-image-wrapper {
  width: 42%;
  flex-shrink: 0;
  position: relative;
}

.card-image-wrapper::before {
  content: '';
  display: block;
  padding-top: 100%; /* Makes it square (1:1) */
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  flex: 1;
  padding: 32px 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.card-text {
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
  opacity: 0.93;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .card-inner {
    flex-direction: column;
  }
  
  .card-image-wrapper {
    width: 100%;
    position: relative;
  }
  
  .card-image-wrapper::before {
    padding-top: 100%;
  }
}













/* ====================== CONNECT STRIP ====================== */
.connect-strip {
  background: #f8f5f0;
  padding: 60px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.strip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.left-panel {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.connect-box {
  background: #143948;
  color: white;
  padding: 35px 60px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(26, 60, 58, 0.3);
}

.connect-box h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.tagline {
  margin-top: 24px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a3c3a;
  letter-spacing: 1px;
}

.right-panel {
  flex: 1.35;
  min-width: 380px;
}

.main-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a3c3a;
  line-height: 1.1;
  margin: 0 0 30px 0;
  text-align: left;
}

.content-box {
  background: #143948;
  color: white;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.image-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 8px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.group-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-content {
  flex: 1;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.45;
  margin-bottom: 22px;
  opacity: 0.95;
}

.cta {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  opacity: 1;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {
  .connect-strip {
    padding: 55px 20px;
  }
  .content-box {
    padding: 38px;
  }
}

/* Medium Desktop / Small Laptop (1128px and down) */
@media (max-width: 1128px) {
  .connect-box h1 {
    font-size: 2.6rem;
  }
  .main-heading {
    font-size: 2.3rem;
  }
}

/* Tablet Landscape (992px and down) */
@media (max-width: 992px) {
  .strip-container {
    flex-direction: column;
    text-align: center;
  }
  
  .left-panel,
  .right-panel {
    width: 100%;
  }
  
  .main-heading {
    text-align: center;
  }
  
  .content-box {
    flex-direction: column;
    text-align: center;
    padding: 35px;
    gap: 25px;
  }
  
  .image-circle {
    width: 220px;
    height: 220px;
  }
}

/* Tablet Portrait & Smaller Tablets (850px and down) */
@media (max-width: 850px) {
  .connect-strip {
    padding: 50px 20px;
  }
  .content-box {
    padding: 32px;
  }
  .image-circle {
    width: 200px;
    height: 200px;
  }
}

/* Mobile Landscape / Standard Mobile (768px and down) */
@media (max-width: 768px) {
  .connect-strip {
    padding: 45px 15px;
  }
  
  .strip-container {
    text-align: center;
  }
  
  .left-panel,
  .right-panel {
    min-width: 100%;
  }
  
  .connect-box {
    max-width: 100%;
    padding: 32px 25px;
  }
  
  .connect-box h1 {
    font-size: 2.4rem;
  }
  
  .main-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .content-box {
    padding: 30px 25px;
  }
  
  .image-circle {
    width: 190px;
    height: 190px;
  }
}

/* Small Mobile Landscape (640px and down) */
@media (max-width: 640px) {
  .connect-strip {
    padding: 40px 15px;
  }
  
  .connect-box {
    padding: 28px 20px;
  }
  
  .connect-box h1 {
    font-size: 2.2rem;
  }
  
  .tagline {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  
  .image-circle {
    width: 180px;
    height: 180px;
  }
}

/* Small Mobile Portrait (480px and down) */
@media (max-width: 480px) {
  .connect-strip {
    padding: 35px 12px;
  }
  
  .connect-box {
    padding: 25px 18px;
  }
  
  .connect-box h1 {
    font-size: 2rem;
  }
  
  .main-heading {
    font-size: 2rem;
  }
  
  .content-box {
    padding: 28px 20px;
    gap: 20px;
  }
  
  .image-circle {
    width: 160px;
    height: 160px;
  }
  
  .text-content p {
    font-size: 1.05rem;
  }
}

/* Extra Small Mobile (360px and down) */
@media (max-width: 360px) {
  .connect-strip {
    padding: 30px 10px;
  }
  
  .connect-box {
    padding: 22px 15px;
  }
  
  .connect-box h1 {
    font-size: 1.85rem;
  }
  
  .main-heading {
    font-size: 1.85rem;
  }
  
  .image-circle {
    width: 145px;
    height: 145px;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
}
