@charset "UTF-8";
/*--»»————-————　      ♔♕      —————————-—««-->
<--◄███▓▒░░       ® Micro Box        ░░▒▓███►-->
<--◄███▓▒░░    PHONE 0410 167 857    ░░▒▓███►-->
<--◄███▓▒░░   www.microbox.com.au    ░░▒▓███►-->
<--◄███▓▒░░       © FROM 2018        ░░▒▓███►-->
<--◄███▓▒░░   All Rights Reserved    ░░▒▓███►-->
<--◄███▓▒░░  Powered By Paul Henley  ░░▒▓███►-->
<--»»————-————　      ♔♕      —————————-—««--*/
*{
    /* Prevent image drag */
     -webkit-user-drag: none;
     -khtml-user-drag: none;
     -moz-user-drag: none;
     -o-user-drag: none;
    /* Prevent text selection */
     -webkit-touch-callout: none !important;
     -webkit-user-select: none;
    /* Safari */
     -moz-user-select: none;
    /* Firefox */
     -ms-user-select: none;
    /* Edge */
     user-select: none;
    /* Standard syntax */
    /* Smooth scrolling */
     scroll-behavior: smooth;
    /* Prevent zoom on touch devices */
     touch-action: pan-x pan-y;
    /* Font stack with fallback */
     font-family: system-ui, sans-serif;
    /* Remove outline on focus */
     outline: none;
    /* Hide scrollbars */
     scrollbar-width: none;
    /* Enhance Font */
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     border: 0;
     outline: 0;
	text-decoration: none;
}
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');



.fade-in {
     opacity: 0;
     transition: opacity 0.5s ease-in-out;
}
.fade-in.visible {
     opacity: 1;
}
/* Transparent Scrollbars for Chrome, Safari, Edge */
::-webkit-scrollbar {
     display: none;
}
a:link {
     text-decoration: none;
     /* color: rgb(111 111 111); */
}
a:link,
a:visited{
     text-decoration: none;
     color: #000000;
}
a:hover {
     text-decoration: none;
     color: #008eff
}
a:active {
     text-decoration: none;
     color: inherit;
}
/* DEFALT STYLE END */
body {
     background-color: rgb(231 231 231);
     font-family: system-ui, sans-serif;
     margin: 0px;
     padding: 0px;
}
#backButton {
     position: fixed;
     top: 20px;
     left: 20px;
     padding: 10px 20px;
     font-size: 20px;
     background-color: #0078d7;
     color: white;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     z-index: 1000;
     box-shadow: 0 4px 6px rgba(0,0,0,0.2);
     transition: background-color 0.3s;
}
#backButton:hover {
     background-color: #005fa3;
}
.headertwo .main_image {
  position: relative;
  /* display: inline-block; */ /* or block, depending on layout */
}

.image-heading {
  position: absolute;
  top: 0px;
  left: 0px;
  /* transform: translate(-50%, -50%); */
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: white;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
  text-align: left;
  padding: 10px; /* prevents text from hugging edges on small screens */
  white-space: normal;
  word-wrap: break-word;
  color: #ffffff;
  text-shadow: 0 5px 4px rgb(0 0 0);
}
b {
    font-weight: 500;
    font-family: system-ui, sans-serif;
    color: rgb(0 0 0);
}
.error_no_java {
     background-color: rgb(255 0 0);
     color: rgb(255 255 255) !important;
     z-index: 90000;
     padding: 10px;
     position: absolute;
     text-align: center;
}
.center_footer_logo {
     display: flex;
     justify-content: center;
}

.social_icons {
     width: 56px;
}

.topbar {
  background-color: #93d1ff;
  /* height: 42px; */
  /* padding: 1rem; */
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  transition: background-color 2s linear;
  /* margin-bottom: 30px; */
  /* background-image: linear-gradient(to right, rgb(0 142 255) 0%, #ab6965, rgb(33 39 40) 100%); */
  animation: topbar 10s infinite;
}
@keyframes topbar {
    0%   { background-color: rgb(96 171 255); }
    20%  { background-color: rgb(174 142 96); }
    40%  { background-color: rgb(198 205 125); }
    60%  { background-color: rgb(244 220 182); }
    80%  { background-color: rgb(68 91 71); }
    100% { background-color: rgb(96 171 255); } /* loop back to start */
}
}
.topbarwhatson{
	background-color: #125393;
	/* height: 82px; */
	padding: 1rem;
	text-align: center;
}
.site-title {
  color: #ffffff; /* Dark gray for softer contrast */
  margin: 0;
  font-size: 35px; /* More presence */
  font-weight: 400; /* Bold but not too heavy */
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -0.02em; /* Subtle tightening */
  line-height: 1.2;
  
  /* Modern subtle styling */
  text-align: center;
  /* text-transform: uppercase; */ /* Optional: feels more like a logo */
  text-shadow: 0 2px 4px rgb(0 0 0); /* Gentle depth */
}


