html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: top; }


  

body {
    background-color:#100f1c;/* Dark blue/black background */
    color: #ffffff; /* White text for contrast */
    /* margin: 0 50px ; */
    max-width: auto;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* overflow: hidden; */
    min-width:220px ;
    scroll-behavior: smooth;
    
}

header {
    background-color: rgb(0, 0, 0); /* Dark overlay on the header */
    /* padding: 20px 0; */


}



  .header-title {
            margin: 0;
            padding: 10px;
            color: white;
        }

.logo{
    margin-left: 0%;
    display: flex;
    text-decoration: none;
}

.logo-text{
    margin: 20px;
    font-size: 18px;
    text-decoration: none;
}

nav a {
    color: white !important; Ensure all links are white
    text-decoration: none;
}

nav .list li.active {
    border-bottom: 2px solid #ffffff; /* White underline for active menu item */
}

.hero {
    position: relative;
    color: #fff; /* Keep text white */
    /* background: url(../img/service/385A6675.JPG) no-repeat center center/cover; */
}

.hero .text {
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for better readability */
    padding: 5%;
}

 
.btn {
    background-color: none; /* Transparent background */
    color: white; /* Purple text */
    border: 10px solid #ffffff; /* Purple border */
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border-radius: 8px; /* Smooth edges */
    text-decoration: none;
}

/* Button Hover Effect */
.btn:hover {
    background-color: #ffffff;  
    color: black; /* White text */
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.8); 
}

.btnLanding {
    background-color: transparent; /* Transparent background */
    color: #ffffff; /* Purple text */
    border: 2px solid #ffffff; /* Purple border */
    padding: 0 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

/* Button Hover Effect */
.btnLanding:hover {
    background-color: #ffffff; /* Purple background */
    color: black; /* White text */
    box-shadow: 0 0 15px rgba(113, 113, 113, 0.8); /* Neon glow */
}

.single h3{

    font-size: 45px !important;
    /* color: rgb(148, 130, 27); */
    background: linear-gradient(2deg, #7a00ec, #b5e700 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: none;
    font-weight: bold;
    margin-bottom: 0;
    font-family: sans-serif;


}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 15px ;
    color: white;
    margin: 0 20px;
    /* width: 100%; */
    
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

/* Navigation Links */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

/* Active Page Highlight */
.nav-link.active {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* Hover Effect */
.nav-link:hover {
    color: #8a2be2;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    

}
 






.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 5px;
    display: none;
    flex-direction: column;
    min-width: 200px;
    padding: 10px 0;
    margin: 30px;
    opacity: 11;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* padding: 1em; */
    z-index: 99;
    border-radius: 0.5em;
}

.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }


.dropdown-menu li {
    list-style: none;
    z-index: 2;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background 0.3s ease-in-out;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: flex;
    
}

/* Dropdown Hover Effect */
.dropdown-menu a:hover  {
    background: rgba(37, 36, 36, 0.189);
}

/* Sermon Button */
.sermon-btn {
    background: transparent;
    color: white;
    border-width:  2px;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 25px 0px;
    transition: all 0.3s ease-in-out;
    /* border-image-source: linear-gradient(45deg, #e9e7eb); */
    border-image-slice: 1;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 101;
    padding: 1em;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      transition: max-height 0.4s ease;
      /* background: white; */
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      z-index: 100;
    }

    .nav-list.active {
      display: flex;
      max-height: 800px;
    }
    .dropdown-menu {
        /* max-height: 0; */
        overflow: hidden;
        transition: max-height 0.3s ease;
        /* display: flex;/ */
        flex-direction: column;
        padding-left: 1.5em;
        /* background: #f9f9f9; */
        font-size: 0.95rem;
        /* border-left: 2px solid #ddd; */
      }
  
      .dropdown-menu li {
        /* padding: 0.75em 1em; */
      }
  
      .dropdown.open .dropdown-menu {
        max-height: 300px;
      }
  }
