/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 01 2025 | 12:53:42 */
#progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .625rem;
    background: rgba(245, 246, 244, 1);
    z-index: 9999;
    transform: translateY(96%);
    border-radius: 10px;
}
#progress-bar {
    height: 100%;
    background: rgb(13, 103, 80);
    width: 0;
    transition: width 0.25s ease-out;
    border-radius: 12px;
}
.inside-header {
    position: relative;
}

.inside-navigation {
    position: static;
}
.main-navigation.navigation-stick ,.main-navigation.navigation-stick .inside-navigation {
    position: relative;
}
.sticky-enabled .main-navigation.is_stuck {
    box-shadow: none !important; 
}
@media (max-width: 1023.9px){
	#progress-container {
    	position: fixed;
		top: 5rem;	
	}
}


.mobile-menu-popup {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(.1,.6,.4,1);
    transition-duration: .5s;
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    top: 0;
    left: 0;

    z-index: 99;
	
	  background-color: #008B69;
    background-image: url('https://aikeyam.com/wp-content/uploads/2025/08/Vector-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translatey(-100%);
}
.mobile-menu-popup.active{
    transform: translatey(0%);
}
/* ===== Mobile menu (scoped) ===== */
.mobile-menu-popup {
  --menu-bg: #0e8a6a;            /* base green */
  --menu-bg-2: #0a6e56;          /* deeper green for gradient */
  --menu-text: #ffffff;
  --menu-text-dim: rgba(255,255,255,.85);
  --divider: rgba(255,255,255,.15);
  --radius: 16px;
  --pad-x: 18px;
  --pad-y: 14px;
  --speed: .25s;
}
body .mobile-menu-popup .is-layout-flex{
	display: block
}
/* Container look */
.mobile-menu-popup.gb-container {
  overflow: hidden;
  padding: 0 var(--pad-x) 58px;
}

/* Navigation reset */
.mobile-menu-popup nav.wp-block-navigation {
  width: 100%;
  padding: 0;                     /* we’ll space items individually */
  margin: 0 auto;
}
.mobile-menu-popup .wp-block-navigation__container {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px !important;
}

/* Top-level items (links & toggle buttons) */
.mobile-menu-popup .wp-block-navigation-item > .wp-block-navigation-item__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: var(--menu-text);
  position: relative;
  transition: background var(--speed), opacity var(--speed);
	padding: 10px 0;                /* top-level no side padding – divider flush */
  font-size: 16px;                /* headings size */
  line-height: 1.25;
  font-weight: 600;               /* bold like Figma */
  background: transparent !important;
  border-radius: 0;               /* flat list */
}

/* Tappable area also for submenu toggle button */
.mobile-menu-popup .wp-block-navigation-submenu > .wp-block-navigation-item__content {
  background: transparent;
}
.mobile-menu-popup .wp-block-navigation-item {
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
}
.mobile-menu-popup .wp-block-navigation-item:last-child {
  border-bottom: 0 !important;
}
/* Subtle hover */
.mobile-menu-popup .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
  background: rgba(255,255,255,.06);
}

/* Divider between items */
.mobile-menu-popup .wp-block-navigation-item:not(:last-child) {
  border-bottom: 1px solid var(--divider);
}

/* ----- Submenu ----- */
.mobile-menu-popup .wp-block-navigation-submenu {
  position: relative;
  border-bottom: none;
}

/* Hide Gutenberg’s default caret (we’ll style our own) */
.mobile-menu-popup .wp-block-navigation__submenu-icon {
  display: none;
}

/* Our caret */
.mobile-menu-popup .wp-block-navigation-submenu > .wp-block-navigation-item__content::after {
  content: "";
  margin-left: auto;              /* push to far right */
  width: 12px; height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: .9;
  transition: transform .25s ease;
}

/* Rotate caret when open */

.mobile-menu-popup .wp-block-navigation-submenu.is-open
  > .wp-block-navigation-item__content::after {
  transform: rotate(-135deg);
}

/* Submenu container (animated height) */
.mobile-menu-popup .wp-block-navigation__submenu-container {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--speed) ease;
	margin-left: calc(var(--pad-x) - 8px);
}

/* Visible state */
.mobile-menu-popup .wp-block-navigation-submenu.is-open
  > .wp-block-navigation__submenu-container {
  /* large enough to fit items; animation uses max-height */
  max-height: 600px;
}

/* Submenu links */
.mobile-menu-popup .wp-block-navigation__submenu-container
  .wp-block-navigation-item > .wp-block-navigation-item__content {
  color: var(--menu-text-dim);
  font-weight: 400;
  padding: 10px calc(var(--pad-x) - 4px);
  border-radius: 8px;
}

.mobile-menu-popup .wp-block-navigation__submenu-container
  .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
  color: var(--menu-text);
  background: rgba(255,255,255,.05);
}

/* Accessibility focus */


/* ----- Bottom custom buttons area ----- */
.mobile-menu-popup .custom-menu-buttons {
  padding: 12px var(--pad-x) 18px;
/*   border-top: 1px solid var(--divider); */
  display: flex;
  gap: 12px;
	position: absolute;
	bottom: 80px;
}

