* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box !important;
}

html {
    -webkit-text-size-adjust: 100% !important;
}

@supports (-webkit-touch-callout: none) or (selector(-webkit-scrollbar)) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    height: auto !important; 
    min-height: 100vh !important; 
    max-height: none !important; 
    overflow-y: auto !important; 
    background-color: transparent !important;
  }
}

  :root, html {
    background-color: #000000 !important;
}
  .main-container, main, #wrapper { 
    max-width: 100%;
    box-sizing: border-box;
  }


    .headerbar {
      position: relative; !important; 
      display: flex !important; 
      justify-content: space-between !important; 
      align-items: center !important; 
      padding: 0 1.5rem !important;     
      background-image: url('chrome.jpg') !important; 
      background-repeat: no-repeat !important;
      background-size: cover !important;
      height: 95px !important;
      box-sizing: border-box !important;
      width: 100% !important;
      z-index: 100 !important; 
    }

    .logo {
      display: flex !important;
      align-items: center !important;
      height: 100% !important;
    }

    .logo img {
      max-height: 139px !important; 
      width: auto !important;
      display: block !important;
    }

    .header-right-zone {
      display: flex !important;
      align-items: center !important;      
      justify-content: flex-end !important; 
      gap: 30px !important;                
      height: 100% !important;
      flex-grow: 1 !important;              
    }

    .navbar {
      display: flex !important;
      align-items: center !important;
      justify-content: flex-end !important;
      position: relative !important; 
    }

    .phone-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important; 
  gap: 10px !important;            
  font-family: sans-serif !important;
  margin-right: 400px !important;
}

.phone-icon {
  width: 25px !important;          
  height: 25px !important;
  color: #52a8e8 !important;       
}

.phone-text {
  color: #72b6eb !important;       
  font-size: 20px !important;      
  font-weight: 800 !important;     
  letter-spacing: 0.5px !important;
}


    .hamburger {
      display: flex !important; 
      flex-direction: column !important;
      justify-content: space-between !important;
      width: 30px !important;
      height: 21px !important;
      background: transparent !important;
      border: none !important;
      cursor: pointer !important;
      padding: 0 !important;
      z-index: 101 !important;
    }

    .hamburger .bar {
      height: 3px !important;
      width: 100% !important;
      background-color: #ffffff !important;
      border-radius: 10px !important;
      transition: all 0.3s ease-in-out !important;
    }

    .hamburger.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg) !important; }
    .hamburger.open .bar:nth-child(2) { opacity: 0 !important; }
    .hamburger.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg) !important; }

    .nav-menu {
      position: absolute !important; 
      top: 70px !important;       
      right: 0 !important;
      left: auto !important;
      width: 400px !important;
      max-width: calc(100vw - 2rem) !important; 
      background: rgba(20, 20, 20, 0.98) !important; 
      backdrop-filter: blur(10px) !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 0 !important;
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border-radius: 12px !important;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
      
      max-height: 0 !important;
      overflow: hidden !important;
      visibility: hidden !important;
      transition: max-height 0.3s ease-in-out, visibility 0.3s !important; 
      z-index: 99 !important;
    }

    .nav-menu a {
      width: 100% !important;
      position: relative;
      text-align: center !important;
      padding: 22px 0 !important;
      box-sizing: border-box !important;
      border-bottom: 1px solid rgba(255,255,255,0.08) !important;
      display: block !important;
      color: #ffffff !important;
      text-decoration: none !important;
      font-family: sans-serif !important;
      font-weight: bold !important;
      font-size: 16px !important;
    }
.nav-menu a:hover{
  color:#FF0000 !important;;
}
    .nav-menu.active {
      max-height: 350px !important; 
      visibility: visible !important;
    }

   
.nav-menu a::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;             
  width: 0 !important;              
  height: 3px !important;           
  background-color: #FF0000 !important; 
  transition: width 0.3s ease !important; 
}