/* Sermon Button Hover Effect */
.sermon-btn:hover {
    background:  white;
    color: black !important;
    /* border: 2px solid #EF9B0F; */
    /* box-shadow: 0 0 15px rgba(138, 43, 226, 0.8); */

}

/* Mobile Menu Icon */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* ----------------------------------------------------------------------------------------- */
 
/* ----------------------------------------------------------------------- */
/* Mobile Responsive */
@media screen and (max-width: 960px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(20, 20, 20, 0.95);
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list.show {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Full screen */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Video Background */
#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the section */
}

/* Dark Overlay for Better Readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
}

/* Hero Content (Text & Button on Video) */
.hero-content {
    position: absolute;
    color: white;
    max-width: 800px;
    margin-top: 250px;
    padding: 20px;
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Slight movement effect */
    animation: fadeIn 3s ease-in-out forwards 2s; /* Fades in after 3s */
}

/* Header Text */
.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
}

/* Description */
.hero-content p {
    font-size: 18px;
    margin: 15px 0;
}

.hero-link {
    background: linear-gradient(45deg, #8a2be2, #ff007f); /* Purple-pink gradient */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

/* Button Hover Effect */
.hero-link:hover {
    background: linear-gradient(45deg, #ff007f, #8a2be2); /* Reverse gradient on hover */
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.8); /* Soft glow */
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* Slideshow Section */
.service-slider {
    text-align: center;
    padding: 50px 5%;
    background-color: #0f0a27;
    color: white;
}

/* Carousel Container */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

/* Carousel Track */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Carousel Images */
.carousel-track img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.carousel-track img:hover {
    transform: scale(1.05);
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Button Hover Effect */
.prev:hover, .next:hover {
    background-color: rgba(138, 43, 226, 0.8);
}

.column-item.align-left {
    text-align: left;
}

.imageblocktwo-row.layout-leftright .column-item:nth-child(2n) .column-item-text-container {
    -ms-flex-order: 2;
    order: 2;
}

.imageblocktwo-row.layout-leftright .column-item.in-view .column-item-image-container, .imageblocktwo-row.layout-leftright .column-item.in-view .column-item-text-container {
    opacity: 1;
    transform: translateY(0) scale3d(1, 1, 1);
}

.imageblocktwo-row.layout-leftright .column-item .column-item-text-container {
    width: 48%;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 3em;
    padding-right: 3em;
}

.imageblocktwo-row.layout-leftright .column-item .column-item-text-container {
    transition-delay: 500ms;
}

.imageblocktwo-row.layout-leftright .column-item .column-item-image-container, .imageblocktwo-row.layout-leftright .column-item .column-item-text-container {
    opacity: 99;
    transition: 1000ms all cubic-bezier(0.33, 0, 0.19, 1);
    transition-delay: 250ms;
    transform: translateY(4em) scale3d(0.9, 0.9, 0.9);
}
/* ----------------------------------------------------------------------- */
        .about-us-section{
            content: "";
             background: linear-gradient(#100f1c , rgba(0, 0, 0, 0.926)),
                url(/Images/Loops-White-1.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed; /* Keeps the background fixed while scrolling */
            position: relative;
            display: flex;
            padding: 50px;
            /* gap: px; */
            height: auto; /* Ensures the image covers the entire viewport height */
                       
        }

        @media( max-width: 480px ) {
            .about-us-text{
                padding: 0px;

            }
            
        }


        .about-us-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.01; /* Ensures visibility */
            z-index: 1;
            background: rgba(255, 255, 255, 0.774); /* Low opacity to fade the image */
            
        }

        .about-us-section * {
            position: relative;
            z-index: 2;
            color: white; /* Adjust as needed for readability */
        }
        
         .about-container {
            
            align-items: justified;
            gap: 10px;
            padding: 20px;
            border-radius: 10px;
        }

         
        .about-us-text{
            text-align:center;
            /* margin:70px; */
            /* z-index: ; */
            /* border: 1px solid red; */

            color: white;
            margin-bottom: 0;
        }

         .about-us-text h2 {
            font-size: 20px;
            /* padding-left: 10%; */
            /* padding-right: 10%; */
            color: rgb(178, 178, 178);
            line-height: 2rem;
         
        }
        .about-us-text p {
            font-size: 16px;
            line-height: 1.5;
        }

        .about-us-btn{
                /* background:1px linear-gradient(45deg, #8a2be2, #ff007f);  */
                color: white;
                /* border:; */
                padding: 12px 24px;
                font-size: 16px;
                font-weight: bold;
                transition: all 0.3s ease-in-out;
                border-radius: 20px;
                display: inline-flex;
                align-items: center;
                gap: 120px;
                cursor: pointer;
                text-decoration: none;
        }

        @media (min-width: 1200px) {
            .imageblocktwo-row.layout-leftright .column-item {
                display: block;
                float: left;
                width: 96%;
                margin-left: 2%;
                margin-right: 2%;
            }
        }












        .section{
            content: "";
              height: 130vh;
             background: linear-gradient(#100f1c , rgba(0, 0, 0, 0.926)),url(/Images/dashes-white.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed; /* Keeps the background fixed while scrolling */
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 50px;
            /* width: 100%; Ensures full width coverage */
             

            
        }

        .section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.01; /* Ensures visibility */
            z-index: 1;
            background: rgba(255, 255, 255, 0.774); /* Low opacity to fade the image */
            
        }

        .section * {
            position: relative;
            z-index: 2;
            color: white; /* Adjust as needed for readability */
            background: transparent;
        }
        .text{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .text p {
            color: #dcdcdc;
        }
        
      
        
        .content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 80%;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;
            position: relative;
            z-index: 2;
            margin-top: 80px;
            /* margin-left: 130px; */
            
        }
        .content:nth-child(2) {
            animation-delay: 0.5s;
        }
        .content:nth-child(3) {
            animation-delay: 1s;
        }
        .text {
            /* width: 45%; */
            color: white;
            /* background: rgba(0, 0, 0, 0.6); */
            padding: 20px;
            border-radius: 10px;
            /* text-align: right; */
        }
        .text a {
            color: white;
            border: solid ;
            border-color: rgb(255, 255, 255);
            padding: 12px 24px;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease-in-out;
            display: inline-flex;
            align-items: center;
            gap: 120px;
            cursor: pointer;
            text-decoration: none;
        }
        .image {
            width: 100%;
            height: 100%;
            /* padding-top:30px ; */
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;

        }
        .image img {
            /* width: 100%; */
            /* height: 100%; */
            object-fit: cover;
            border-radius: 10px;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         .events-section {
            padding: 40px 20px;
        }
        .events-section h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        .view-all {
            color: black;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }
        .events-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: left;
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-info {
            padding: 15px;
        }
        .event-info h3 {
            font-size: 18px;
            margin: 0 0 5px;
        }
        .event-info p {
            color: #666;
            font-size: 14px;
            margin: 0;
        }




  .vision-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px;
            gap: 20px;
        }
        
        .horizontal-text-container {
            position: absolute;
            left: 36%;
            top: 15%;
            bottom: 360px;
            transform: translateY(-50%);
        }
        .horizontal-text {
            font-size: 120px;
            /* font-weight: bold; */
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.145);
            writing-mode: vertical-rl;
            opacity: 0.5;
            transform: rotate(270deg);
        }

        .vision-text {
            max-width: 500px;
            text-align: center;
        }

         .vision-text  h1 {
            font-size: 28px;
            background: linear-gradient(20deg, #8a2be2, #007be7 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
         }
        .vision-text h2 {
            font-size: 20px;
            background: linear-gradient(200deg, #8a2be2, #ff007f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .vision-text p {
            font-size: 16px;
            line-height: 1.5;
        }
        .vision-container {
            display: flex;
            /* grid-template-columns: 3fr  1fr; */
            align-items: center;
            justify-content: center;
            gap: 100px;
            padding: 20px;
            border-radius: 10px;
        }
        .vision-image {
            width: 250px;
            height: 520px;
            border-radius: 50%;
            object-fit: cover;
        }
        .vision-img-right {
            width: 390px;
            height: auto;
            border-radius: 45%;
            
        }

         .vision-img-right:hover{
            box-shadow: 0 0 25px rgb(178, 0, 178);
         }.glowing-border {
            position: relative;
        }
        .glowing-border::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #8a2be2, #ff007f, #00ffff);
            filter: blur(10px);
            z-index: -1;
            border-radius: 45%;
            opacity: 0.8;
        }

         /* Next Step Section */
        .next-step-section {
            background: url('/Images/wmns-short.png') no-repeat  center/cover fixed;
            position: relative;
            text-align: center;
            padding: 100px 20px;
        }
        .next-step-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .next-step-content {
            position: relative;
            z-index: 1;
        }
        .next-step-content h1 {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 10px;
            
        }
        .next-step-content h2{
              background: linear-gradient(20deg, #c587ff, #b5e700 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .next-step-content p {
            font-size: 18px;
            margin-bottom: 20px;
            padding:0 150px;
        }
     
    /* border: 2px solid; */
    
            border-radius: 8px;
            transition: all 0.3s ease-in-out;
    /* border-image-source: linear-gradient(45deg, #8a2be2, #ff007f); */
            border-image-slice: 1;
        }
        .button-group a:hover {
            background: #4a9ccf;  background: linear-gradient(20deg, #8a2be2, #007be7 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


     /* Dive Deeper Section */
        .dive-deeper-header {
            text-align: center;
            padding: 50px 20px;
            background: rgba(0, 0, 0, 0.0); /* Transparent background */
        }
        
        .dive-deeper-content {
            position: relative;
            text-align: center;
            padding: 12px 20px;
            background: url('/mnt/data/image.png') no-repeat center center/cover;
            background-attachment: fixed;
            color: white;
            min-height: 400px; /* Ensure height on mobile */
        }
        .dive-deeper-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .dive-deeper-content {
            position: relative;
            z-index: 1;
        }
        .image-slider {
            position: relative;
            height: 100%;
            max-width: 1400px;
            margin: auto;
        }
        .image-slide {
            display: none;
            position: relative;
        }
        .image-slide img {
            width: 100%;
            height: auto;
            max-height: 400px; /* Prevents excessive height */
            object-fit: cover;
            border-radius: 10px;
        }
        .image-slide.active {
            display: block;
        }
        .text-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 80%;
        }
        .text-overlay p {
            font-size: 28px;
            width: 100%;
            font-weight: bold;
            /* text-align: center; */
            opacity: 0;
            animation: fadeIn 1s forwards, slideIn 1s forwards;
        }
        .text-overlay p, .text-overlay .learn-more {
            opacity: 0;
            animation: fadeIn 1.5s forwards;
        }
        .learn-more {
            display: inline-block;
            padding: 12px 24px;
            background: transparent;
            border: 2px solid white;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: 0.3s;
            margin-top: 10px;
        }
        .learn-more:hover {
            background: white;
            color: black;
        }

        .slider-dots {
            text-align: center;
            margin-top: 15px;
        }
        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: gray;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }
        .dot.active {
            background-color: white;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideIn {
            from { transform: translate(-50%, -80%); }
            to { transform: translate(-50%, -50%); }
        }

        @media (max-width: 768px) {
            .dive-deeper-content {
                padding: 80px 20px;
                min-height: 300px;
            }
            .image-slide img {
                max-height: 300px;
            }
            .text-overlay h3 {
                font-size: 22px;
            }
            .text-overlay p {
                font-size: 16px;
            }
        
        }


        /* ------------------stewards section---------------------- */

         .steward-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            justify-content: center;
            padding: 100px 5%;
            gap: 50px;
        }
        .steward-text {
            flex: 1;
            max-width: 500px;
        }
        .steward-text h2 {
            font-size: 24px;
            background: linear-gradient(45deg, #b89aff, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .steward-text p {
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .steward-buttons {
            display: flex;
            gap: 15px;
        }
        .steward-buttons a {
            padding: 12px 24px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s;
        }
        .know-more {
            background: white;
            color: black;
            font-size: 12px;
            padding: 5px;
        }
        .know-more:hover {
            background: #ddd;
        }
        .leadership {
            border: 2px solid white;
            color: white;
            background: transparent;
            font-size: 12px;
        }
        .leadership:hover {
            background: white;
            color: black;
            font-size: 12px;
        }
        
        /* Steward Slider */
        .steward-images {
            flex: 1;
            text-align: center;
            max-width: 500px;
            position: relative;
        }
        .steward-slide {
            display: none;
        }
        .steward-slide img {
            width: 50%;
            height: auto;
            border-radius: 10px;
        }
        .steward-slide.active {
            display: block;
        }
        .steward-name {
            font-size: 16px;
            font-weight: bold;
            margin-top: 10px;
            text-align: center;
        }
        .steward-office {
            font-size: 11px;
            opacity: 0.7;
            text-align: center;
        }

        .slider-dots {
            text-align: center;
            margin-top: 15px;
        }
        .dot {
            height: 5px;
            width: 5px;
            margin: 0 5px;
            background-color: gray;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }
        .dot.active {
            background-color: white;
        }

         /* Footer Section */
        .footer {
            background-color: #222;
            color: white;
            
            display: grid;
            grid-template-columns: 2fr 2fr 2fr;
            gap: 30px;
        }
        .footer h3 {
            font-weight: 700;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .footer p, .footer a {
            font-size: 16px;
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }
        .footer a:hover {
            color: white;
        }

        .footer .icons-container{
            display: flex;
            gap: 15px;
           
        }

        @media (min-width:1400px) {
            .footer {
                background-color: #222;
                color: white;
                padding: 50px 5%;
                display: grid;
                grid-template-columns: 2fr  2fr 2fr;
                gap: 30px;
            }
        }
        
        /* Two columns on tablets */
        @media (max-width: 1049px ) and (min-width:770px) {
            .footer {
                grid-template-columns: repeat(2, 1fr);
                padding-left:5%;
                text-align: center;
                
                /* gap: 40px; */

            }

            .icons-container{
                justify-content: center;
            }
            
        }
        
        /* One column on mobile */
        @media (max-width: 768px) {
            .footer {
                grid-template-columns: 1fr;
                text-align: center;
            }

            p{
                padding: 0 5px;
                margin-bottom: 10px;
                line-height: 1.5em;
            }

            .icons-container{
                justify-content: center;
                /* margin-left: 30px; */
            }
        }
        
/* ------------------------------------------------------------------------------------------------------ */
        @media (max-width: 736px) {
            .imageblocktwo-row.layout-leftright .column-item {
                display: block !important;
            }
        }

        @media (max-width: 736px) {
            .imageblocktwo-row.layout-leftright .column-item {
                display: block;
                float: left;
                width: 90%;
                margin-left: 5%;
                margin-right: 5%;
            }
        }

        @media (max-width: 1024px) {
            .imageblocktwo-row.layout-leftright .column-item {
                display: block;
                float: left;
                width: 96%;
                margin-left: 2%;
                margin-right: 2%;
            }
        }

        /* -------------------------------------------------- */

        @media (max-width: 768px) {
            .logo img{
                width: 30px;
            }
            .logo-text{
                font-size: 12px;
                margin: 10px;
            }
        }

    /* --------------------------------------------foriegn Styling------------------------------------------------ */