/* Global */
body {
  margin: 0;
  /*padding-top: 100px !important;*/
}

.tvistech a {
	font-weight: 700;
}

#masthead.sticky {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999999;
	-webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
	transition: top 0.5s;
	width: 100%;
}
/* This class will be added/removed by JavaScript */
.header-hidden {
  transform: translateY(-100%); /* Slides the header up out of view */
}

.site-info {
  display: none;
}

.bg-blur .elementor-button {
  backdrop-filter: blur(25.799999237060547px);
}
.bg-blur2 {
  backdrop-filter: blur(10.300000190734863px);
}

/* Header */

.header-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 50px;
}

.header-menu li {
  list-style: none;
  position: relative;
}

.header-menu li a {
  font-family: DM Sans;
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 100%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.current-menu-item > a , .current-page-ancestor > a{
  color: #ffa600 !important;
}

.header-menu li a:hover {
  color: #ffa600 !important;
}

.menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}

.menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("/wp-content/uploads/2026/04/arrow-down-01-round-w.svg")
    no-repeat center;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease; /* Slightly faster, smoother transition */
}

.header-menu li.menu-item-has-children > a:hover::after {
  background: url("/wp-content/uploads/2026/04/arrow-down-01-round.svg")
    no-repeat center;
}

/* 3. Current Active Page Arrow (Colored) */
.menu li.menu-item-has-children.current-menu-item > a::after,
.menu li.menu-item-has-children.current_page_item > a::after ,
.menu li.menu-item-has-children.current_page_ancestor > a::after {
  background: url("/wp-content/uploads/2026/04/arrow-down-01-round.svg")
    no-repeat center;
}





/* Initial state */
.header-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;

  display: flex;
  flex-wrap: wrap;
  min-width: 280px;
  margin-top: 15px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) ;

  gap: 0;

  z-index: 999;
}

/* Hover trigger */
.header-menu li:hover > .sub-menu {
  visibility: visible;
  animation: submenuFade 0.35s ease forwards;
}

.contact-btn .elementor-button {
  width: 100%;
}
.contact-btn .elementor-button .elementor-button-content-wrapper {
  justify-content: space-between;
}
/* Keyframes */
@keyframes submenuFade {
  0% {
    opacity: 0;
    transform: translateY(15px) ;
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) ; /* slight bounce */
  }
  100% {
    opacity: 1;
    transform: translateY(0) ;
  }
}


.header-menu .sub-menu li {
  padding: 10px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.49);
    border: 1px solid rgba(217, 217, 217, 0.49);
    border-bottom: none;
    width: 100%;
      background-color: #0b1f3a;
}


/* First item */
.header-menu .sub-menu li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Last item */
.header-menu .sub-menu li:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
   border-bottom: 1px solid rgba(217, 217, 217, 0.49);
}





.header-menu .sub-menu li a {
  line-height: 1.4;
}

.header-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

/* =========================================
   Mobile Menu Toggle (Hamburger Icon)
   ========================================= */
.mobile-menu-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1000; /* Stays above the menu */
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.mobile-menu-toggle.is-active span {
  background-color: #0b1f3a !important;
}

/* Hamburger to 'X' Animation */
.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Home */

.hero4box .elementor-icon-box-title {
  margin-top: 15px;
}

.elementor-icon i,
.elementor-icon svg {
  width: auto;
}

.hero-imageBox .elementor-image-box-title {
  margin-top: 20px;
}
.hero-imageBox .elementor-image-box-content {
  padding: 10px;
  padding-top: 0;
}

.imageWidth-100 .elementor-image-box-img img,
.hero-imageBox img {
  width: 100% !important;
}

/* About */