.nav-menu a:hover::after {
  width: 100% !important;           
}



    @keyframes slowZoom {
        0% { transform: scale(1); }
        100% { transform: scale(1.13); }
    }
    .content-wrapper {
        position: relative !important; 
        display: flex !important;
        flex-direction: column !important;   
        align-items: center !important;      
        justify-content: flex-start !important;
        margin-top: 55px !important;         
        padding: 0 20px 40px 20px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        min-height: calc(100vh - 95px) !important; 
        background: transparent !important;        
        z-index: 2 !important; 
    }

    .separate-card {
        width: 100% !important;          
        max-width: 900px !important;     
        height: auto !important;         
        background: transparent !important;
        border-radius: 25px !important;
        overflow: hidden !important;
        margin: 0 auto !important;
    }

    .image-block {
        width: 100% !important;
        overflow: hidden !important;     
        border-radius: 25px !important;  
    }

    .image-block img {
        width: 100% !important;
        height: 420px !important;        
        object-fit: cover !important;
        display: block !important;
        filter: grayscale(10%) brightness(70%) !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .image-block:hover img {
        transform: scale(1.08) !important; 
    }

.hero-text-overlay {
  position: relative !important;
  z-index: 1 !important;
  width: 95% !important; 
  max-width: 1250px !important; 
  height: auto !important;
  min-height: 440px !important; 
  background-color: rgba(18, 18, 18, 0.68) !important; 
  border-radius: 12px !important;
  box-sizing: border-box !important;
  padding: 60px 50px !important; 
  text-align: left !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important; 
  align-items: flex-start !important;

@media (max-width: 768px) {
    .bg-container {
        top: 60px !important; 
        height: auto !important; 
        min-height: 85vh !important; 
        padding: 10px !important;
    }

    .hero-text-overlay {
        width: 92% !important; 
        min-height: unset !important; 
        padding: 30px 20px !important; 
        align-items: center !important; 
        text-align: center !important;  
        transform: translateY(0) !important; 
        margin: 20px auto !important;
    }
}  

.hero-slogan {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif !important;
  font-size: 80px !important; 
  font-weight: 900 !important; 
  line-height: 1.05 !important; 
  
  color: #ffffff !important;
  margin: 0 0 30px 0 !important; 
  text-transform: uppercase !important; 
  letter-spacing: 0.5px !important; 
  width: 100% !important;
  display: block !important;
}


.hero-description {
  font-family: 'Montserrat', 'Helvetica Neue', 'Arial', sans-serif !important;
  font-size: 26px !important; 
  font-weight: bold !important; 
  line-height: 1.60 !important; 
  color: #f5f5f5 !important; 
  margin: 0 !important;
  width: 100% !important; 
} 


@media (max-width: 768px) {
    .bg-container {
        top: 75px !important;
    }
    
    .hero-text-overlay {
        max-width: 350px !important; 
        padding: 30px 20px !important;
        opacity: 1 !important;
    transform: translateY(-5vh) !important;
        
       
        animation: localPopUpEffectMobile 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    }
    
    .hero-slogan {
        font-size: 28px !important; 
    }
    
    .hero-description {
        font-size: 13px !important;
    }


    .hero-slogan {
        font-size: 28px !important; 
    }
    
    .hero-description {
        font-size: 13px !important;
    }



    @media (max-width: 768px) {
        .headerbar { height: 75px !important; }
        .logo img { max-height: 45px !important; }
        .header-right-zone { gap: 15px !important; }
        .phone-text { font-size: 16px !important; }
        .phone-icon { width: 18px !important; height: 18px !important; }
        .bg-container { top: 75px !important; height: calc(100vh - 75px) !important; }
        
        .content-wrapper { 
            margin-top: 75px !important; 
            padding: 0 20px 40px 20px !important; 
        }
        
        .nav-menu { top: 55px !important; }
        .image-block img { height: 300px !important; }
    }

   

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 50px !important;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 50px 20px !important;
    }
    .about-title {
        font-size: 26px !important;
    }
    .about-paragraph {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}
.site-footer {
  background-color: #0b0b0b;
  border-top: 1px solid #222222;
  padding: 40px 20px;
  margin-top: 80px;
}

.footer-top-zone {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

.footer-header {
  font-family: sans-serif;
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    color: #e0e0e0 !important;
}
.footer-contact-link {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-logo-box {
    background-color: transparent; 
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 280px;
    height: auto;
}


.footer-logo-img {
  width: 100% !important;
  max-width: 180px !important;  
  height: 90px !important;      
  object-fit: contain !important; 
  display: block !important;
  margin: 0 auto !important;     
}


.footer-divider-line {
  border-top: 1px solid #222222;
  margin: 30px 0 20px 0;
}

.footer-bottom-zone {
  text-align: center;
  font-family: sans-serif;
  font-size: 13px;
  color: #666666;
}

.footer-nav-links a {
  color: #aaaaaa;
  text-decoration: none;
  margin: 0 8px;
}

.footer-nav-links a:hover {
  color: #ffffff;
}

.nav-divider {
  color: #333333;
}

.credit-link {
  color: #d92323;
  text-decoration: none;
}

.credit-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .phone-link { margin-right: 0 !important; }
}

@media (max-width: 768px) {
  .headerbar { height: 75px !important; }
  .logo img { max-height: 45px !important; }
  .header-right-zone { gap: 15px !important; }
  .phone-text { font-size: 16px !important; }
  .phone-icon { width: 18px !important; height: 18px !important; }
  .dashboard-grid { flex-direction: column; }
  .profile-panel, .form-panel { width: 100%; flex: none; }
  .footer-top-zone { flex-direction: column; text-align: center; }
  .footer-column { text-align: center; }
}t, .footer-column.align-right { text-align: center !important; }



@media (max-width: 900px) {
  .demo-split-media-container {
    flex-direction: column !important; 
    gap: 40px !important;
  }
  .demo-media-column {
    width: 100% !important;
    max-width: 100% !important;
    height: 320px !important; 
  }
  .demo-text-column {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .floating-container { bottom: 15px !important; right: 15px !important; }
  .chat-popup { right: 15px !important; bottom: 95px !important; width: 280px !important; }
}
.main-content-showcase-card {
  width: 100% !important;
  max-width: 1300px !important;
  margin: 115px auto 40px auto !important; 
  
  background: rgba(18, 18, 18, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  padding: 40px 0 !important;
  box-sizing: border-box !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65) !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  max-width: 220px !important; 
  overflow: hidden !important;
}

.logo img {
  height: auto !important;
  max-height: 150px !important; 
  width: 100% !important;     
  object-fit: contain !important; 
  display: block !important;
}

@media (max-width: 900px) {
  .demo-split-media-container {
    flex-direction: column !important; 
    gap: 40px !important;
  }
  .demo-media-column {
    width: 100% !important;
    max-width: 100% !important;
    height: 320px !important; 
  }
  .demo-text-column {
    width: 100% !important;
  }
}




@media (max-width: 768px) {
  .floating-container { bottom: 15px !important; right: 15px !important; }
  .chat-popup { right: 15px !important; bottom: 95px !important; width: 280px !important; }
}
.main-content-showcase-card {
  width: 100% !important;
  max-width: 1300px !important;
  
  
  margin: 115px auto 40px auto !important; 
  
  background: rgba(18, 18, 18, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  padding: 40px 0 !important;
  box-sizing: border-box !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65) !important;
}

@media (max-width: 768px) {
    .footer-top-zone {
        flex-direction: column !important; 
        text-align: center !important;
        gap: 30px !important;
    }
    
    .footer-column.align-left,
    .footer-column.align-right {
        text-align: center !important;
    }
    
    .footer-nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-divider {
        display: none !important; 
    }
}



@media (max-width: 768px) {
  .headerbar { 
    height: 75px !important; 
  }

 .careers-viewport {
    position: relative;
    width: 100%;
    height: 550px; 
    overflow: hidden; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    box-sizing: border-box;
}


.careers-bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('stillwater.gif'); 
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    
    filter: brightness(0.35) contrast(1.05);
    -webkit-filter: brightness(0.35) contrast(1.05);
}


.careers-content-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px; 
    background: rgba(18, 18, 18, 0.75); 
    padding: 60px 40px;
    border-radius: 12px; 
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.careers-main-title {
    width: 80%; 
    margin: 0 auto;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 58px; 
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff; 
}


@media (max-width: 768px) {
    .careers-viewport {
        height: 380px;
    }
    .careers-content-box {
        max-width: 85%;
        padding: 40px 20px;
    }
    .careers-main-title {
        font-size: 38px;
        width: 90%; 
    }
}


.header-phone-link, 
[class*="phone-box"], 
[class*="phone"] a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important; 
    height: auto !important;
    text-decoration: none !important;
    color: #72b6eb !important; 
}


.header-phone-link text, 
.header-phone-link span,
[class*="phone-box"] {
    display: inline !important;
    visibility: visible !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
}


svg.phone-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    display: inline-block !important;
    fill: #72b6eb !important; 
    margin: 0 !important;
}

 
html {
    scroll-behavior: smooth !important;
}


.tt-standalone-top-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999999 !important; 
    width: 46px !important;
    height: 46px !important;
    background: #1e293b !important; 
    border-radius: 50% !important;  
    
    
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.2s ease-in-out !important;
}


.tt-standalone-top-btn:hover {
    background: #334155 !important; 
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5) !important;
}


