/* 
Theme Name:		 TekLoyd
Theme URI:		 http://childtheme-generator.com/
Description:	 TekLoyd is a child theme of GeneratePress, created by ChildTheme-Generator.com
Author:			 TekLoyd
Author URI:		 http://childtheme-generator.com/
Template:		 generatepress
Version:		 1.0.0
Text Domain:	 tekloyd
*/

/* From Uiverse.io by umerhassaan */ 
/* Yoinked from CodePen, but improved the animation
so that it is smooth among other more minor things */

.menu-btn {
    display: block;
    cursor: pointer;
    color: white;
    margin: 0 auto;
    position: relative;
    text-decoration: none;
    font-weight: 60;
    border-radius: 100px;
    overflow: hidden;
    padding: 3px;
    isolation: isolate;
}

.menu-btn > a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    line-height: initial !important;
}

.menu-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    background: linear-gradient(115deg, #f0bcff, #0567ee, #6d40bb);
    background-size: 25% 100%;
    animation: menu-btn-animation 1.25s linear infinite;
    animation-play-state: running;
    translate: -5% 0%;
    transition: translate 0.25s ease-out;
}

.menu-btn:hover::before {
  animation-play-state: running;
  transition-duration: 0.75s;
  translate: 0% 0%;
}

@keyframes menu-btn-animation {
  to {
    transform: translateX(-25%);
  }
}

.menu-btn span {
    position: relative;
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    background: #ffffff;
    border-radius: 100px;
    height: 100%;
	text-align: center;
}
.menu-btn:hover span {
    background: #1a6db6;
	color:#fff;	    
}

@media (max-width: 768px){
	.menu-btn{
		margin-left: 15px;
		margin-right: 15px;
		width: auto !important;
	}
	.site-logo {
		max-width: 50%;
	}
	.inside-header {
    padding: 5px 15px !important;
}
	.menu-toggle{
		font-size:25px
	}
	.has-inline-mobile-toggle #site-navigation.toggled {
    margin-top: 0em;
    margin-bottom: 1.5em;
		        background: transparent;
}
	.mobile-menu-control-wrapper .menu-toggle, .mobile-menu-control-wrapper .menu-toggle:hover, .mobile-menu-control-wrapper .menu-toggle:focus, .has-inline-mobile-toggle #site-navigation.toggled {
    background-color: transparent;
}
}






/* ===== TOP BAR DESIGN ===== */

.avadh-top-bar {
    background: #ffffff;
    border-bottom: 1px solid #055de8;
    font-size: 15px;
}

.avadh-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.avadh-left,
.avadh-right {
    display: flex;
    align-items: center;
}

.top-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #333;
}

.top-item svg {
    margin-right: 6px;
    color: #055de8;
}

/* TEXT STYLE */
.top-item a {
    text-decoration: none;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* ===== SOCIAL ICONS ===== */

.social-icons a {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #055de8;
    transition: all 0.3s ease;
}

/* ICON SIZE */
.social-icons svg {
    width: 20px;
    height: 20px;
}

/* HOVER EFFECT */
.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 0.9;
}

/* BRAND COLORS 🔥 */
.social-icons a:nth-child(1) {
    color: #055de8; /* Facebook */
}
.social-icons a:nth-child(2) {
    color: #055de8; /* Instagram */
}
.social-icons a:nth-child(3) {
    color: #055de8; /* LinkedIn */
}

/* GLOW EFFECT */
.social-icons a:nth-child(1):hover {
    box-shadow: 0 0 8px #055de8;
}
.social-icons a:nth-child(2):hover {
    box-shadow: 0 0 8px #055de8;
}
.social-icons a:nth-child(3):hover {
    box-shadow: 0 0 8px #055de8;
}

/* ===== MOBILE HIDE ===== */
@media (max-width: 768px) {
    .avadh-top-bar {
        display: none;
    }
}


.pagemainheading {
    position: relative;
    display: inline-block;
    padding-bottom: 10px; /* line ke liye space */
}

.pagemainheading::after {
    content: '';
    position: absolute;
    width: 20%; /* default width */
    height: 5px;
    background: #0779f5;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.pagemainheading:hover::after {
    width: 40%; /* hover pe expand */
}


.mb-0 {
    margin-bottom: 0 !important;
}

/* =============================================
   Gradient Border Card
   ============================================= */
.gradient-border-card {
  position: relative;
  background: #f8f8ff; /* inner card background */
  border-radius: 16px;
  padding: 40px 36px;
  z-index: 0;
}

