/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1767706768
Updated: 2026-01-06 13:39:28

*/

.logo-marquee-wrap {
  overflow: hidden;
  width: 100%;
}
.position-relative-1{
	position: relative;
}
img.position-abs-1 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 10s linear infinite;
}
.rotate{
	animation: rotateCircle 10s linear infinite;
}
img.position-abs-2 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Keyframes */
@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 120px; /* space between logos */
  animation: marquee 18s linear infinite;
}

.logo-marquee-track img {
  width: 148px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-marquee-wrap:hover .logo-marquee-track {
  animation-play-state: paused;
}

.green-dot {
  position: relative;
  padding-left: 16px; /* space for dot */
}

.green-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #01A3A3;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.green-dot-border {
  position: relative;
  padding-left: 16px; /* space for dot */
}

.green-dot-border::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #01A3A3;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.white-dot {
  position: relative;
  padding-left: 16px; /* space for dot */
}

.white-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.gradient-right-border {
  position: relative;
}

.gradient-right-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px; /* border thickness */
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.8) 30%,
    rgba(255, 255, 255, 0.8) 70%,
    rgba(255, 255, 255, 0.02) 100%
  );
}
.turbo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 40px;
	height: 940px;
}

.turbo-left {
    width: 52%;
}

.turbo-right {
    width: 48%;
}
.turbo-left h1{
	padding-top:40px;
}
.turbo-right img {
    max-width: 100%;
}

.turbo-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #0db9b1;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}
.turbo-badge {
    position: relative;
    padding: 15px 20px 15px 40px;
    background-color: #ffff;
    border-radius: 50px;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
}
.turbo-badge::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/uploads/2026/01/Icon-3.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.white{
color:white;
}
a.turbo-btn {
    font-family: 'switzer';
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    background-color: white;
    border-radius: 0px;
}
.turbo-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px; /* space between text and icon */
}

.turbo-btn img {
  width: 16px; /* optional: control icon size */
  height: auto;
}
.color-green{
	color: #01A3A3 !important;
}
.turbo-left p{
	width:80%;
	font-size: 24px;
	font-weight: 500;
	font-family: 'switzer';
	padding: 20px 0px 40px;
}


/* SERVICES GRID */
.tt-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* SERVICE CARD */
.tt-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 12px 12px 30px 12px;
     box-shadow:
    0px 14px 64px -4px #18274B1F,
    0px 8px 22px -6px #18274B1F;
    transition: all 0.3s ease;
    position: relative;
}

.tt-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.tt-service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}
.turbo-slide-nav {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.turbo-slide-nav .nav-item {
    text-align: end !important;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    font-family: 'switzer';
    border: 1px solid #FFFFFF66;
    background-color: #ffffff40;
    width: 94px;
    height: 94px;
    padding: 10px;
}

.turbo-slide-nav .nav-item small {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    font-weight: 700;
    font-family: 'switzer';
    text-align: left !important;
    width: 60%;
}
.turbo-slide-nav .nav-item.active {
    color: #ffffff;
}

/* ICON */
.tt-service-icon {
    position: absolute;
    top: 190px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.tt-service-icon img {
    width: 24px;
    height: 24px;
}

/* TITLE */
.tt-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 10px;
    color: #002F4B;
	font-family: 'givonic';
}
.tt-service-text{
	min-height:140px;
}
/* TEXT */
.tt-service-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 18px;
	font-family: 'switzer';
}

/* LINK */
.tt-service-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #0057B7;
    gap: 12px;
    font-family: 'switzer';
}

.elementor-9 .elementor-element.elementor-element-9b8f360 .elementor-post__excerpt p {
    color: #333333;
    font-family: "switzer", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* RESPONSIVE */
@media (max-width: 991px) {
    .tt-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tt-services {
        grid-template-columns: 1fr;
    }

    .tt-service-icon {
        left: 20px;
    }
	
}

.position-relative figure.wp-block-image.size-full {
    position: absolute;
    top: 41%;
    left: 8%;
    background: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0px 8px 22px -6px #18274B1F;
    width: 64px;
    height: 64px;
}

.blog-cards a.elementor-post__read-more {
  display: inline-flex;
  align-items: end;
  gap: 10px;
}
.blog-cards .elementor-post__meta-data {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.blog-cards a.elementor-post__read-more::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/wp-content/uploads/2026/01/Arrow-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.testimonial-design .elementor-testimonial__cite {
  display: flex !important;
  gap: 6px;
	flex-direction: row !important;
}

.testimonial-design .elementor-testimonial__cite > * + * {
  position: relative;
  padding-left: 10px;
}

.testimonial-design .elementor-testimonial__cite > * + *::before {
  content: "|";
  position: absolute;
  left: 0;
  color: #A1A1AA; /* adjust color */
  font-weight: 400;
}
.testimonial-slider {
  max-width: 900px;
  margin: auto;
  padding: 40px 50px;
  border-radius: 12px;
  position: relative;
  font-family: Arial, sans-serif;
}

.testimonial {
  display: none;
}


.testimonial.active {
  display: block;
}

.stars {
    color: #FFC107;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'switzer';
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'switzer';
}

.author span {
    font-size: 16px;
    color: #012D48;
    font-family: 'switzer';
}

/* Dots */
.dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #cfe7ee;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #0a4d68;
}
.custom-contact-form{
    padding: 20px;
    box-shadow: 0px 14px 64px 0px #086AFE0F,  0px 8px 22px 0px #086AFE0F;
    border-radius: 21px;
}
.custom-contact-form input{
    padding: 28px 20px !important; 
}
.custom-contact-form label {
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'switzer' !important;
    background-color: #ffffff !important;
    z-index: 99999 !important;
    position: relative !important;
    margin-bottom: -9px !important;
    width: fit-content !important;
    left: 20px !important;
}

.custom-contact-form input,
.custom-contact-form textarea,
.custom-contact-form select {
    border-radius: 11px !important;
    border: 1px solid #E2E3E3 !important;
    outline: none !important;
}

.custom-contact-form button {
    background-color: #01A3A3 !important;
    position: relative !important;
    padding: 28px 50px !important;
    display: flex;
    align-items: center;
    border-radius: 5px !important;
}
.custom-contact-form button::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 58%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("/wp-content/uploads/2026/01/Arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
}




/* Remove Elementor default pointer line ONLY */
.elementor-widget-nav-menu 
.elementor-nav-menu--main 
.elementor-item:before {
    display: none !important;
}

/* Menu item layout */
.elementor-widget-nav-menu 
.elementor-nav-menu--main 
.elementor-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    line-height: 1 !important;
    transition: font-weight 0.25s ease !important;
}