.tt-arrow-chevron {
    width: 10px !important;
    height: 10px !important;
    border-left: 3px solid #ffffff !important; 
    border-top: 3px solid #ffffff !important;
    transform: rotate(45deg) !important;
    -webkit-transform: rotate(45deg) !important;
    margin-top: 4px !important; 
}


@media (max-width: 480px) {
    .tt-standalone-top-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
    }
    .tt-arrow-chevron {
        width: 8px !important;
        height: 8px !important;
        margin-top: 3px !important;
    }
}
 
  
@media (max-width: 991px) {
    
    
    .hero-banner-viewport {
        height: 60vh !important;       
        min-height: 420px !important;  
    }

    
    .hero-content-wrapper {
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    
    .hero-content-wrapper > div[style*="background-color"] {
        padding: 30px 20px !important; 
        width: 100% !important;
        max-width: 100% !important;
    }

    
    .hero-content-wrapper h1 {
        font-size: 26px !important;    
        margin-bottom: 12px !important;
    }

    
    .hero-content-wrapper p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    
    
    .footer-top-zone {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; 
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important; 
        width: 100% !important;
    }

    
    .footer-top-zone .footer-column {
        flex: 1 !important;
        min-width: 0 !important; 
        width: 33.33% !important; 
    }

    
    .footer-top-zone .footer-header {
        font-size: 11px !important; 
        margin-bottom: 6px !important;
    }

    .footer-top-zone p, 
    .footer-top-zone a {
        font-size: 9px !important; 
        line-height: 1.3 !important;
    }
}

@media (max-width: 768px) {
    
    
    .headerbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important; 
        overflow: hidden !important;
    }

    
    .headerbar .logo {
        flex: 0 0 auto !important;
    }

    .headerbar .logo img {
        max-width: 85px !important; 
        height: auto !important;
        display: block !important;
    }

    
    .headerbar .header-right-zone {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 1 !important;
        gap: 12px !important; 
    }

    
    .headerbar .phone-link {
        display: flex !important;
        align-items: center !important;
        white-space: nowrap !important; 
        text-decoration: none !important;
        gap: 4px !important;
    }

    .headerbar .phone-icon {
        width: 16px !important;  
        height: 16px !important;
    }

    .headerbar .phone-text {
        font-size: 11px !important; 
    }

    
    .headerbar .navbar {
        display: flex !important;
        align-items: center !important;
    }

    .headerbar .hamburger {
        margin: 0 !important;
        padding: 5px !important; 
    }
}
@media (max-width: 768px) {
    
    .headerbar {
        overflow: visible !important; 
    }

    
    .headerbar .hamburger {
        position: relative !important;
        z-index: 9999 !important;      
        cursor: pointer !important;
        pointer-events: auto !important; 
    }
    
    
    .headerbar .nav-menu {
        max-width: 100vw !important;
    }
}

      