.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px; /* border thickness */
  background: linear-gradient(
    135deg,
    #0477f4 0%,        /* purple - top-left visible */
    rgba(167, 139, 250, 0.15) 35%,  /* fade out */
    rgba(99, 179, 237, 0.15) 65%,   /* fade in */
    #0477f4 100%       /* blue - bottom-right visible */
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Make the button wrapper match the custom button size */
.wp-block-button.button .wp-block-button__link {
  background-color: transparent;
  color: #000000;
  width: 9.4em;
  height: 2.9em;
  border: #3654ff 0.15em solid;
  border-radius: 11px;
  text-align: right;
  transition: all 0.6s ease;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 17px;
  font-weight:400;
  position: relative;
}

.wp-block-button.button .wp-block-button__link:hover {
  background-color: #3654ff;
  cursor: pointer;
}

/* Arrow icon — added via ::before pseudo-element */
.wp-block-button.button .wp-block-button__link::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.6s ease;
}
.wp-block-button.button .wp-block-button__link:hover::before {
  transform: translateY(-50%) translateX(5px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}


.wp-block-button.button .wp-block-button__link:hover::before {
  transform: translateY(-50%) translateX(5px);
}

/* The text label */
.wp-block-button.button .wp-block-button__link .text,
.wp-block-button.button .wp-block-button__link {
  /* text sits on the right naturally due to text-align: right */
  padding-right: 1.5em;
}

.wp-block-buttons>.wp-block-button {
    display: inline-block;
    margin-left: -21px !important;
}

.custom-image-wrapper {
    position: relative;
    display: inline-block;
}

.custom-image-wrapper img {
    width: 100%;
    display: block;
}

/* CENTER CIRCLE */
.circle-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* SVG */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__bg {
    fill: #fff;
    stroke: #e6e6e6;
    stroke-width: 8;
}

.progress-ring__circle {
    fill: none;
    stroke: #007cba;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 502; /* circumference */
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 1.5s ease;
}

/* TEXT CENTER */
.counter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
}

/* NUMBER */
.counter-text span {
    font-size: 38px;
    display: inline-block;
    color: #007cba; /* primary color */
    font-weight: 800;
}

/* PLUS SIGN */
.counter-text span::after {
    content: "+";
    font-size: 38px;
    color: #ff6b00; /* accent color */
    margin-left: 2px;
    font-weight: 700;
}