.bottombar {
    height: 100px;
    background-color: #030012;
}
.bodybtn {
  background-color: #ffffff;
  color: #000000;
  border-radius: 20px;
  cursor: pointer;
  margin: 5px;
  height: 150px;
  width: 150px;
  font-size: 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 6px solid rgb(193 193 193);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bodybtn:hover {
     transform: translateY(-6px);
     color:#000000;
     border-color:#b7b7b7;
}
.bodybtn:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
.bodybtn i {
  font-size: 28px;
  margin-bottom: 10px;
}


.buttonicons {
       height: auto;
       width: 50px;
       height: 50px;
       font-size: 20px;
}
.buttonicons:hover {
     transform: rotate(360deg);
}
.objects_container {
     margin: 0px;
     flex-wrap: wrap;
     margin-right: auto;
     margin-left: auto;
     padding-right: 10px;
     padding-left: 10px;
     display: flex;
     padding-top: 15px;
     padding-bottom: 35px;
     justify-content: center;
     align-items: center;
     border-left: none;
     border-right: none;
     background-color: #ffffff;
}
.objects_container_worship{
	margin: 0px;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	padding-top: 50px;
	padding-right: 0px;
	padding-left: 0px;
	display: flex;
	/* padding-top: 15px; */
	padding-bottom: 35px;
	justify-content: center;
	align-items: center;
	border-left: none;
	border-right: none;
	/* background-color: #e3e3e3; */
}
.objects_container_whatson{
	margin: 0px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-top: 50px;
    padding-right: 0px;
    padding-left: 0px;
    display: flex
;
    /* padding-top: 15px; */
    padding-bottom: 35px;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-right: none;
}
.objects_container_controlpanel{
	margin: 0px;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
	/* display: flex; */
	padding-bottom: 35px;
	justify-content: center;
	padding-top: 80px;
	align-items: center;
	border-left: none;
	border-right: none;
	/* background-color: #ffffff; */
}
.objects_container_underconstruction{
	margin: 0px;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
	display: flex;
	padding-bottom: 35px;
	justify-content: center;
	padding-top: 80px;
	align-items: center;
	border-left: none;
	border-right: none;
	background-color: #0a5292;
}
.objects_container_intro {
    margin: 0px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    padding-top: 30px;
    padding-bottom: 35px;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-right: none;
    background-color: #006dc3;
}

.objects_container_more_text{
	margin: 0px;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
	display: flex;
	padding-top: 20px;
	padding-bottom: 35px;
	justify-content: center;
	align-items: center;
	border-left: none;
	border-right: none;
	background-color: #ffffff;
}
.objects_container_whatson{
	margin: 0px;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
	display: flex;
	padding-top: 0px;
	padding-bottom: 0px;
	justify-content: center;
	align-items: center;
	border-left: none;
	border-right: none;
	background-color: #ffffff;
}
.objects_container_rec {
   margin: 0px;
   flex-wrap: wrap;
   margin-right: auto;
   margin-left: auto;
   padding-right: 0px;
   padding-left: 0px;
   display: flex;
   /* padding-bottom: 35px; */
   justify-content: center;
   align-items: center;
   border-left: none;
   border-right: none;
   background-color: #021b39;
}
.objects_container_con {
     margin: 0px;
     flex-wrap: wrap;
     margin-right: auto;
     margin-left: auto;
     padding-right: 0px;
     padding-left: 0px;
     display: flex;
     padding-top: 30px;
     padding-bottom: 35px;
     justify-content: center;
     align-items: center;
     border-left: none;
     border-right: none;
     background-color: #0a5292;
}
.objects_container_send {
    margin: 0px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    padding-top: 0px;
    padding-bottom: 2px;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-right: none;
    /* background-color: #021b39; */
}
.objects_container_ava {
    margin: 0px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    padding-top: 0px;
    padding-bottom: 35px;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-right: none;
    background-color: #ffffff;
}
.objects_container_map {
    margin: 0px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    padding-top: 0px;
    padding-bottom: 0px;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-right: none;
    background-color: #ffffff;
}
.objects_container_callback {
     margin: 0px;
     flex-wrap: wrap;
     margin-right: auto;
     margin-left: auto;
     padding-right: 0px;
     padding-left: 0px;
     display: flex;
     padding-top: 0px;
     /* padding-bottom: 35px; */
     justify-content: center;
     align-items: center;
     border-left: none;
     border-right: none;
     background-color: #ffffff;
}
.objects_container_foodsupport{
	margin: 0px;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
	display: flex;
	padding-top: 0px;
	padding-bottom: 35px;
	justify-content: center;
	max-width: 1000px;
	align-items: center;
	border-left: none;
	border-right: none;
	/* background-color: #47a4b4; */
}
.fullscreen-button-embeded-app {
     padding: 10px 20px;
     border: 1px solid rgba(0, 0, 0, .125);
     background-color: rgba(0, 0, 0, 0);
     color: rgb(0 0 0);
     border-radius: 8px;
     -webkit-appearance: none;
     font-size: 20px;
     cursor: pointer;
     width: 100%;
     max-width: 400px;
     margin-bottom: 10px;
}
.fullscreen-button-embeded-app:hover {
     background-color: rgb(0, 0, 0, .125);
}
.fullscreen-button-embeded-app:active {
     background-color: rgb(0 0 0 / 25%);
}
.main_container {
     color: rgb(6 6 6);
     text-align: center;
     margin: 0px;
     margin-top: 0px;
     margin-bottom: 0px;
     font-size: 20px;
     overflow: hidden;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     padding-bottom: 0px;
     padding-left: 0px;
     padding-right: 0px;
     padding-top: 0px;
     /* border-radius: 20px; */
     /* border: 3px solid rgba(0, 0, 0, .125); */
     margin: 0 auto;   /* centers the body */
     padding: 0;
     max-width: 1300px; /* restricts width */
}
.list_images {
     width: 80px;
     display: inline-block;
     animation: jiggle 0.5s ease-in-out infinite;
}
/* Jiggle animation */
@keyframes jiggle {
     0%, 100% {
         transform: rotate(0deg);
    }
     25% {
         transform: rotate(5deg);
    }
     75% {
         transform: rotate(-5deg);
    }
}
@media only screen and (min-width: 1600px) {
     .objects_container {
        /* max-width: 1700px;
         */
    }
}
/*BUTTON CONTAINER END*/
@-webkit-keyframes colorchange {
     0% {
         color: rgb(96, 184, 255);
    }
     10% {
         color: rgb(212, 108, 255);
    }
     20% {
         color: rgb(0, 255, 205);
    }
     30% {
         color: rgb(255, 145, 73);
    }
     40% {
         color: rgb(96, 184, 255);
    }
     50% {
         color: rgb(124, 230, 0);
    }
     60% {
         color: rgb(96, 184, 255);
    }
     70% {
         color: rgb(255, 122, 167);
    }
     80% {
         color: rgb(241, 196, 15);
    }
     90% {
         color: rgb(255, 210, 74);
    }
     100% {
         color: rgb(255, 126, 170);
    }
}
.worshipservice {
    position: relative;
    color: rgb(0 0 0);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 20px;
    background-image: linear-gradient(to right, rgb(54 190 214) 0%, #35bed6, rgb(54 191 214) 100%);
    padding: 10px;
    text-align: center;
    margin-left: 20px;
    font-weight: normal;
    margin-right: 20px;
    width: 100%;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.worshipservice::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
.whatson {
    position: relative;
    color: rgb(0 0 0);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 20px;
    background-image: linear-gradient(to right, rgb(54 190 214) 0%, #35bed6, rgb(54 191 214) 100%);
    padding: 10px;
    text-align: center;
    margin-left: 20px;
    font-weight: normal;
    margin-right: 20px;
    width: 100%;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.whatson::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
.menuheadertwodiv_nogap {
    position: relative;
    color: rgb(0 0 0);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-image: linear-gradient(to right, rgb(102 210 253 / 37%) 0%, #03A9F4, rgb(102 210 253 / 33%) 100%);
    padding: 10px;
    text-align: center;
    margin-left: 0px;
    padding-left: 0px;
    font-weight: normal;
    margin-right: 0px;
    width: 100%;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.menuheadertwodiv_nogap::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
.menuheadertwodiv_ws {
    position: relative;
    color: rgb(0 0 0);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-image: linear-gradient(to right, rgb(102 210 253) 0%, #1c95a6, rgb(102 210 253) 100%);
    padding: 10px;
    padding-left: 0px;
    text-align: center;
    margin-left: 0px;
    font-weight: normal;
	    padding-left: 0px;
    margin-right: 0px;
    width: 100%;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.menuheadertwodiv_ws::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
.menuheadertwodiv_whatson {
    position: relative;
    color: rgb(0 0 0);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    padding: 10px;
    padding-left: 0px;
    background-image: linear-gradient(to right, rgb(41 88 114) 0%, #03A9F4, rgb(38 78 103) 100%);
    text-align: center;
    margin-left: 0px;
    font-weight: normal;
    padding-left: 0px;
    margin-right: 0px;
    width: 100%;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.menuheadertwodiv_whatson::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
.menuheadertwodiv_contacth {
    position: relative;
    color: rgb(255 255 255);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-image: linear-gradient(to right, rgb(102 210 253) 0%, #1c95a6, rgb(102 210 253) 100%);
    padding: 10px;
    text-align: center;
    margin-left: 0px;
    /* padding-left: 0px; */
    font-weight: normal;
    margin-right: 0px;
    /* width: 100%; */
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
    text-shadow: 0 2px 4px rgb(0 0 0);
}
.menuheadertwodiv_contacth::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
.menuheadertwodiv_welcome {
    position: relative;
    color: rgb(0 0 0);
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 20px;
    border-radius: 0px;
    background-image: linear-gradient(to right, rgb(252 202 65) 0%, #fcca41, rgb(252 202 65) 100%);
    padding: 10px;
    text-align: center;
    margin-left: 0px;
    font-weight: normal;
    padding-left: 0px;
    margin-right: 0px;
    width: 100%;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    border-color: #c7ad5c3d;
    align-items: center;
    overflow: hidden;
    font-weight: 400;
}
.menuheadertwodiv_welcome::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}

.menuheadertwodiv {
     position: relative;
     color: rgb(0 0 0);
     font-size: 25px;
     margin-top: 20px;
     margin-bottom: 20px;
     border-radius: 0px;
     background-image: linear-gradient(to right, rgb(102 210 253 / 37%) 0%, #1c95a6, rgb(102 210 253 / 33%) 100%);
     padding: 10px;
     text-align: center;
     margin-left: 0px;
	    padding-left: 0px;
     font-weight: normal;
     margin-right: 0px;
     width: 100%;
     justify-content: center;
     border-style: solid;
     border-width: 0px;
     border-color: #c7ad5c3d;
     align-items: center;
     overflow: hidden;
    /* Keeps shine inside the element */
     font-weight: 400;
}
.menuheadertwodiv::after {
     content: '';
     position: absolute;
     top: 0;
     left: -75%;
     width: 50%;
     height: 100%;
     background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
     transform: skewX(-20deg);
     animation: shineMove 2.5s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
}
@keyframes shineMove {
     0% {
         left: -75%;
    }
     100% {
         left: 125%;
    }
}
.btntheme {
     width: 32px;
}


p {
     color: #000000 !important;
     border-style: none;
     padding: 0px;
     justify-content: center;
     align-items: center;
     text-align: center;
     margin-top: 10px;
     margin-bottom: 15px;
     font-size: 23px;
     font-weight: 400;
     width: 100%;
     margin-right: 15px;
     margin-left: 15px;
}
.descriptions {
     color: #040404;
    /* Darker color for better readability */
     text-align: center;
     margin: 5px 20px;
    /* Uniform margin */
     font-size: 23px;
    /* Soft, subtle border */
     font-weight: 400;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 20px;
     flex-wrap: wrap;
     width: 100%;
     padding: 10px 15px;
    /* Adding padding for more breathing space */
     transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition */
     font-family: system-ui, sans-serif;
}
.worshipservicedescriptions{
	color: #000000;
    /* Darker color for better readability */
	text-align: center;
	margin: 0pc;
    /* Uniform margin */
	font-size: 23px;
    /* Soft, subtle border */
	font-weight: 400;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px;
	flex-wrap: wrap;
	margin-left: 20px;
	min-height: 150px;
	font-weight: normal;
	margin-right: 20px;
	width: 100%;
	/* border: 3px solid rgb(38 72 98); */
	padding: 10px 15px;
    /* Adding padding for more breathing space */
	border-top: none;
	margin-bottom: 30px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition */
	font-family: system-ui, sans-serif;
	background-color: #ffffff;
}
.whatsondescriptions{
	color: #000000;
    text-align: center;
    margin: 0pc;
    font-size: 23px;
    font-weight: 400;
    overflow: hidden;
    display: flex
;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    flex-wrap: wrap;
    margin-left: 20px;
    min-height: 150px;
    font-weight: normal;
    margin-right: 20px;
    width: 100%;
    /* border: 3px solid rgb(38 72 98); */
    padding: 10px 15px;
    border-top: none;
    margin-bottom: 30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: system-ui, sans-serif;
    background-color: #ffffff;
}
.nostyle_p {
     border-style: none;
     padding: 0px;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     font-size: 23px;
     color: #888888 !important;
     width: 100%;
     margin: auto;
     font-weight: 400;
     font-family: system-ui, sans-serif;
}
.error_pg_p {
     color: rgb(149 149 149);
     text-align: center;
     justify-content: center;
     align-items: center;
     width: 100%;
     padding: 15px;
     font-size: 20px;
}
.header {
     overflow: hidden;
     align-items: center;
     margin: 0px;
     padding-left: 10px;
     padding-right: 10px;
     border: 1px solid #5fd1fc;
     border-left: none;
     border-right: none;
     border-top: none;
}
.headinglogo {
     border-radius: 100px;
     position: relative;
     padding: 30px;
     /* border: 5px solid #57d0fb; */
     width: 100%;
     max-width: 500px;
     height: auto;
}
.headinglogo.animate {
     animation: wobbleBounce 1s ease-in-out;
}
.server_icon {
     max-width: 574px;
     width: 100%;
}
.headinglogo_mobile {
     width: 150px;
    /* padding-bottom: 20px;
     */
}
.center_logo {
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     margin-bottom: 0px;
     display: flex;
     justify-content: center;
     margin-top: 0px;
     /* padding: 50px; */
}
.main_image {
    position: relative;
    top: 0;
    z-index: -300;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-height: 500px;
}

.main_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/* Wobble + Bounce Animation */
@keyframes wobbleBounce {
     0% {
         transform: translateY(0) rotate(0deg);
    }
     20% {
         transform: translateY(-10px) rotate(-5deg);
    }
     40% {
         transform: translateY(0) rotate(5deg);
    }
     60% {
         transform: translateY(-6px) rotate(-3deg);
    }
     80% {
         transform: translateY(0) rotate(3deg);
    }
     100% {
         transform: translateY(0) rotate(0deg);
    }
}
.mainmenuheaderapps {
     display: flex;
     justify-content: center;
     align-items: center;
     position: fixed;
     padding: 20px;
     left: 0%;
     margin-bottom: 20px;
     right: 0%;
     z-index: 1;
     position: relative;
     /* background-image: linear-gradient(to right, rgb(255 255 255 / 0%) 0%, rgba(0, 0, 0, .125), rgb(255 255 255 / 0%) 100%); */
}
@keyframes topnavdnm {
     0% {
         background-color: rgba(8, 53, 103, 0.83);
    }
     25% {
         background-color: rgba(0, 65, 136, 0.8);
    }
     50% {
         background-color: rgba(1, 45, 95, 0.84);
    }
     75% {
         background-color: rgba(0, 65, 136, 0.8);
    }
     100% {
         background-color: rgba(1, 45, 95, 0.83);
    }
}

.btnFullscreen1 {
     border: 1px solid rgba(0, 0, 0, .125);
     background-color: rgba(0, 0, 0, 0);
     color: rgb(0 0 0);
     border-radius: 8px;
     -webkit-appearance: none;
     cursor: pointer;
     margin-left: 8px;
    /* width: 90px;
     */
     height: 45px;
     display: flex;
     justify-content: center;
     align-items: center;
}
.btnFullscreen1:hover {
     background-color: rgb(0, 0, 0, .125);
}
.btnFullscreen1:active {
     background-color: rgb(0 0 0 / 25%);
}
.social_btns {
     background-color: transparent;
    /* Rounded button for a more modern look */
     -webkit-appearance: none;
     text-align: center;
     font-size: 20px;
     cursor: pointer;
     margin: 5px;
    /* Square shape with equal height and width */
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 0;
    /* Soft border with transparency */
     transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* Smooth transitions */
    /* Light background color for initial state */
}
.social_btns:hover {
     transform: scale(1.1);
    /* Slight zoom effect on hover */
}
.social_btns:active {
     transform: scale(0.98);
    /* Slight shrink effect on click */
}
.social_btns img {
     width: 40px;
    /* Appropriate size for the icon */
     height: 40px;
    /* Ensures icon scales properly */
     transition: filter 0.3s ease;
    /* Smooth transition for hover effect */
     border-radius: 50px;
     border: 2px solid #2196F3;
     padding: 3px;
}
.social_btns:hover img {
     filter: brightness(1.2);
    /* Increase brightness of the icon on hover */
}
.footer_social_links {
     display: flex;
     justify-content: center;
     align-items: center;
     position: fixed;
     padding: 20px;
     left: 0%;
     right: 0%;
     z-index: 1;
     position: relative;
     margin: 0px;
     background-color: #ffffff29;
}
.headerimage {
     display: flex;
     height: 178px;
     justify-content: center;
     align-items: center;
     margin-bottom: 20px;
     margin-top: 5px;
     cursor: pointer;
}
.headerimagediv {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 20px;
     margin-top: 5px;
}
.btndivtwo {
    margin: 0px;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    border-radius: 20px;
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    padding-top: 0px;
    /* padding-bottom: 60px;
     */
    justify-content: center;
    align-items: center;
    /* border: 1px solid rgba(0, 0, 0, .125); */
}

.homebtn {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: normal;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px;
    height: 110px;
    width: 300px;
    cursor: pointer;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    font-family: system-ui, sans-serif;
    background: linear-gradient(rgb(102 210 253), rgb(102 210 253));
    padding: 15px 40px;
    transition: 0.2s ease-in-out;
    margin: 2px 2px 15px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 100px;
    overflow: hidden;
}
.homebtn:hover {
    background-image: linear-gradient(to right, rgb(178 178 178 / 46%) 0%, #ffffff 50%, rgb(178 178 178 / 52%) 100%);
	color:#000000
}
.homebtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  pointer-events: none;
}
.homebtn:active {
  background-image: linear-gradient(to right, rgb(255 255 255) 0%, rgb(255 255 255 / 49%) 50%, rgb(255 255 255) 100%);
}

.footerlogo {
     margin-top: 20px;
     padding: 20px;
     width: 100%;
     max-width: 200px;
     height: auto;
     background-color: #ffffff;
     border-radius: 20px;
     border: 2px solid #5fbbe1;
     border-bottom: 0px;
     border-top-right-radius: 60px;
     border-top-left-radius: 60px;
}
.footer {
     overflow: hidden;
     justify-content: center;
     margin: 0px;
     height: 100%;
     align-items: center;
     flex-wrap: wrap;
     background-color: #ffffff;
     /* padding: 20px; */
     /* border: 3px solid rgb(73 73 73); */
     border-left: none;
     border-right: none;
     border-bottom: none;
}
.copywritereserved {
     display: flex;
     justify-content: center;
     align-items: center;
     color: rgb(210 210 210);
}
.facebookdiv {
     display: flex;
     justify-content: center;
     margin-top: 30px;
     padding: 20px;
     width: -webkit-fill-available;
}
@keyframes menu {
     0% {
         background-color: rgb(206, 14, 0);
    }
     25% {
         background-color: rgb(0, 94, 169);
    }
     50% {
         background-color: rgb(76, 175, 80);
    }
     75% {
         background-color: rgb(255, 61, 0);
    }
     100% {
         background-color: rgb(206, 14, 0);
    }
}
@keyframes shake {
     10%, 90% {
         transform: translate3d(-1px, 0, 0);
    }
     20%, 80% {
         transform: translate3d(2px, 0, 0);
    }
     30%, 50%, 70% {
         transform: translate3d(-4px, 0, 0);
    }
     40%, 60% {
         transform: translate3d(4px, 0, 0);
    }
}
.bodyimagediv {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
}
.bodyimage {
     width: 128px;
     max-width: 100%;
     height: auto;
     border-radius: 12px;
     object-fit: cover;
     animation: sillyMove 2s infinite ease-in-out;
}
/* Silly animation keyframes */
@keyframes sillyMove {
     0% {
         transform: rotate(0deg) scale(1);
    }
     15% {
         transform: rotate(10deg) scale(1.1);
    }
     30% {
         transform: rotate(-10deg) scale(0.95);
    }
     45% {
         transform: rotate(15deg) translateY(-5px);
    }
     60% {
         transform: rotate(-15deg) translateY(5px);
    }
     75% {
         transform: scale(1.05) rotate(5deg);
    }
     100% {
         transform: rotate(0deg) scale(1);
    }
}
.callbackbtn {
     border: 3px solid rgb(0 0 0 / 23%);
     background-color: rgba(0, 0, 0, 0);
     color: rgb(0 92 133);
     -webkit-appearance: none;
     cursor: pointer;
     margin: 2px;
     border-radius: 105px;
     height: 130px;
     font-weight: 400;
     width: 80%;
     margin-top: 50px;
     font-size: 23px;
     overflow: hidden;
     margin-bottom: 20px;
     flex-direction: column;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 80px;
     /* animation: shake 7s infinite; */
     border-style: solid;
     border-color: #595959;
     /* border-top: none; */
     /* border-bottom: none; */
}
.callbackbtn:hover {
     background-color: rgb(0, 0, 0, .125);
}
.callbackbtn:active {
     background-color: rgb(0 0 0 / 25%);
}

@keyframes myanimation {
     0% {
         background-color: rgb(255 87 34 / 53%);
    }
     25% {
         background-color: rgb(0 94 169 / 47%);
    }
     50% {
         background-color: rgb(76 175 80 / 51%);
    }
     75% {
         background-color: rgb(233 30 99 / 53%);
    }
     100% {
         background-color: rgb(255 87 34 / 50%);
    }
}
.startcoding:hover {
     transform: rotate(360deg);
}
.startcoding:active {
     background-color: rgb(0 0 0 / 25%);
}
.donate_img {
     margin-bottom: 0px;
     margin-top: 20px;
     height: 128px;
     width: 128px;
     overflow: hidden;
     flex-direction: column;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: default;
}

.recommend_iframe {
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
     margin-bottom: 20px;
     border-radius: 20px;
     flex-wrap: wrap;
     width: 100%;
     height: 1150px;
     border-style: none;
}

.ssl-img-div {
     display: flex;
     justify-content: center;
     align-items: center;
    /* margin-bottom: 20px;
     */
     margin-top: 5px;
}
.ssl-img {
     display: flex;
     height: 72px;
     width: 72px;
     justify-content: center;
     align-items: center;
     margin-top: 0px;
     cursor: pointer;
     animation: shake 1s infinite;
}
.ssl-img-text {
     color: #000000;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     border-style: none;
     font-size: 20px;
     font-weight: 400;
     width: 100%;
     margin: auto;
     padding-bottom: 20px;
}
.ssl-text-failed {
     color: rgb(255 0 0);
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     border-style: none;
     padding-top: 60px;
     font-size: 20px;
     width: 100%;
     margin: auto;
     padding-bottom: 20px;
}
h2 {
     font-size: 22px;
     text-align: center;
     display: flex;
     margin-left: 20px;
     margin-right: 20px;
     border-radius: 50px;
     text-decoration: none;
     justify-content: center;
     padding: 9px;
     align-items: center;
}

/* Animated spinning gradient halo */
@keyframes rotateGradient {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
.invisible_div {
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
     margin-bottom: 20px;
     border-radius: 20px;
     flex-wrap: wrap;
     margin-right: auto;
     width: 100%;
     margin-left: auto;
     /* padding-left: 10px; issue not lining up dont use*/
     /* padding-right: 10px; issue not lining up dont use*/
     padding-top: 10px;
     padding-bottom: 10px;
}
h3 {
     color: rgb(139 139 139);
     font-size: 23px;
     font-weight: 300;
     margin: 0px;
     margin-bottom: 10px;
     width: 100%;
}
.pblboxesh2 {
     color: rgb(81 81 81);
     font-size: 23px;
     font-weight: normal;
     margin: 0px;
     margin-bottom: 10px;
     width: 100%;
}
.welboxesh2{
	font-size: 24px;
	font-weight: normal;
	margin: 0px;
	margin-bottom: 0px;
	width: 100%;
	line-height: 25px;
	padding-top: 20px;
}
.hplbox{
     color: rgb(109 109 109);
     font-family: system-ui, sans-serif;
     font-size: 20px;
     font-weight: normal;
     margin: 0px;
     margin-bottom: 10px;
     width: 100%;
}
.boxes_webdesign {
     height: 630px;
     width: 319px;
     padding: 20px;
     margin: 10px;
     border-radius: 20px;
     background-color: #000000;
     color: #b1b1b1;
     font-size: 23px;
     font-weight: 300;
     font-family: system-ui, sans-serif;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
     overflow: hidden;
     border: 3px solid #c8ad5b;
     border-style: solid;
     border-width: 10px;
     border-right: none;
     border-left: none;
}
/* Hover effect */
.boxes_webdesign:hover {
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
     background-color: #090909;
}
@keyframes bounceTurnLeftRight {
     0%, 100% {
         transform: translateY(0) rotate(0deg);
    }
     25% {
         transform: translateY(-10px) rotate(-15deg);
    }
     75% {
         transform: translateY(-10px) rotate(15deg);
    }
}
.boxicons {
     transition: transform 0.3s ease;
     margin-bottom: 10px;
     width: 170px;
     height:170px;
     /* animation: bounceTurnLeftRight 1.5s ease-in-out infinite; */
}
.boxicons3 {
     transition: 1s;
     margin-bottom: 20px;
     width: 200px;
}
.boxicons2 {
     transition: 1s;
     width: 175px;
}
@media (min-width: 1000px) {
      .boxicons2 {
    width: 230px;
    height: 150px;
    }
    }

.page_counter {
     color: #000000;
     font-size: 17px;
     text-align: center;
     border-radius: 50px;
     /* margin-left: 50px; */
     /* margin-right: 50px; */
     /* padding: 10px; */
}
input[type="color" i] {
     transition: 0.5s;
     background-size: 200% auto;
     border-style: solid;
     border-width: 1px;
     border-color: rgb(217 217 217);
     background-color: rgb(255 255 255);
     border-radius: 8px;
     height: 50px;
     margin: 10px;
     width: 226px;
     font-size: 20px;
     cursor: pointer;
     color: rgb(232 232 232);
     justify-content: center;
     align-items: center;
     padding: 5px;
     border-image: none;
}

.a_tag_btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
	margin:10px;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff!important;
  background: linear-gradient(145deg, #2994a5, #030012);
  border: none;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  width: 140px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.a_tag_btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(145deg, #ffffff, #000000);
}

.a_tag_btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.a_tag_btn img,
.a_tag_btn svg,
.a_tag_btn i {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.a_tag_btn:hover img,
.a_tag_btn:hover svg,
.a_tag_btn:hover i {
  transform: scale(1);
  filter: drop-shadow(0 0 6px white);
}


@media (min-width: 1000px) {
      .a_tag_btn {
        height: 100px;
    width: 350px;
      }
    }
.cntactbtn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin:10px;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff!important;
  background: linear-gradient(145deg, #7fcffa, #030012);
  border: none;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  width: 140px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.cntactbtn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(145deg, #ffffff, #000000);
}

.cntactbtn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
      .cntactbtn {
   padding: 0.5rem;
      }
    }

.cntactbtn img,
.cntactbtn svg,
.cntactbtn i {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cntactbtn:hover img,
.cntactbtn:hover svg,
.cntactbtn:hover i {
  transform: scale(1);
  filter: drop-shadow(0 0 6px white);
}

.clock-svg {
     width: 100px;
     height: auto;
}
.menu_container {
     background-color: rgb(255 255 255);
     color: rgb(12 12 12);
     text-align: center;
     margin: 10px;
     font-size: 20px;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     margin-right: auto;
     margin-left: auto;
     padding-bottom: 10px;
     padding-left: 10px;
     padding-right: 10px;
     padding-top: 10px;
     border-radius: 20px;
}
.terms_policy {
     color: rgb(12 12 12);
     text-align: left;
     margin: 10px;
     font-size: 23px;
     border-style: none;
     overflow: hidden;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
     margin-bottom: 20px;
     border-radius: 20px;
     flex-wrap: wrap;
     width: 100%;
     padding-bottom: 30px;
     padding-left: 10px;
     padding-right: 10px;
     padding-top: 30px;
}
.stepboxes {
     color: rgb(12 12 12);
     border-style: none;
     padding: 0px;
     justify-content: center;
     align-items: center;
     text-align: center;
     font-size: 23px;
     width: 100%;
     margin: auto;
     font-weight: 400;
     margin-bottom:10px;
}
.stepboxeh {
     color: rgb(199 172 87);
     border-style: none;
     padding: 0px;
     justify-content: center;
     align-items: center;
     text-align: center;
     font-size: 25px;
     width: 100%;
     margin: auto;
     font-weight: 400;
}
.pblboxes {
     border: 3px solid rgba(0, 0, 0, .125);
     background-color: rgba(0, 0, 0, 0);
     color: rgb(0 0 0);
     height: 284px;
     width: 224px;
     text-align: center;
     outline: none;
     font-size: 26px;
     border-radius: 20px;
     overflow: hidden;
     display: flex;
     cursor: pointer;
     justify-content: center;
     margin: 2px;
     align-items: center;
     padding: 5px;
     flex-wrap: wrap;
     
    /* Added animation */
     border-style: solid;
     border-width: 3px;
     border-color: #bcbcbc;
}
/* Keyframes for tilting side to side */
@keyframes tilt {
     0% {
         transform: rotate(-5deg);
        /* Starting tilt */
    }
     50% {
         transform: rotate(5deg);
        /* Maximum tilt */
    }
     100% {
         transform: rotate(-5deg);
        /* Back to starting tilt */
    }
}
.welboxes1 {
     height: 170px;
     color: #020202 !important;
     width: 170px;
     text-align: center;
     background-color: #5189d3;
     outline: none;
     font-size: 26px;
     font-family: system-ui, sans-serif;
     border: 5px solid #ffffff;
     border-radius: 100px;
     overflow: hidden;
     display: flex;
     cursor: pointer;
     justify-content: center;
     margin: 5px;
     align-items: center;
     padding: 0px;
     flex-wrap: wrap;
     
     
    /* Subtle shadow for depth */
}
.welboxes1:hover {

}
.welboxes1:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes1 {
  width: 230px;
  height: 230px;
  border-radius: 200px;
  }
    }
.welboxes2 {
    color: #c3c3c3 !important;
    height: 170px;
    width: 170px;
    text-align: center;
    outline: none;
    background-color: #5e2200;
    font-size: 26px;
    font-family: system-ui, sans-serif;
    border-radius: 3px;
    border: 5px solid #ffffff;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    border-radius: 100px;
    justify-content: center;
    margin: 5px;
    align-items: center;
    /* animation: animationtoggledes 10s infinite; */
    padding: 0px;
    flex-wrap: wrap;
}
.welboxes2:hover {

}
.welboxes2:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes2 {
   width: 230px;
   height: 230px;
   border-radius: 200px;
   }
    }
.welboxes3 {
     height: 170px;
     color: #020202 !important;
     width: 170px;
     text-align: center;
     outline: none;
     background-color: #cac9c4;
     font-size: 26px;
     border: 5px solid #ffffff;
     font-family: system-ui, sans-serif;
     border-radius: 3px;
     overflow: hidden;
     display: flex;
     border-radius: 100px;
     cursor: pointer;
     justify-content: center;
     margin: 5px;
     align-items: center;
     /* animation: animationtoggledes 10s infinite; */
     padding: 0px;
     flex-wrap: wrap;
}
.welboxes3:hover {

}
.welboxes3:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes3 {
   width: 230px;
   height: 230px;
   border-radius: 200px;
   }
    }
.welboxes4 {
    background-color: #ccb945;
    height: 170px;
    width: 170px;
    color: #020202 !important;
    text-align: center;
    outline: none;
    border-radius: 100px;
    border: 5px solid #ffffff;
    font-size: 26px;
    font-family: system-ui, sans-serif;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin: 5px;
    align-items: center;
    /* animation: animationtoggledes 10s infinite; */
    padding: 0px;
    flex-wrap: wrap;
}
.welboxes4:hover {

}
.welboxes4:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes4 {
     width: 230px;
     height: 230px;
     border-radius: 200px;
     }
    }
.welboxes5 {
    background-color: #f06249;
    height: 170px;
    width: 170px;
    color: #020202 !important;
    text-align: center;
    outline: none;
    font-size: 26px;
    font-family: system-ui, sans-serif;
    border-radius: 3px;
    border: 5px solid #ffffff;
    overflow: hidden;
    border-radius: 100px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin: 5px;
    align-items: center;
    /* animation: animationtoggledes 10s infinite; */
    padding: 0px;
    flex-wrap: wrap;
}
.welboxes5:hover {

}
.welboxes5:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes5 {
        height: 230px;
        width: 230px;
        border-radius: 200px;
      }
    }
.welboxes6 {
    background-color: #FF5722;
    height: 170px;
    width: 170px;
    color: #020202 !important;
    text-align: center;
    outline: none;
    font-size: 26px;
    font-family: system-ui, sans-serif;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    border: 5px solid #ffffff;
    justify-content: center;
    margin: 5px;
    align-items: center;
    /* animation: animationtoggledes 10s infinite; */
    padding: 0px;
    flex-wrap: wrap;
}
.welboxes6:hover {

}
.welboxes6:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes6 {
        height: 230px;
        width: 230px;
        border-radius: 200px;
      }
    }
.welboxes7 {
    background-color: #4CAF50;
    height: 170px;
    width: 170px;
    color: #020202 !important;
    text-align: center;
    outline: none;
    font-size: 26px;
    font-family: system-ui, sans-serif;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    border: 5px solid #ffffff;
    justify-content: center;
    margin: 5px;
    align-items: center;
    /* animation: animationtoggledes 10s infinite; */
    padding: 0px;
    flex-wrap: wrap;
}
.welboxes7:hover {

}
.welboxes7:active {
     transform: scale(0.98);
    /* Slight shrink effect when clicked */
}
@media (min-width: 1000px) {
      .welboxes7 {
        height: 230px;
        width: 230px;
        border-radius: 200px;
      }
    }
/* EXPAND DESCRIPTIONS START*/
.toggle-btn {
     background-color: rgb(0 0 0 / 0%);
     color: rgb(0 0 0);
     border-radius: 50px;
     -webkit-appearance: none;
     cursor: pointer;
     margin: 2px;
     height: 100px;
     width: 300px;
     font-size: 25px;
     overflow: hidden;
     flex-direction: column;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 5px;
     border: 1px solid rgba(0, 0, 0, .125);
     display: inline-flex;
     justify-content: center;
     border-width: 0px;
     align-items: center;
     transition: 1s;
     animation: wellboxes 10s infinite;
}
@keyframes animationtoggledes {
     0% {
         background-color: rgb(255 255 255);
    }
     25% {
         background-color: rgb(102 210 253);
    }
     50% {
         background-color: rgb(255 255 255);
    }
     75% {
         background-color: rgb(102 210 253);
    }
     100% {
         background-color: rgb(255 255 255);
    }
}
@keyframes wellboxes {
     0% {
         background-color: rgb(43 151 168);
    }
     25% {
         background-color: rgb(255 0 87);
    }
     50% {
         background-color: rgb(45 152 169);
    }
     75% {
         background-color: rgb(255 0 87);
    }
     100% {
         background-color: rgb(41 150 167);
    }
}
.toggle-btn:hover {
     transform: rotate(360deg);
}
.toggle-btn:active {
     background-color: rgb(0 0 0 / 25%);
}
.more-text {
     display: block;
     max-height: 0;
    /* Initially collapsed */
     overflow: hidden;
     transition: max-height 0.5s ease-out;
    /* Smooth transition */
}
.more-text.expanded {
     max-height: 10000px;
    /* Large enough to expand all content */
}
.toggle-btn img {
     width: 40px;
    /* Adjust the icon size */
     height: 40px;
    /* Adjust the icon size */
}
/* EXPAND DESCRIPTIONS END*/
.time_frame_cp {
     color: rgb(12 12 12);
     text-align: center;
     margin: 30px;
     font-size: 20px;
     border-style: none;
     border-width: 3px;
     border-color: rgb(217 217 217);
     overflow: hidden;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
     margin-bottom: 20px;
     border-radius: 20px;
     flex-wrap: wrap;
     margin-right: auto;
     margin-left: auto;
     width: 90%;
     padding-bottom: 30px;
     padding-left: 10px;
     padding-right: 10px;
     padding-top: 30px;
}

.table_header {
     font-size: 20px;
     color: rgb(0 0 0);
     font-weight: 500;
     text-align: left;
     /* width: 100%; */
}
.chatbotimg {
     width: 40px;
}

    .table-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      /* max-width: 1200px; */
      margin: 0 auto;
    }

    th, td {
      border: 2px solid #b7b7b7;
      padding: 3px;
      font-weight: 400;
      background-color: #000;
      text-align: left;
      font-size: 23px;
      color: #717171;
    }

    @media (max-width: 600px) {
      table, th, td {
        font-size: 16px;
      }
    }
.contacttable{
	     border-collapse: collapse;
	     width: 100%;
	     overflow: hidden;
	     background-color: #000000;
	     margin-top: 15px;
}
@media (max-width: 480px) {
      .contacttable {
width:85%
      }
    }
@media (min-width: 480px) {
      .contacttable {width: 98%;}
    }


.contacttr{
	 display: table-row;
	 vertical-align: inherit;
	 unicode-bidi: isolate;
	 border-color: #ffffff;
}

.contactth{
	 background-color: #ffffff;
	 color: #000000;
	 font-size: 20px;
	 font-weight: normal;
	 font-family: system-ui, sans-serif;
}
@media (max-width: 480px) {
      .contactth {
font-size:16px
      }
    }

.abouttable{
	     border-collapse: collapse;
	     width: 90%!important;
	     overflow: hidden;
	     background-color: #000000;
	     margin-bottom: 10px;
}

.abouttr{
	 display: table-row;
     vertical-align: inherit;
     unicode-bidi: isolate;
     border-color: #ffffff;
}

.abouttd{
	 background-color: #000000;
	 color: #767676;
	 font-size: 20px;
	 font-weight: normal;
	 font-family: system-ui, sans-serif;
}


.designtable{
	     border-collapse: collapse;
	     width: 90%;
	     overflow: hidden;
	     background-color: #000000;
}

.designtr{
	 display: table-row;
     vertical-align: inherit;
     unicode-bidi: isolate;
     border-color: #ffffff;
}

.designth{
	 background-color: #000000;
	 color: #8d8d8d;
	 font-size: 20px;
	 font-weight: 400;
	 font-family: system-ui, sans-serif;
}
.designtd{
	 background-color: #000000;
	 color: #7f7f7f;
	 font-size: 23px;
	 font-weight: 400;
	 font-family: system-ui, sans-serif;
}
.footertxt{
	text-align: center;
	font-size:20px;
	color: #000000 !important;
	border-style: none;
	padding: 0px;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 1px;
	line-height: 1.1;
	margin-bottom: 1px;
	font-size: 17px;
	font-weight: 400;
	margin-right: 15px;
	margin-left: 15px;
	width: auto;
}
.objects_container_vid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* margin-top: 20px; */
  /* height: 100vh; */
  background-color: #1aba2d82;
  overflow: hidden;
  position: relative;
  box-sizing: border-box; /* include border in calculations */
  padding-bottom: 20px;
  padding-top: 20px;
}

.objects_container_vid video {
  max-width: 1000px;
  max-height: 100%;
  width: 100%;      /* make it shrink/grow properly */
  height: auto;
  object-fit: contain;
  display: block;
  /* border: 2px solid #fcca41; */
  box-sizing: border-box; /* include border in max-width */
  border-radius: 20px;
}
@media (max-width: 1200px) {
      .objects_container_vid video {
width:95%
      }
    }


.video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 130px; /* adjust size as needed */
  height: 130px;
  transition: opacity 0.3s, visibility 0.3s;
}

.video-toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none; /* prevent image from blocking clicks */
}

.video-toggle.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Whole section */
.photo_gallery {
           /* light background */
           padding: 40px 20px;          /* breathing space */
                    /* soft corners */
            /* subtle card look */
           margin: 40px auto;           /* centered on page */
           /* border: 20px solid #2c98f5; */
           margin-top: 0px;
           margin-bottom: 0px;
           /* max-width: 920px; */
           /* border-radius: 20px; */
           /* border-top: none; */
}

/* Image container */
.objects_container_photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  /* margin-bottom: 25px; */         /* space before button */
  background-color: #43e8e0;
}

.objects_container_photos img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 480px) {
      .objects_container_photos img {
 width: 190px;
      }
    }

.photos_more_btn button  {
  border: 10px solid #d1d1d1;
  /* background-color: #005ca5; */
  color: #ffffff;
  background-image: linear-gradient(to right, rgb(102 210 253 / 37%) 0%, #1c95a6, rgb(102 210 253 / 33%) 100%);
  border-radius: 100px;
  font-size: 23px;
  font-weight: 400;
  padding: 12px 20px;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  text-align: center;
  width: 100%;
}

/* Hover effect */


.photos_more_btn button:focus {
  box-shadow: 0 0 5px rgba(91, 155, 213, 0.6); /* Focus shadow */
}
.photos_more_btn button:active {
 background-image: linear-gradient(to right, rgb(102 210 253 / 37%) 0%, #000000, rgb(102 210 253 / 33%) 100%);
}
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  /* margin-top: 20px; */
  margin-bottom: 60px;
  background-color: #daefff;
}

.logo-bar img {
  height: 110px;
  transition: transform 0.3s;
  padding: 10px;
}

.logo-bar img:hover {
  transform: scale(1.5);
}
.main_image {
  position: relative;
  width: 100%;
  padding-top: 50%;   /* adjust this for aspect ratio (50% = 2:1) */
  overflow: hidden;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;      /* fills the container */
  object-fit: cover; /* maintain aspect ratio, crop if needed */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slideshow.active {
  opacity: 1;
  z-index: 2;
}

.image-heading {
  position: absolute;
  top: 0px;
  left: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  z-index: 3;
}