/*
Theme Name: Solbi
Theme URI: https://www.heliossolutions.co/
Author: Helios Solution
Author URI: https://www.heliossolutions.co/
Description: Solbi
Version: 1.0.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: solbi

Solbi WordPress Theme 2011-2024
Solbi is distributed under the terms of the GNU GPL
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}



.page-template-page-gitex .main_wrapper{
  background: #666666;
   background-image: url(assets/images/gitex-bg.svg);
    background-size: cover;
  background-position:center center; 
  
}
.page-template-page-gitex #mainNav{
    display: none;
}
.gitex-sec-title{
    font-size: 35px;
    color: #ffffff;
    line-height: 50px;
    margin: 50px 0;
}
.g-sche-button {
    color: #ffffff;
    padding: 18px 30px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 0;
    border-radius: 15px;
    background: transparent;
    transition: color 0.3s ease-in-out;
    overflow: hidden;
    letter-spacing: 1px;
  }
  
  .g-sche-button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 15px;
    background: linear-gradient(90deg, #FF5251, #6583FF);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s;
  }
  
  /* Hover Effect: Full background fill with animation */
  .g-sche-button:hover {
    color: #ffffff;
    background: linear-gradient(90deg, #FF5251, #6583FF);
    background-size: 200% auto;
    background-position: left center;
    animation: fillGradient 1s ease-in-out forwards;
  }
  
  @keyframes fillGradient {
    from {
      background-position: right center;
    }
    to {
      background-position: left center;
    }
  }
  
  .g-sche-button:hover::before {
    opacity: 0; /* Hide border layer when background is filled */
  }
  

  .g-main-banner-inner {
    position: relative;
    z-index: 0;
    border-radius: 40px;
    padding: 10px; /* Adjust as needed */
    background: transparent;
    color: #ffffff; /* Optional text color */
    overflow: hidden; /* Ensures gradient border doesn't overflow */
  }
  
  .g-main-banner-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* Border thickness */
    border-radius: 40px;
    background: linear-gradient(90deg, #FF5251, #6583FF);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
  }
  .g-main-banner {
    position: relative;
    padding-top: 70px;
  }
  .g-why-solbi {
    position: absolute;
    top: 0;
    right: 80px;
}
.g-main-banner-inner-img{
    border-radius: 40px;
}
.what-offer.g-find-us-title h1 {
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 45px;
}
.g-find-us-title h1 .gradient-text {
    background: linear-gradient(340deg, #FF5251 0%, #6583FF 81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.g-info-box, .g-gradient-box {
    border-radius: 20px;
    color: white;
    padding: 28px 25px;
    height: 100%;
  }

  .g-info-box {
    background-color: #252525;
  }

  .g-gradient-box {
    background: linear-gradient(90deg, #FF5251 0%, #6583FF 81%);
  }

  .g-section {
    background: radial-gradient(ellipse at top left, #1b1b1b, #000000);
    padding: 60px 15px;
  }
  .g-find-inner {
    max-width: 840px;
    margin:  0 auto;
  }

  .g-info-box1 .g-title{
    background: linear-gradient(90deg, #6583FF 0%, #FF5251 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .g-info-box1 .g-content, .g-info-box2 .g-title, .g-info-box4 .g-gradient-title{
    font-size: 37px;
    font-weight: 600;
    color: #ffffff;
    line-height: 45px;
  }
  .g-info-box2 .g-content, .g-info-box4 .g-gradient-subtext, .g-info-box3 .g-title{
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
  }
  .g-info-box3 .g-content{
    font-size: 31px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 5px;
  }
  .what-offer.g-find-us-title {
    margin:
  180px 0;
  }

  
  .team_section.g-team-section h1{
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin: 50px 20px;
  }

  .g-profile-card {
    position: relative;
    background-color: #252525;
    border-radius: 35px;
    overflow: hidden;
    transition: background 0.4s ease-in-out;
    padding-top: 40px;
    display: block;
    width: 100%;
  }

  .g-profile-card:hover {
    background: linear-gradient(135deg, #FF5251 0%, #6583FF 81%);
  }

  .g-profile-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
  }

  .g-linkedin-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius:  50%;
    display: none;
    z-index: 2;
  }

  .g-profile-card:hover .g-linkedin-icon {
    display: block;
  }
  .g-members-div{
    max-width: 970px;
    margin: 0 auto;
  }
  .g-member-details {
    margin:
  30px 0;
  }
  .g-mem-name {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
  }
  .g-mem-des {
    font-size: 20px;
    color: #fff;
  }
  .g-member-details a, .g-member-details a:hover{
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
  }

  .g-contact-main-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
  }
  .con-gradiant-title{
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF5251 0%, #6583FF 81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .g-con-sub-heading{
    color: #ffffff;
    font-size: 20px;
  }

  .g-floating-group {
    position: relative;
    margin-bottom: 15px;
  }
  

  .g-floating-group .wpcf7-form-control-wrap{
    display: block;
  }
  .g-floating-group .wpcf7-form-control-wrap input {
    width: 100%;
    padding:14px 12px;
    font-size: 16px;
    background-color: #252525;
    border:2px solid #252525;
    border-radius:8px;
    color: #fff;
    outline: none;
  }
  
  .g-floating-group .wpcf7-form-control-wrap label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #fff;
    padding:0 4px;
    transition:0.2s ease all;
    pointer-events: none;
  }
  
  .g-floating-group .wpcf7-form-control-wrap input:focus + label,
  .g-floating-group .wpcf7-form-control-wrap input:not(:placeholder-shown):valid + label {
    top: -10px;
  left: 0;
  font-size: 14px;
  color: #fff;
  }
  .g-floating-group .wpcf7-form-control-wrap input::placeholder {
    color: #ffffff;
    opacity: 1; /* make sure it's visible */
  }
  
  .g-floating-group .wpcf7-form-control-wrap textarea {
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    background-color: #252525;
    border: 2px solid #252525;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    resize: vertical;
  }
  
  .g-floating-group .wpcf7-form-control-wrap textarea::placeholder {
    color: #ffffff;
    opacity: 1;
  }

  .g-floating-group .wpcf7-form-control-wrap textarea:focus + label,
  .g-floating-group .wpcf7-form-control-wrap textarea:not(:placeholder-shown):valid + label {
    top: -10px;
    left: 0px;
    font-size: 14px;
    color: #ffffff;
  }
  .g-floating-group label {
  color: #fff;
}
  /* Gradient border + glowing box shadow on focus */
  .g-floating-group .wpcf7-form-control-wrap textarea:focus {
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(#252525, #252525), linear-gradient(90deg, #FF5251, #6583FF);
    box-shadow: 0 0 8px rgba(255, 82, 81, 0.6), 0 0 12px rgba(101, 131, 255, 0.4);
  }
  .g-floating-group .wpcf7-form-control-wrap textarea + label {
    top: 25px;
  }

  .g-con-submit-button {
    color: #ffffff;
    padding: 18px 30px;
    font-weight: 400;
    text-transform: uppercase;
    background: transparent;
    border: none;
    position: relative;
    z-index: 0;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    width: 100%;
    letter-spacing: 1px;
      margin-top:20px;
  }
  .g-floating-group .wpcf7-form-control-wrap input:focus {
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(#252525, #252525), linear-gradient(90deg, #FF5251, #6583FF);
    box-shadow: 0 0 8px rgba(255, 82, 81, 0.6), 0 0 12px rgba(101, 131, 255, 0.4);
  }
  

  .g-con-submit-button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(90deg, #FF5251, #6583FF);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    transition: background 0.4s ease-in-out;
  }
  
  .g-con-submit-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FF5251, #6583FF);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 15px;
  }
  
  .g-con-submit-button:hover::after {
    opacity: 1;
  }
  
  .g-con-submit-button:hover {
    color: #ffffff;
  }
  .page-template-page-gitex .wpcf7-response-output {
    color: #fff;
  }
 
  .gitex-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap:20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
  
  .gitex-main-title span {
    font-size: 55px;
  font-weight: bold;
  color: #fff;
  }
  
  .gitex-europe {
    position: relative;
    display: inline-block;
  }
  
  .gitex-europe .bottom-line {
    position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  
  }
  

/* Floating effect when the input has a value */
.g-floating-group input:not(:placeholder-shown) + label,
.g-floating-group input.filled + label {
  top: -10px;
  font-size: 14px;
  color: #fff;
  left: 0;
}

/* Optionally, give a class to 'filled' state */
.g-floating-group input.filled {
  padding-top: 20px;
}

.g-section-fade {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.5s ease-out;
}

.g-section-fade.show {
  opacity: 1;
  transform: translateY(0);
}


.lottie-container {
  width: 100%;
  overflow: auto;
  position: fixed;
}

lottie-player {
  width: 100%;
  height: auto;
  display: block;
}



.g-footer{
  padding: 20px 0;
  border-top: 1px solid #666666;
  margin: 100px 0 0;
}
.g-footer p{
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}
.gf-col-1 a, .gf-col-1 a:hover{
color: #FF5251;
text-decoration: none;
}
.gf-col-2{
  text-align: center;
}
.gf-col-3 a, .gf-col-3 a:hover{
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}
.gf-col-3 span{
  color: #ffffff;
  margin: 0 15px;
}
.g-floating-group .selected-dial-code {
  color: #fff;
}
.g-floating-group .intl-tel-input .selected-flag .iti-arrow {
  border-top: 4px solid #fff;
}
.g-floating-group .wpcf7-spinner:before{
    background-color: #666666;
}
.g-floating-group .wpcf7-spinner{
    background-color: #ffffff;
}
  @media (max-width: 1024px) {
    .gitex-main-title span {
      font-size: 40px;
    }
    .gitex-main-title .solbilogo {
      max-width: 130px;
    }
    .g-member-details {
      margin: 20px 0;
    }
    .g-mem-name {
      color: #ffffff;
      font-size: 18px;
      font-weight: 600;
    }
    .g-mem-des {
      font-size: 15px;
      color: #fff;
    }
    .g-member-details a, .g-member-details a:hover {
      color: #ffffff;
      font-size: 12px;
      text-decoration:none;
    }
    .what-offer.g-find-us-title {
      margin:100px 0 0;
    }
    .gitex-sec-title{
      font-size: 30px;
    }
    .what-offer.g-find-us-title h1, .team_section.g-team-section h1, .g-contact-main-title, .con-gradiant-title{
      font-size: 35px;
    }
    .g-info-box1 .g-content, .g-info-box2 .g-title, .g-info-box4 .g-gradient-title{
      font-size: 32px;
    }
    .g-info-box3 .g-content{
      font-size: 28px;
    }
    .g-info-box2 .g-content, .g-info-box4 .g-gradient-subtext, .g-info-box3 .g-title, .g-info-box1 .g-title{
      font-size: 18px;
    }
    .g-con-sub-heading{
      font-size: 16px;
    }
  }
  
  /* Breakpoint: Mobile Landscape (below 768px) */
  @media (max-width: 768px) {
    .gitex-europe .bottom-line {
      position: absolute;
      bottom: -20px;
      left: 15px;
      width: 90%;
    }
      .g-footer p {
      margin: 0 0 10px 0;
      text-align: center;
    }
  }
  
  /* Breakpoint: Mobile Portrait (below 480px) */
  @media (max-width: 480px) {
    .what-offer.g-find-us-title h1, .team_section.g-team-section h1, .g-contact-main-title, .con-gradiant-title{
      font-size: 25px;
    }
    .g-info-box1 .g-content, .g-info-box2 .g-title, .g-info-box4 .g-gradient-title, .g-info-box3 .g-content{
      font-size: 25px;
    }
    .gitex-sec-title {
      font-size: 25px;
      line-height: 35px;
    }
    .g-mem-name{
      font-size: 21px;
    }
    .g-mem-des{
      font-size: 18px;
    }
    .g-member-details a, .g-member-details a:hover{
      font-size: 15px;
    }
    .g-why-solbi{
      right: 25px;
    }
     .g-members-div {
      margin:0 60px;
    }
    #team_section.g-team-section, #contact-form-demo.g-contact-form{
      padding-top: 50px;
    }
      .gitex-main-title {
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
      .page-template-page-gitex .serch_bar_section {
  padding-top: 0;
}
       .lottie-container{
		  display:none;
	  }
	  .page-template-page-gitex .main_wrapper{
  background: #000000;
   background-image: url(assets/images/gitex-bg.svg);
    background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
}
  }