/* YEARS TEXT */
.counter-text p {
    font-size: 12px;
	
    margin: 0;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/*--------------Meta Slider Start---------*/ /* Remove all extra top/bottom spacing around MetaSlider */ #metaslider-id-322, #metaslider_container_322, #metaslider_322 { margin-top: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; } /* Remove default LI slide margin */ #metaslider_322 .slides li { margin: 0 !important; } /* Remove image bottom gap */ #metaslider_322 img { display: block !important; } #metaslider_322 .flexslider, #metaslider_322 .flex-viewport, #metaslider_322 .slides li, #metaslider_322 .slides img { border-radius: 15px !important; overflow: hidden !important; } /* Smooth animation */ #metaslider_322 .slides img { transition: transform 0.4s ease !important; } /* Zoom only on hover */ #metaslider_322 .slides img:hover { transform: scale(1.06) !important; } /* FORCE MetaSlider to enlarge images on mobile & tablet */ @media (max-width: 1024px) { /* Slider wrapper should stretch */ #metaslider_322 .flex-viewport { height: auto !important; } /* Each slide should take full width */ #metaslider_322 .slides li { width: 100% !important; margin-right: 0 !important; } /* Images fully responsive */ #metaslider_322 .slides img { width: 100% !important; height: auto !important; max-height: 220px !important; /* You can increase this */ object-fit: contain !important; } } /* For small mobile */ @media (max-width: 768px) { #metaslider_322 .slides img { max-height: 180px !important; } } /*--------------Meta Slider End---------*/

/*--------------INFOBOX CORNER BORDER (CUSTOM CLASS)---------*/

/* Apply only when custom class is added */
.custom-infobox-border {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

/* Top-left border */
.custom-infobox-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-top: 3px solid #0779F5F0;
    border-left: 3px solid #0779F5F0;
    box-sizing: border-box;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

/* Bottom-right border */
.custom-infobox-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-bottom: 3px solid #0779F5F0;
    border-right: 3px solid #0779F5F0;
    box-sizing: border-box;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

/* Hover zoom */
.custom-infobox-border:hover {
    transform: scale(1.05);
}

/* Expand borders on hover */
.custom-infobox-border:hover::before,
.custom-infobox-border:hover::after {
    width: 100%;
    height: 100%;
}

/* Inner spacing */
.custom-infobox-border .uagb-ifb-content {
    padding: 20px;
}

/*--------------END---------*/

/* Apply only when custom class is added */
.custom-infobox-border-one {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

/* Top-left border */
.custom-infobox-border-one::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
	border-top: 3px solid #0779F5F0;
    border-right: 3px solid #0779F5F0;
    box-sizing: border-box;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

/* Bottom-right border */
.custom-infobox-border-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-bottom: 3px solid #0779F5F0;
    border-left: 3px solid #0779F5F0;
    box-sizing: border-box;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 5;
}

/* Hover zoom */
.custom-infobox-border-one:hover {
    transform: scale(1.05);
}

/* Expand borders on hover */
.custom-infobox-border-one:hover::before,
.custom-infobox-border-one:hover::after {
    width: 100%;
    height: 100%;
}

/* Inner spacing */
.custom-infobox-border-one .uagb-ifb-content {
    padding: 20px;
}

/*--------------END---------*/



/*--------------INFOBOX DESCRIPTION JUSTIFY---------*/

/* ONLY description text justify */
.uagb-infobox__content-wrap .uagb-ifb-desc {
    text-align: justify !important;
    line-height: 1.4;
word-spacing: 1;
}


.uagb-block-c818ea12.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin) {
    padding-bottom: 0px !important;
}
.wp-block-uagb-image__figure {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: auto;
    margin: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;

    /* animation */
    animation: floatUpDown 4s ease-in-out infinite;
}

/* keyframes */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* timeline line */
.custom-timeline .uagb-timeline__line {
    background: #e5e7eb;
    width: 3px;
}

/* card design */
.custom-timeline .uagb-timeline__events-inner--content {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* hover effect */
.custom-timeline .uagb-timeline__events-inner--content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* heading */
.custom-timeline .uagb-timeline__heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* description */
.custom-timeline .uagb-timeline-desc-content {
    font-size: 14px;
    color: #666;
}

/* icon circle */
.custom-timeline .uagb-timeline__marker {
    background: #0779f5;
    border-radius: 50%;
    padding: 10px;
}

.custom-timeline .uagb-timeline__events-inner--content {
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.custom-timeline .uagb-timeline__marker img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.custom-timeline .uagb-timeline__marker {
    display: flex;
    align-items: center;
    justify-content: center;
}


.custom-timeline .uagb-timeline__marker img {
    filter: brightness(0) invert(1);
}


.tekloyd-section {
    display: flex;
    gap: 40px;
}

.tekloyd-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.tekloyd-box:hover {
    transform: translateY(-6px);
}


/* Box (column) style */
.tek-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

/* Shadow + border style */
.tek-shadow-alt {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left: 6px solid #0693e3;
}

/* hover effect */
.tek-shadow-alt:hover {
    transform: translateY(-6px);
}

/* responsive */
@media (max-width: 480px) {
    .tek-box p {
        font-size: 14px;
    }
    .tek-box h3 {
        font-size: 18px;
    }
}






/* main container */
.tek-faq {
    max-width: 1140px;
    margin: 10px auto;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    border-radius: 6px;
}

/* each item */
.tek-faq .uagb-faq-item {
    border-bottom: 1px solid #ededed;
    padding: 5px 0;
}

/* remove last border */
.tek-faq .uagb-faq-item:last-child {
    border-bottom: none;
}

/* question */
.tek-faq .uagb-question {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* hover */
.tek-faq .uagb-question:hover {
    color: #e31b1b;
}

/* content */
.tek-faq .uagb-faq-content {
    margin-left: 40px;
    padding-left: 20px;
    border-left: 2px solid #e31b1b;
    color: #777;
    animation: fadeIn 0.4s ease;
}

/* animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* icon styling */
.tek-faq .uagb-icon svg {
    width: 16px;
    height: 16px;
    fill: #e31b1b;
}

/* spacing between icon and text */
.tek-faq .uagb-faq-questions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* active state */
.tek-faq .uagb-faq-item-active .uagb-question {
    color: #e31b1b;
}

.tek-faq .uagb-icon-active svg {
    fill: #e31b1b;
}

.uagb-block-1350c2dd .uagb-faq-child__outer-wrap {
    margin-bottom: 0px !important;
}