.bigBg-hover:hover,
.hero4box:hover,
.hero-imageBox:hover,
.elementor-widget-button a:hover {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.noHover-btn a:hover , .bg-blur a:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* Services */

.service-btn svg {
  width: 24px;
}

.service-btn .elementor-button:hover svg {
  fill: none !important;
}
.service4box .elementor-icon-box-title {
  margin-top: 0;
}


/* contact */

.contact-form {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-form li {
  width: 100%;
  list-style: none;
  position: relative;
}
.contact-form li.w5 {
  width: 48%;
}
.contact-form  p {
  margin: 0;
}

.wpcf7-not-valid-tip {
	position: absolute;
	bottom: -40px;
	font-size: clamp(12px, 1.2vw, 14px);
	left: 0;
}


.contact-form lable {
	font-family: DM Sans;
	font-weight: 400;
	font-size:clamp(16px, 1.2vw, 18px);
	line-height: 150%;
	letter-spacing: 0%;
	/* text-align: center; */
  display: block;
  color: #6B6257;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
 color: #999999;
  border: 1px solid #DDDDDD;
  background-color: #ffffff;
  border-radius: 9px;
  font-family: DM Sans;
  outline: none;
  font-size:clamp(14px, 1.2vw, 16px);
}

.contact-form textarea {
	resize: none;
	height: 180px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999999a1;
   font-family: DM Sans;
  font-style: italic;
  font-size:clamp(14px, 1.2vw, 16px);
}


.contact-form select {
  width: 100%;
  padding: 16px 18px;
  color: #999999a1;
  border: 1px solid #DDDDDD;
  background-color: #ffffff;
  border-radius: 9px;
  font-family: DM Sans;
  outline: none;
  font-size:clamp(14px, 1.2vw, 16px);
  appearance: none; 
  position: relative;
  background-image: url("/wp-content/uploads/2026/04/arrow-down-01-round-select.svg");
  background-repeat: no-repeat;
  background-position: right 18px center;

}

.contact-form li.sbt-btn {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.contact-form li.sbt-btn input {
	width: fit-content;
	padding: 16px 75px 16px 44px;
	border: 1px solid #0B1F3A;
	background-color: #0B1F3A;
	background-image: url("/wp-content/uploads/2026/04/arrow-right-02-sharp.svg");
	background-repeat: no-repeat;
	background-position: right 45px center;
  box-shadow: none;
  transform: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-form li.sbt-btn input:hover {
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: all 0.3s ease;
  background-color: #fff;
	background-image: url("/wp-content/uploads/2026/04/arrow-right-02-round.svg");
	background-repeat: no-repeat;
	background-position: right 45px center;
  color: #0B1F3A;
}
.contact-form li.sbt-btn .wpcf7-spinner {
  display: none;
}

.contact-form select option {
  color: #999999a1;
  font-family: DM Sans;
  font-style: italic;
  font-size:clamp(14px, 1.2vw, 16px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b1f3a;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder, .contact-form select:focus {
  color: #0b1f3a;
  border-color: #0b1f3a;
}

.checkBox .wpcf7-list-item input {
position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkBox .wpcf7-list-item label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-size:clamp(16px, 1.2vw, 18px);
  line-height: 150%;
  letter-spacing: 0%;
  color: #6B6257;
}
.checkBox label .wpcf7-list-item-label{
color: #999999a1;
  font-family: DM Sans;
  font-size:clamp(14px, 1.2vw, 16px);
}

.checkBox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 45%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  background-color: transparent;
  border-radius: 4px;
}

.checkBox .wpcf7-list-item label .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 44%;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 11px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999999;
  opacity: 0;
  visibility: hidden;
}

.checkBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;

}
.contact-form li.checkBox .wpcf7-list-item.first.last {
	margin: 0;
}

.textArea .wpcf7-not-valid-tip {
	position: absolute;
	bottom: -23px;
	font-size: clamp(12px, 1.2vw, 14px);
	left: 20px;
}
.checkBox .wpcf7-not-valid-tip {
	position: absolute;
	bottom: -25px;
	font-size: clamp(12px, 1.2vw, 14px);
	left: 30px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 1em 0em 0em;
	padding: 0px 10px !important;
	font-size: clamp(12px, 1.2vw, 14px);
	border-width: 1px;
}



/* responsive */

@media only screen and (max-width: 1700px) {
  .home-blue .padd {
    padding: 20px 50px;
  }
}

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




  .service-btn svg {
    width: 18px;
  }
  .home-blue .padd {
    padding: 20px;
  }
}

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

  .header-menu ul {
    gap: 25px;
  }
}

@media only screen and (max-width: 991px) {
  body.no-scroll {
    overflow: hidden !important;
  }

  .header-menu {
    width: 100%;
  }

  .header-menu ul {
    gap: 20px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header > .e-con-inner {
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .menus {
    position: fixed !important;
    top: 0;
    right: -100% !important;
    width: 320px;
    max-width: 100vw;
    height: 100vh;
    background-color: #ffffff !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 100px 30px 40px !important;
    transition: right 0.4s ease-in-out !important;
    z-index: 999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  }

  .menus.is-open {
    right: 0 !important;
  }

  .menus .header-menu .menu {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    width: 100%;
  }

  .menus a,
  .menus {
    color: #0b1f3a !important;
    font-size: 18px !important;
    text-decoration: none;
  }

  .menus .elementor-widget-button {
    width: 100%;
  }

  .menus .elementor-widget-button .elementor-button {
    width: 100%;
    text-align: center;
    justify-content: center;
    border: 2px solid #0b1f3a;
    background-color: #0b1f3a !important;
    color: #ffffff !important;
  }
.header-menu .sub-menu {
 
     opacity: 1; 
    visibility: visible;
    transform: unset;
    gap: 0;
    z-index: 999;
}

.header-menu li:hover > .sub-menu {
    visibility: unset;
    animation: unset;
}

  .header-menu .sub-menu li {
    padding: 10px;

    border: none !important;
    border-bottom: none;
    width: 100%;
    background-color: transparent !important;
    border-radius: none;
}

  /* =========================================
     MOBILE SUB-MENU TOGGLE CSS 
     ========================================= */

  /* 1. Make the touch target for the arrow bigger for thumbs */
  .menu li.menu-item-has-children > a {
    position: relative;
    padding-right: 40px !important;
    display: block;
  }

  .menu li.menu-item-has-children > a:after {
    display: none;
  }

  .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/wp-content/uploads/2026/04/arrow-down-01-round.svg")
      no-repeat center;
  }

  /* rotate when open */
  .menu li.submenu-open > .submenu-toggle {
    transform: rotate(180deg);
  }

  /* 2. Hide sub-menu by default on mobile */
  .header-menu .sub-menu {
    display: none; /* Hidden until arrow is tapped */
    position: static !important;
    background-color: transparent !important;
    border: none;
    transition: none; !important;
  }

  /* 3. Style the sub-menu links specifically for mobile */
  .menus .header-menu .sub-menu li a {
    font-size: 15px !important;
    color: rgba(11, 31, 58, 0.8) !important;
    display: block;
  }

  .header-menu .sub-menu::before {
    display: none !important;
  }

  /* 4. Classes activated by JS when tapped */
  .menu li.menu-item-has-children.submenu-open > .sub-menu {
    display: flex !important; /* Shows menu */
  }

  .menu li.menu-item-has-children.submenu-open > a:after {
    transform: translateY(-50%) rotate(180deg); /* Flips arrow up */
  }

  .contact-form {
	gap: 20px;
}
.contact-form li.w5 {
	width: 47%;
}
}

@media only screen and (max-width: 767px) {
  .contact-form input, .contact-form textarea {
	padding: 13px 14px;
}
  .img-width-100 .elementor-widget-image {
    width: 100%;
  }

  .hero-imageBox img {
    width: 100%;
  }
  .service4box .elementor-icon-box-title {
    margin-top: 0;
  }
  .contact-form li.w5 {
	width: 100%;
}
.checkBox .wpcf7-list-item label .wpcf7-list-item-label::after {
	left: 14px;
	top: 23%;
	width: 4px;
	height: 8px;
}
.checkBox .wpcf7-list-item label .wpcf7-list-item-label::before {
	left: 9px;
	top: 26%;
	width: 15px;
	height: 15px;

}
	br {display:none;}
  .checkBox .wpcf7-list-item label {
	display: flex;
}
.wpcf7-not-valid-tip {
	bottom: -36px;
}
.textArea .wpcf7-not-valid-tip {
	bottom: -23px;
	left: 0;
}
.checkBox .wpcf7-not-valid-tip {
	bottom: -45px;
}

.error404 #masthead a {
	display: block;
	height: 45px;
}

.error404 #masthead img {
	width: 137px;
	height: 45px;
}
}