.mobile-menu-popup .custom-menu-buttons .custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 600;
  color: #0e8a6a;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.mobile-menu-popup .custom-menu-buttons .custom-button.hvr-black-green {
  color: #ffffff;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.25);
}

.mobile-menu-popup .custom-menu-buttons .custom-button .btn-wrapper {
  display: inline-flex;
  position: relative;
}

.mobile-menu-popup .custom-menu-buttons .custom-button .btn-wrapper .absolute {
  position: absolute;
  inset: 0;
  transform: translateY(120%);
  transition: transform var(--speed);
}

.mobile-menu-popup .custom-menu-buttons .custom-button:hover .btn-wrapper .absolute {
  transform: translateY(0);
}
a.custom-button, button.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 16px;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #0e8a6a;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* --- Hover: Transparent background, black border --- */
a.custom-button:hover, button.custom-button:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* --- Dark variant (login button) --- */
a.custom-button.hvr-black-green, button.custom-button.hvr-black-green {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

a.custom-button.hvr-black-green:hover, button.custom-button.hvr-black-green:hover {
  background-color: #ffffff;
  color: #0e8a6a;
  border-color: #ffffff;
}

/* Optional: White-border only variant */
a.custom-button.with-white-border, button.custom-button.with-white-border {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
a.custom-button.with-white-border:hover, button.custom-button.with-white-border:hover {
  background-color: #ffffff;
  color: #0e8a6a;
}
a.custom-button:hover, button.custom-button:hover {
  background-color: #00c482;
  color: white;
  border-color: #00c482;
}


/* Button with green color and hover transparet with black border Chetan*/
a.custom-green-button,button.custom-green-button {
  background-color: #00c482;
  color: white;
  border: 2px solid #00c482;

}

a.custom-green-button:hover, button.custom-green-button:hover {
  background-color: transparent;
  color: black;
  border-color: #1f2937;
}

a.custom-button.hvr-black-green,button.custom-button.hvr-black-green{
	  background-color: #100f0f;
	  color: white;
	  border-color: #100f0f;
}
a.custom-button.full-width,
button.custom-button.full-width{
	width: 100%;
}
a.custom-button.hvr-black-green:hover, button.custom-button.hvr-black-green:hover {
  background-color: #00c482;
  color: white;
  border-color: #00c482;
}
a.custom-button:focus,button.custom-button:focus {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
}

a.custom-button span, button.custom-button span {
	display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: transform 0.5s ease;
    line-height: 1;
}

a.custom-button > span, button.custom-button > span {
  overflow: hidden;
}
a.custom-button > span, button.custom-button > span {
  display: inline-block;
  position: relative;
  transition: transform 0.5s ease;
}
a.custom-button .absolute, button.custom-button .absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

a.custom-button:hover > span span:first-child, button.custom-button:hover > span span:first-child {
  transform: translateY(-100%);
}

a.custom-button:hover .absolute, button.custom-button:hover .absolute {
  transform: translateY(0);
}

a.custom-button.with-white-border,button.custom-button.with-white-border{
	border-color: #fff;
	background: transparent;
}
a.custom-button.with-white-border:hover,button.custom-button.with-white-border:hover{
	border-color: #00c482;
}
a.custom-button.hover-dark:hover, button.custom-button.hover-dark:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
@media (min-width: 768px) {
  a.custom-button, button.custom-button {
    font-size: 1rem;
    border-radius: 1rem;
  }
}

@media (min-width: 1280px) {
  a.custom-button, button.custom-button {
    font-size: 1rem;
  }
}

.header-wrap {
   
    z-index: 99999;
}
@media (min-width: 992px){
	.toggle-wrap{
		display: none;
	}
}
@media (max-width: 991px){
	.has-inline-mobile-toggle .inside-header{
		background: #fff;
		border-radius: 15px;
		margin: 15px 24px;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		padding: 15px;
	}
	.has-inline-mobile-toggle .inside-header > .main-navigation {
		display: none !important;
	}
	.site-logo{
			width: 120px;
	}
}


.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  float: left;
  
  /*disable selection*/
  -webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.toggle-bar {
    width: 38px;
    margin: 10px 0;
    position: relative;
    border-top: 6px solid #0b6750;
    display: block;
    border-radius: 3px;
}
.toggle-bar::before,
.toggle-bar::after {
	content: "";
	display: block;
	background: #0b6750;
	height: 6px;
	border-radius: 3px;
	width: 38px;
	position: absolute;
	top: -16px;
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-ms-transform-origin: 13%;
	-webkit-transform-origin: 13%;
	transform-origin: 13%;
}
.toggle-bar::after {
  top: 4px;
}
.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}
.toggle-wrap.active .toggle-bar::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.toggle-wrap.active .toggle-bar::after {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

    .test-wrapper .elementor-loop-container.elementor-grid > .e-loop-item:first-of-type .e-con.e-child[data-settings*="background_background"] {
/*             width: 652px; */
/*             height: 285px; */
/*             transform: rotate(0deg); */
/*             opacity: 1; */
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
/*             background-size: cover; */
/*             background-position: center; */
/*             background-repeat: no-repeat; */
        }