/* Arrow before text */
.elementor-widget-nav-menu 
.elementor-nav-menu--main 
.elementor-item::before {
    content: "" !important;
    width: 12px !important;
    height: 12px !important;
    background-image: url("/wp-content/uploads/2026/01/Arrow-1-1.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: inline-block !important;
}


/* Font weight on hover only */
.elementor-widget-nav-menu 
.elementor-nav-menu--main 
.elementor-item:hover {
    font-weight: 600 !important;
}
.main-service .tt-services {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.main-service .tt-service-card {
    display: flex;
    gap: 30px;
}
.main-service .tt-service-image{
	width:50%;
}
.main-service .tt-service-content{
	width:50%;
}
.main-service .tt-service-card h3 {
    font-size: 64px;
    font-weight: 900;
    margin: 40px 0 10px;
    color: #002F4B;
    font-family: 'givonic';
}
.tt-categories-box {
    background: linear-gradient(135deg, #f5f9ff, #eef4ff);
    border-radius: 18px;
    padding: 30px 25px;
}

.tt-categories-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tt-categories-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #062a3d;
}

.tt-cat-icon {
    width: 32px;
    height: 32px;

}

.tt-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-categories-list li {
    padding: 14px 0;
    border-bottom: 1px solid #d7e3ff;
}

.tt-categories-list li:last-child {
    border-bottom: none;
}

.tt-categories-list a {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1b;
    text-transform: uppercase;
    text-decoration: none;
}

.tt-categories-list a:hover {
    color: #086afe;
}
.tt-related-wrapper {
    padding: 80px 0;
    text-align: center;
}

.tt-related-title {
    font-size: 36px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 10px;
}

.tt-related-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #6B7280;
}

.tt-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tt-related-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
    transition: transform .3s ease;
}

.tt-related-card:hover {
    transform: translateY(-6px);
}

.tt-related-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tt-related-content {
    padding: 25px;
}

.tt-related-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
}

.tt-related-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tt-related-heading a {
    text-decoration: none;
    color: #0A2540;
}

.tt-related-excerpt {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tt-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #086AFE;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .tt-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tt-related-grid {
        grid-template-columns: 1fr;
    }
}





@media (min-width: 320px) and (max-width: 767px){
	.elementor-element.elementor-element-d29350c.about-section.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    background-image: none;
}
	.turbo-slide-nav {
    display: none;
}
	.position-1{
		display: none !important;
	}

	.turbo-left h1 {
		padding-top: 0px !important;
    font-size: 34px !important;
}
	.turbo-left p {
    width: 100%;
    font-size: 18px;
    padding: 10px 0px;
}
	.turbo-left{
		width: 100% !important;
	}
	.turbo-badge{
		display: none;
	}
	.turbo-container {
    padding: 40px 10px;
    height: 480px;
}
	.gradient-right-border::after {
    display: none;
  }

	.tt-service-card h3 {
    font-size: 20px;
    margin: 30px 0 0px;
}
	.tt-service-text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
	.tt-service-text {
    min-height: auto;
}
}

@media (max-width: 767px) {

/* Fullscreen mobile dropdown */
.elementor-nav-menu--dropdown {
    position: fixed !important;
    inset: 0; /* replaces top/left/width/height */
    z-index: 9999;
    background-color: #ffffff;
    overflow-y: auto; /* allows scrolling */
}

/* Menu wrapper */
.elementor-nav-menu {
    width: 100%;
    margin: 0;
    padding: 20px 0;
}

/* Menu items full width */
.elementor-nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Menu links */
.elementor-nav-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover state */
.elementor-nav-menu li a:hover {
    background-color: #01A3A3;
    color: #ffffff;
}

/* Active menu item */
.elementor-item.elementor-item-active {
    background-color: #01A3A3;
    color: #ffffff;
}

/* Ensure active link text color */
.elementor-item.elementor-item-active a {
    color: #ffffff;
}
	a.elementor-item.elementor-item-active {
    background-color: #01A3A3 !important;
}

}

