    /*
Theme Name: HexaMegaMenu AJAX
Author: OpenAI
Description: Single-page AJAX theme with dynamic 4-column mega menu and dark/light mode.
Version: 1.1
Text Domain: hexamegamenu
*/

.simple-slider .slide img, .simple-slider .slide video {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.h1-title-header {
	width: 90%;
  max-width: 1920px;
  margin: 0 auto;
	margin-top: 160px;
}

.h1-title-header-front {
	width: 90%;
  max-width: 1920px;
  margin: 0 auto;
	margin-top: 75px;
}

.inner-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 0px 100px 0px;
    padding-right: 0px;
    padding-left: 0px;
  padding-left: 5%;
  padding-right: 5%;
}

.simple-slider {
 
  margin-top: 135px;
}

.header-content-space {
  height: 65px;
  border: none;
}

.search, ul li {
    justify-content: left;
    width: 100%;
}

.search h1 {
    margin-top: 200px;
    margin-left: 5%;
}

.search li p {
    display: none;
}

.search-list, ul li:hover {
  background: transparent !important;
}

ul.search-list:hover {
    background: transparent;
}

.search-main-center {
  min-height: 1367px;
    box-sizing: border-box;
 margin: 0 auto;
 background-color:rgba(0, 0, 0, 0.8);
     padding: 15%;
    width:100%;
        padding-top: 2%;
    padding-bottom: 2%;
    margin-top:135px;
}


/*******animation box*****/




.lottieplay {
  width: 100% !important;
  height: inherit;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}




/*******/

/****custom-image-cut******/

.custom-cut-img {  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);}



/******/


/*******Graph******/


.seo-stats-chart {
  text-align: center;
  font-family: 'Inter', sans-serif;
  margin: 3rem 0;
}

.chart-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: .5rem;
  height: 220px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.bar {
  width: 50px;
  height: 0;
  background: var(--color, #00bfa5);
  border-radius: 8px 8px 0 0;
  position: relative;
  animation: growUp 1.2s ease-out forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

.bar::before {
    content: var(--label);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #fff;
    width: 50px;
}

.bar::after {
  content: var(--value);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: #111;
}

@keyframes growUp {
  to {
    height: var(--value);
  }
}

.bolt-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 2rem;
  color: #f9b000;
  animation: boltRise 2.5s ease-in-out infinite;
  transform: rotate(-25deg);
  opacity: 0.9;
}

@keyframes boltRise {
  0%   { bottom: 0%; left: 5%; opacity: 0; }
  30%  { opacity: 1; }
  50%  { bottom: 50%; left: 30%; opacity: 1; }
  100% { bottom: 100%; left: 90%; opacity: 0; }
}







/*************/

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}



/*****theme toggle*****/

div#togglefortheme {
    width: 25px;
    display: block;
    right: 75px;
    position: absolute;
    top: 35px;
}


/* HIDE the checkbox itself */
.theme-toggle-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* VERTICAL TOGGLE LABEL */
.theme-toggle-label {
  --toggle-width: 30px;
  --toggle-height: 30px;
  --track-radius: 15px;    /* half of width */
  --thumb-size: 26px;      /* slightly smaller than width */
  --sun-color: #ffcc00;
  --moon-color: #edf2f7;
  --track-light: #ccc;
  --track-dark: #333333;

  display: inline-block;
  width: var(--toggle-width);
  height: var(--toggle-height);
  background-color: var(--track-light);
  border-radius: var(--track-radius);
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* SUN ICON (unchecked) — top of track */
.theme-toggle-label::before {
  content: "☀️";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--sun-color);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* MOON ICON (checked) — bottom of track */
.theme-toggle-label::after {
  content: "🌙";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  font-size: 16px;
  color: var(--moon-color);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* THUMB (sliding circle) */
.theme-toggle-label::marker {
  content: "";
  position: absolute;
  top: 2px;                   /* start at top */
  left: 2px;
  width: var(--thumb-size);
  height: var(--thumb-size);
  background-color:  #e0e0e0;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: top 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

/* CHECKED STATE: change track, icons, and move thumb */
.theme-toggle-checkbox:checked + .theme-toggle-label {
  background-color: var(--track-dark);
}

.theme-toggle-checkbox:checked + .theme-toggle-label::before {
  /* Hide sun: fade out and move slightly up */
  opacity: 0;
  transform: translate(-50%, -10px);
}

.theme-toggle-checkbox:checked + .theme-toggle-label::after {
  /* Show moon: fade in and reset scale */
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.theme-toggle-checkbox:checked + .theme-toggle-label::marker {
  /* Slide thumb to bottom */
  top: calc(100% - var(--thumb-size) - 2px);
  /* Optionally scale ... */
  transform: scale(0.95);
}




/************/


/****background cross clip*****/
 

.cross-angled-clip1 {
    background: #202020;
    width: 100%;
    height: 900px;
    z-index: -1;
    transform: rotate(30deg);
    clip-path: polygon(0 0, 60% 0, 100% 60%, 0 100%);
    position: fixed;
    top: 0;
}

.cross-angled-clip {
    background: 	#1A1A1A;
    width: 100%;
    height: 900px;
    z-index: -1;
    transform: rotate(15deg);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    position: fixed;
}



/****accordion****/

.accordion-wrapper ul {
    background: none;
    display: block;
    height: auto;
    margin: inherit;
}

.accordion-title {
    font-weight: bold;
    color: #b3ffff;
    font-size: 1.85em;
}

.accordion-toggle i {
    margin-right: 0.5em;
    color: #fff;
}


.accordion-wrapper
 
 {
    padding-left: 1em;
    border: none;
    background: transparent;
    text-align: right;
 
    padding: 0;
    margin-top: 50px;
    margin-bottom: 50px;
}

.accordion-content ul {
    min-height: 0;
}
.accordion-content ul:hover {
   background:none;
}

.accordion-toggle {
  background: #000;
  border: none;
  font-size: 1.2em;
  padding: 3% !important;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.accordion-item {
    border-left: 1px solid #0BAAC9;
    margin-bottom: 1em;
    border:none;
 
}


.accordion-item.open .accordion-content {
    display: block;
    text-align: left;
   
}

.accordion-content {border-top:none;}

/********/




.center-content ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 5%;
  list-style: none;
  background: #1e1f23;
 
  margin: 0 auto;
  color: #e0e0e0;
}
ul:hover {background:#fff;  color: #000; }
 
ul li:hover { color: #000; }

.wp-block-media-text>.wp-block-media-text__content {
  
padding:0;
}





html {
  height: 100%;
  min-width:360px;
}
body {
  display: flex;
  flex-direction: column;  /* stack header → main → footer */
  min-height: 100%;        /* let body fill viewport */
  margin: 0;
    font-family: 'Inter', 'Noto Sans', sans-serif;
  margin: 0;
    background-color: rgba(0, 0, 0, 0.9);
  color: var(--text, #e0e0e0);
   min-width:360px;
}

/* 2. Let your main/content area grow to push footer down */
main {
  flex: 1;
 

}

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

.search-list li {
  margin-top: 25px;
  background: none;
}

.search-list {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  min-width: 100%;
}

.center-content .search-list {background: none;}

.search-list a {
  font-size: 25px;
  text-decoration: none;
  color: #e0e0e0;
}

.search-list a:hover {color:#ccc;}

 .custom-logo-link {
  height: 100%;
  display: block;
}


 

/* Hover with purple tint */
.site-logo img:hover {
  filter: drop-shadow(0 0 10px #5a34cc) brightness(1.1) saturate(1.3);
}

/* If you want to toggle between two colors on hover (example with a wrapper class) */
.site-logo.pink-hover img:hover {
  filter: drop-shadow(0 0 10px #e60050) brightness(1.1) saturate(1.3);
}

 
#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
#menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
#mega-menu {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 55%;
  background: #1e1e1e;
  color: #e0e0e0;
  z-index: 1002;
  transition: bottom 0.3s ease;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  padding: 2em;
  box-sizing: border-box;
}
#mega-menu.open {
  bottom: 0;
}
.mega-column {
  padding: 0;
  margin-left:0;
}
.widget-title {
  font-weight: bold;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #444;
}
.loader {
  display: none;
  text-align: center;
  padding: 2em;
}
.loader.active {
  display: block;
}



body {
   color: #e0e0e0;
}

#theme-toggle {
    position: absolute;
    z-index: 9999;
    cursor: pointer;
    font-size: 25px;
    background: var(--accent);
    color: #e0e0e0;
    padding: 5px;
    border-radius: 50%;
    vertical-align: middle;
    margin-top: 5px;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

h1 {font-size: 4.25em;    color: #adc6d5;}
h2 {
   font-size: 3.25em; 
  color: #5fb5ea;
 
    overflow: visible; 
    box-sizing: border-box;
}


 
 


h3 {
    font-size: 2.5em;
    line-height: 1.5;
 color:#0bf5f7;
}



 
h4 {
  font-size: 2em;
  color: #ffffff;
  padding: 30px 30px 30px 0px;
}


h5  {   font-weight: bold;
    line-height: 3;
     color:#ffffff;
   font-size: 1.8em;}
h6 {font-size: 1.5em;  color:#ffffff;}

p {
 font-size: 1.25em;     /* ~20px */
  line-height: 1.6;
   margin-bottom: 1.5em;
   color:#ffffff;}

strong {
    color: #ffffff;
    font-size: 1.25em;
    line-height: 1.6;
    display: contents;
}

 
li {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1.5em;
    list-style: none;
    border-left: 1px solid #00bee6;
    padding-left: 15px;
}

.h1title {
    box-sizing: border-box;
    margin: 0 auto;
 
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    word-break: break-word;
}

.center-content {
    box-sizing: border-box;
 margin: 0 auto;
 
    width:100%;
    
 
 
}
 
.center-content h2
 
 { 
    margin: 0;
     margin: 0 auto;
 clip-path:none;
 
   
    
}

 .wp-block-column.center-content.is-layout-flow.wp-block-column-is-layout-flow {
    margin: 0 auto;
}

.hex-grid h2 {
  padding-bottom: 10%;
  text-align: center;
  display: flow-root;
}

.banner-across {
    height: auto;
    width: 100%;
  background: #034455;
 
 
 
}

.banner-across p {color:#ffffff;}

.banner-across strong {color:#ffffff;}

.banner-across h2 { 
 
 color: #ffffff;
 
}

.banner-across h3 {
 
 color:#b3ffff;
 
}
.banner-across-2 {
    height: auto;
    width: 100%;
    background:#111;

 
 
}

.banner-across-2 p {
    color: #fff;
}

.banner-across-2 h3 {
    color: #b3ffff;
}


 

.banner-across-2 h2 {  
 
color: #fff;
 
}


footer {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    background: #060606;
    color: #E0E0E0;
    transition: bottom 0.3s ease;
    display: grid;
    gap: 1em;
    padding: 2em;
    z-index: -1;
    text-align:center;
	padding-bottom: 100px;
}


#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;    /* fill viewport */
  height: 100vh;   /* fill viewport */
  z-index: -1;     /* behind page content */
  background: #000;
  opacity: 0.6;
}

 


.menu-main-menu-container {
  width: 80%;
  margin: 0 auto;
}


#menu-main-menu {
  width: 100%;
}

.menu-main-menu-container {
  width: 100%;
  margin: 0 auto;
}

.menu {
    width: 100%;
    background: none;
}


.menu li {
  width:100%;
  float: left;
  list-style:none;
}


.menu:hover {
    background: none;
}

.ajax-page-link {
  color: #e0e0e0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5em;
}

label {
  font-size: 1.5em;
}

input {font-size: 1.5em;}


input[type="search"] { border-radius:4rem; }



.wp-block-search__button.wp-element-button {
    color: #ffffff;
    border: 2px solid #000000;
    background: transparent;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
    transition: background 0.2s ease;
    margin-top: 10px;
    margin-left: 0;
}

.wp-block-button__link:hover {
  background-color: #000;
}

.wp-block-button__link {
    background-color: #333;
    color:#e0e0e0;
    border: 1px solid #0f93b3;
    border-radius: 9999px;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.5em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
    will-change: transform;
    z-index: 0;
}

.wp-block-button__link .ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  /* use your cyan brand color at higher opacity for more visibility */
  background: rgba(11, 170, 201, 0.4);
  pointer-events: none;
  transform-origin: center center;
  will-change: width, height, opacity, transform;
  
  /* sit just above the button background but below the text */
  z-index: -1;
}


.banner-across .wp-block-button__link:hover { background: transparent;}
 
.banner-across-2 .wp-block-button__link:hover { background: transparent;}

 


 

.banner-across-2 .wp-block-button__link {
  background: #0a9abc;
  color: #000;
  font-size: 2em;
}

.banner-across-2 .wp-block-button__link:hover {
  background:#000;
  color: #0a9abc;
  font-size: 2em;
}

.page-title {
  display: none !important;
}

 


/******Header Menu DropDown*****/

ul#menu-connect {
    margin-right: 65px;
}

.header-dropdown-container {
    position: fixed;
    display: block;
    width: auto;
    height: auto;
    vertical-align: middle;
    margin-top: 0;
    right: 25px;
    top: 45px;
}

.header-dropdown-toggle {
  display: inline-block;
  padding: 0.5em 1em;
  background: transparent;
  color: #e0e0e0;
  text-decoration: none;
  cursor: pointer;
}

.header-dropdown-widget {
    display: none;
    position: absolute;
    top: 35px;
    right: -50px;
    min-width: 220px;
    z-index: 999;
}
.header-dropdown-widget.open {
  display: block;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.25em;
  color: #e0e0e0;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: none;
  color: #e60050;
}

.dropdown-widgets {
  margin-top: 1em;
}
 
ul#menu-connect {
  width: auto;
  border: none;
  background: #1a1a1a;
  min-height: 0;
  background: ;
  flex-direction: inherit;
  position: absolute;
  right: 0;
  margin-top: ;
  border-left:none;
}

.dropdown-menu li {
  border-left: none;
	padding-left:0;
}


a#header-dropdown-toggle {
         font-size: 1.25em;
        line-height: 1.6;
}
/********/




 



.widget_search {
  width: 300px;
  
}

.wp-block-search__inside-wrapper {
  display: block;
}

.wp-block-search__input {
 
  min-width: auto;
  max-width: 300px;
  margin-bottom: 10px;
}


 


.site-logo {
  width: 150px;
  height: auto;
  position: absolute;
  display: inline-grid;
}

.site-header {
     height: 135px;
    margin-bottom: 50px;
    position: fixed;
    width: 100%;
background: #1a1a1a;
    z-index: 1;
    transition: height 0.3s ease;
}

.site-header .site-logo img {
  height: 135px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.shrink {
  height: 100px;
}

.site-header.shrink .site-logo img {
  height: 100px;
    animation: wave 2s infinite ease-in-out;
  transition: filter 0.3s ease;
}

  .site-header.shrink .header-menu-container {
  
       animation: wave 2s infinite ease-in-out;
  transition: filter 0.3s ease;
  }
  
  
   .site-header.shrink .header-dropdown-container {
     animation: wave 2s infinite ease-in-out;
  transition: filter 0.3s ease;
    top: 25px;
}


/**********/

/*****Animation CSS*****/

/* 2) Combined base + lightSpeedInLeft */
.animate__lightSpeedInLeft {
  /* base animation properties */
  animation-name: lightSpeedInLeft;
  animation-duration: var(--animate-duration);
  animation-delay: var(--animate-delay);
  animation-iteration-count: var(--animate-repeat);
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/* 3) keyframes */
@keyframes lightSpeedInLeft {
  from {
    transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(20px) skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: translateX(-5px) skewX(5deg);
    opacity: 1;
  }
  to {
    transform: translateX(0) skewX(0);
    opacity: 1;
  }
}


/***********/


input[type=submit] {
    color: #e0e0e0;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.5em;
}

input {
  font-size: 1.5em;
  border-radius: 4rem;
  font-size: 18px;
  padding: 8px;
}

textarea {
  font-size: 1.5em;
  border-radius: 2rem;
  font-size: 18px;
  padding: 8px;
}

 




.funkybox {
 
  
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 500px;
    position: relative;
}

/****hexagon******/

/* Clear floats */
.clear:before,
.clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

/* Hexagon container spacing */
.hexagon-item:first-child {
  margin-left: 0;
}

/* Hexagon item base */
.hexagon-item {
  cursor: pointer;
  width: 300px;
  height: 259.81px;
  float: left;
  margin-left: 0;
  z-index: 0;
  position: relative;
  transform: rotate(30deg);
    color:#e0e0e0;
}

.hexagon-item:hover {
  z-index: 1;
}

.hexagon-item:hover .hex-item:last-child {
  opacity: 1;
  transform: scale(1.3);
}

.hexagon-item:hover .hex-item:first-child {
  opacity: 1;
  transform: scale(1.2);
}

.hexagon-item:hover .hex-item:first-child div:before,
.hexagon-item:hover .hex-item:first-child div:after {
  height: 5px;
    background-color: #0f93b3;
}

.hexagon-item:hover .hex-item div::before,
.hexagon-item:hover .hex-item div::after {
    background-color: #1e2530;
}

.hexagon-item:hover .hex-content svg {
  transform: scale(0.97);
}

/* Hexagon inner shapes */
.hex-item {
  position: absolute;
  top: 0;
  left: 75px;
  width: 150px;
  height: 259.81px;
}

.hex-item:first-child {
  z-index: 0;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hex-item:last-child {
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.hex-item div {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 150px;
  height: 259.81px;
  transform-origin: center center;
 
}

.hex-item div::before,
.hex-item div::after {
  background-color: var(--hex-line-bg);
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #ffffff;
}


.hex-item div:before {
  top: 0;
}

.hex-item div:after {
  bottom: 0;
}

.hex-item div:nth-child(1) {
  transform: rotate(0deg);
}

.hex-item div:nth-child(2) {
  transform: rotate(60deg);
}

.hex-item div:nth-child(3) {
  transform: rotate(120deg);
}

/* Hexagon content */
.hex-content {
  color: #e0e0e0;
  display: block;
  height: 300px;
  margin: 0 auto;
  position: relative;
  color: var(--hex-content-color);
  text-align: center;
  transform: rotate(-30deg);
  width: 234px;
}

.hex-content .hex-content-inner {
  left: 55%;
  top: 50%;
  margin: -3px 0 0 2px;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 240px;
   color: #e0e0e0;
}

.hex-content .icon {
  display: block;
  font-size: 42px;
  line-height: 38px;
  margin-bottom: 12px
  color:#e0e0e0;
}

.hex-content .title {
display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 500;
    color:#e0e0e0;
}

.hex-content svg {
  position: absolute;
  left: -12px;
  top: -20px;
  z-index: -1;
  transform: scale(0.87);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover effects on icon and title */
.hexagon-item:hover .icon i {
  color: #0f93b3;
  transition: 0.6s;
}

.hexagon-item:hover .title {
  animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    color: #0f93b3;
}

/* Keyframes */
@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

   .full-width-wrapper { overflow:hidden;}
   
   
   
   /****header menu********/

@media screen and (min-width: 1368px) {
    
.hex-grid {
  display: table;
  margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
  margin-top: 80px;
  margin-bottom: 80px;
}
      .site-header.shrink .header-menu-container {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    margin-top: 20px;
      }
    
      button#menu-toggle {
    display: none;
    
      }
    
    .header-menu > li:first-child {
  
  border-left:none ;
  
}
  .header-menu-container {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    margin-top: 40px;
  }

  
         .header-menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: auto;
        margin: 0;
        padding: 0;
        list-style: none;
        height: auto;
        background: none;
        border-radius: none;
        max-width: fit-content;
        min-height: 0;
    }
    
    .header-menu:hover {background:none;}
   

  .header-menu > li {
    position: relative;
margin-left: 20px;
font-size: 1.25em;
    line-height: 1.6;
  }

    .header-menu li a {
        text-decoration: none;
        padding: 0;
        display: block;
        color: #e0e0e0;
    }

  .header-menu li:hover > .sub-menu {
    display: flex;
  }

  .sub-menu.full-width-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    min-height: 300px;
    background: #e0e0e0;
    z-index: 999;
    padding: 2rem;
    box-sizing: border-box;
    gap: 2rem;
    justify-content: space-between;
  }

  .sub-menu.full-width-dropdown > li {
    flex: 1 1 33%;
  }

  .sub-menu.full-width-dropdown .column-1 { order: 1; }
  .sub-menu.full-width-dropdown .column-2 { order: 2; }
  .sub-menu.full-width-dropdown .column-3 { order: 3; }
}












@media screen and (min-width: 1368px) {
    
    .animation-box {
   display: table;
  margin: 0 auto;
  overflow: hidden;
  position: relative;

 
}
   
  
   


}



@media screen and (max-width:1367px)  {
    
    
    .search-main-center {

    margin-top:100px;
}
    
  
    .dropdown-menu a

 {
    display: block;
    padding: 1.25em;
    color: #e0e0e0;
    text-decoration: none;
}
    
    
    ul#menu-connect {
    margin-top: 40px;
    margin-right: 50px;
    border-radius: 0px;
}
    
  /* 2. Let your main/content area grow to push footer down */
 

    
    
     /*****Menu Animation*******/

 .main-mega-menu {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.main-mega-menu::before {
  content: '';
  position: absolute;
  inset: -2px;
background: linear-gradient(
  45deg,
  #007c91 0%,
  #0097a7 25%,
  #00bfa5 50%,
  #00c9a7 75%,
  #20e3b2 100%
);
  background-size: 400% 100%;
  background-position: 0 0;
  filter: blur(5px);
  border-radius: 10px;
  z-index: -1;

  /* Make it visible/animating by default */
  opacity: 1;
  animation: glowing 20s linear infinite;
  will-change: background-position, opacity;
  transition: opacity 0.3s ease-in-out;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

/* On hover: hide and pause the glow */
.main-mega-menu:hover::before {
  opacity: 0;
  animation-play-state: paused;
}

@keyframes glowing {
  0%   { background-position:   0   0; }
  50%  { background-position: 400%  0; }
  100% { background-position:   0   0; }
}


#menu-toggle {
  position: fixed;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12em;
  height: 2em;
  border-radius: 8em 8em 0 0;
  background: #333333;
  font-size: 2.2em;
  color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1004;
  cursor: pointer;
  font-weight: bold;
  border:none;
}
    
    
    #mega-menu {
 
  height: 95%;
 
}


    #mega-box-2 {
    min-width: 100%;
    display: block;
    position: absolute;
    margin-top: 475px;
    padding: 5%;
    padding-top: 5%;
    padding-top: 0;
    padding-bottom: 250px;
  }

#mega-box-1 {
  min-width: 100%;
  display: block;
  position: absolute;
    padding:5%;
 
}
    
    
    nav.header-menu-container {
    display: none;
}
    
    
  
   
.hex-grid

 {
    
        max-width: 600px;
        margin: 0 auto;
    }
    
    
    .hexagon-item {
    cursor: pointer;
    width: 300px;
    height: 259.81px;
    float: left;
    margin-left: 0;
    z-index: 0;
    position: relative;
    transform: rotate(30deg);
    margin-bottom: 75px;
}

    
}




/*******/



.wp-block-image.size-full.home-banner-right {
  width: 100%;
}

.home-banner-left {
  width: 65%;
  float: left;
padding-left:5%;
}

.home-banner-right {
    width: 35%;
    float: left;
    padding-right: 8%;
}








@media screen and (max-width:1368px) {
    

      
      
       #menu-main-menu {
  margin: initial;
  padding:0;
}

 

.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img {
  height: 100%auto;
  object-fit: contain;
  
}


    .home-banner-left {
    width: 100%;
    float: left;
    padding-left: 5%;
    padding-right:5%;
}
    
  .home-banner-right {
    width: 100%;
    text-align: center;
}  
    
 .wp-block-image.size-full.home-banner-right {
  width: 70%;
  margin:0 auto;
} 


}





@media screen and (max-width:1024px) {
    
    

  .banner-across {
  height: auto;
 

}

 

.banner-across-2{
  height: auto;
   

}

  .wp-block-media-text > .wp-block-media-text__content {
 
  padding: -1px 8%;
  
}

 

 

 

    .banner-across .wp-block-button__link {
  background: #000000;
  color: #ffffff;
  font-size: 1.5em;
}

 

  .banner-across-2 .wp-block-button__link {
  background: #000000;
  color: #ffffff;
  font-size: 1.5em;
}




  .wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img {
  height: auto;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

 

.site-logo {
 
  width: 22em;
  margin-right: 0;
 
}

.site-logo {
  margin-left: 0%;
 
}

}


body.menu-open {
  overflow: hidden;
}






/* Mobile layout adjustments */
@media only screen and (max-width: 767px) {
    

    
    #mega-menu {
 
  height: 100%;
  overflow-x: scroll;              /* allow horizontal scrolling */
  -webkit-overflow-scrolling: touch;
 
}

    #mega-box-2 {
 
 margin-top: 400px;
 
    }
    
    div#block-11 {
    float: left;
}
    
    
.funkybox

 {
    display: inline !important;

    margin-top: 15%;
}


  .hide-content-mobile {display:none;}


  #menu-toggle {

  width: 8em;
 
}
  
  .wp-block-media-text > .wp-block-media-text__content {
  
  padding: 0 0%;
 
}

.site-logo {
    margin-left: 0%;
    width: 17em;
  }

 

  .wp-block-button__link {

  font-size: 1em;
}

}

 @media screen and (max-width:668px)  {
    
  .hex-grid {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media screen and  (max-width:567px) {
 
.simple-slider {
 
  margin-top: 100px;
}

.header-dropdown-container {
  position: fixed;
  display: block;
  width: auto;
  height: auto;
  vertical-align: middle;
  margin-top: 0;
  right: 25px;
  top: 25px;
}

  .site-header .site-logo img {
 height:100px;
  width: auto;
   transition: all 0.4s ease;
  will-change: height, padding;
}

.site-header {
  height:100px;
  margin-bottom: 0px !important;
  position: fixed;
  width: 100%;
  background: #1a1a1a;
  z-index: 1;
  transition: all 0.4s ease;
  will-change: height, padding;
}
    
 div#togglefortheme {
 
    right: 40px;
 
}

  

   .site-logo {
    margin-left: 0%;
    width: 14em;
  }


  a#header-dropdown-toggle {
    font-size: 20px;
            right: 10px;
        position: fixed;
}


.ajax-page-link
 
 {
   
    font-size: 1em;
}



}




 

 


.responsive-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Desktop: image 1/3, text 2/3 */
  gap: 1.5rem;
  align-items: start;
}

/* Ensure images never overflow */
.responsive-two-col .col-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Mobile–tablet: stack everything at 1024px and below */
@media screen and (max-width: 1024px) {
  .responsive-two-col {
    grid-template-columns: 1fr; /* single column */
  }
  .responsive-two-col .col-text {
    margin-top: 1rem; /* add some breathing room below the image */
  }
}

@media screen and (max-width: 1024px) {
    
      /* Mobile heading sizes (root = 1em) */
  h1 { font-size: 3em; }   /* ~56px if root is 16px */
  h2 { font-size: 2.5em; }  /* ~44px */
  h3 { font-size: 2.25em; }  /* ~36px */
  h4 { font-size: 2em; }  /* ~28px */
  h5 { font-size: 1.75em; }  /* ~20px */
  h6 { font-size: 1em; }     /* ~16px */

  /* Body text back to a comfortable size */
  p  { font-size: 1em;       /* ~16px */ }
  
  
  span.accordion-title {
    font-size: 1.45em;
}
  
 
    
  .responsive-two-col {
    display: flex;
    flex-direction: column;
  }
  .col-text {
    order: 1;
  }
  .col-image {
    order: 2;
    margin-top: 1rem;
  }
}
