/* fonts */
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/Roboto-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/Roboto-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/Roboto-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/Roboto-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/Roboto-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



/* ==============================
   Variables
   ============================== */
:root {
  /* Colors */
  --color-primary: #005EBC; /* The vibrant blue from the top section of the 'Z' */
  --color-primary-hover: #004A94; /* A deeper shade of the logo blue for interaction */
  --color-primary-hover: rgba(0, 74, 148, 0.8); /* Slightly transparent for hover effects */
  --color-accent: #000000; /* The solid black from the base of the logo */
  --color-bg: #FFFFFF; /* Clean white background to make the blue pop */
  --color-surface: #F5F9FF; /* A very faint blue-tinted white for cards */
  --color-surface-cr: #EDF2F7; /* A soft grey-blue for containers */
  --color-surface-alt: #E1E8F0; /* Light steel blue for subtle section variation */
  --color-text: #080C10; /* Near-black for high readability */
  --color-text-muted: #4A5568; /* A neutral grey for secondary information */  
  --color-border: rgba(0, 94, 188, 0.15); /* Subtle border using a transparent primary blue */

  

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #123499, #0a2472);
  --gradient-accent: linear-gradient(135deg, #5eaf73, #CADEDE);

  /* Typography */
  --font-family-base: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --header-font-size: 3.5rem;
  --paragraph-font-size: 1.8rem;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --section-padding: 100px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);

  /* Radius */
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-24: 24px;

  /* Transitions */
  --transition-1: 0.25s ease-in-out;
  --transition-2: 0.5s ease-in-out;
  --transition-3: 1s ease-in-out;
}

/* ==============================
   Global Reset & Base
   ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}
body, body * {
  font-family: 'Roboto', sans-serif !important;
}
[class^="tp-"],
[class*=" tp-"] {
  font-family: var(--font-family-base) !important;
}
/* === FINAL FIX: Offcanvas social icons (Phosphor) === */
.tp-offcanvas-social ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: normal !important; /* override template */
}

.tp-offcanvas-social i {
  font-family: 'Phosphor' !important;
  font-size: 18px;
  display: block;
  line-height: 1;
  color: var(--color-bg);
  transition: color 0.3s ease, transform 0.3s ease;
}

.tp-offcanvas-social a:hover i {
  color: var(--color-primary);
  transform: translateY(-1px);
}
/* Shared Styles (Keep this) */
.tp-contact-us-form-input input, 
.tp-contact-us-form-input textarea,
.tp-contact-us-form-input select {
  color: var(--tp-common-black);
  width: 100%;
  border: 1px solid #e5e5e5;
  height: 50px; 
  padding: 0 20px; 
  background: #f8f9fa;
  border-radius: 4px; 
}

/* Focus State (Keep this) */
.tp-contact-us-form-input input:focus, 
.tp-contact-us-form-input textarea:focus,
.tp-contact-us-form-input select:focus {
  background-color: transparent;
  outline: none; 
  border-color: #000;
}

/* Label Styling (Keep this) */
.tp-contact-us-form-input label {
  font-size: 14px;
  font-weight: 500;
  color: #030303;
  margin-bottom: 10px;
  display: block; 
}

/* NEW: Specific Textarea Override */
.tp-contact-us-form-input textarea {
  height: 180px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: none;
}
/* Secondary / smaller team cards */
.tp-team-item--sm {
  transform: scale(0.82);
}

.tp-team-secondary {
  margin-top: 40px;
}

/* Reduce content spacing slightly */
.tp-team-item--sm .tp-team-content {
  margin: 25px;
}

.tp-team-item--sm .tp-team-title {
  font-size: 22px;
}

.tp-team-item--sm span {
  font-size: 14px;
}
/* ===============================
   PLAY BUTTON RESPONSIVE OVERRIDE
   =============================== */

.hr-hero-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Large desktops */
@media (max-width: 1599px) {
  .hr-hero-play-btn {
    width: 110px !important;
    height: 110px !important;
  }
}

@media (max-width: 1399px) {
  .hr-hero-play-btn {
    width: 100px !important;
    height: 100px !important;
  }
}

@media (max-width: 1199px) {
  .hr-hero-play-btn {
    width: 90px !important;
    height: 90px !important;
  }
}

@media (max-width: 991px) {
  .hr-hero-play-btn {
    width: 80px !important;
    height: 80px !important;
  }
}

@media (max-width: 767px) {
  .hr-hero-play-btn {
    width: 70px !important;
    height: 70px !important;
  }
}

@media (max-width: 575px) {
  .hr-hero-play-btn {
    width: 60px !important;
    height: 60px !important;
  }
}

/* SVG scaling */
.hr-hero-play-btn svg {
  width: 22%;
  height: auto;
}
/* ===============================
   Footer Circle Button Responsive
   =============================== */

@media (max-width: 1599px) {
  .ds-footer-btn .tp-btn-circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1399px) {
  .ds-footer-btn .tp-btn-circle {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1199px) {
  .ds-footer-btn .tp-btn-circle {
    width: 125px;
    height: 125px;
  }
}

@media (max-width: 991px) {
  .ds-footer-btn .tp-btn-circle {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .ds-footer-btn .tp-btn-circle {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 575px) {
  .ds-footer-btn .tp-btn-circle {
    width: 80px;
    height: 80px;
  }
}
/* Sidebar nav link base state */
.hr-side-header-menu > nav > ul > li a {
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

/* Hover state */
.hr-side-header-menu > nav > ul > li a:hover {
  opacity: 1;
}

/* Active page link */
.hr-side-header-menu > nav > ul > li a.active {
  opacity: 1;
  pointer-events: none; /* optional: prevents re-clicking same page */
  position: relative;
}

.hr-side-header-menu > nav > ul > li a.active::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--color-primary);
  border-radius: 2px;
}
.hero-word-fade {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-word-fade.hide {
  opacity: 0;
  transform: translateY(10px);
}
.momo1{
  border-radius: 12px;
}
.zirostack-whatsapp {
    position: fixed;
    bottom: 105px;
    right: 42px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zirostack-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.zirostack-whatsapp svg {
    display: block;
}
/* Scroll reveal behavior */
.zirostack-whatsapp {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}

.zirostack-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* LinkedIn-style Loader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out !important;
    visibility: visible;
}

#preloader .preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: auto !important;
    height: auto !important;
    position: static !important;
    margin: 0 !important;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}

#preloader .preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: fadeInScale 0.6s ease-out;
    display: block;
}

#preloader .preloader-spinner {
    position: relative;
    width: 300px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

#preloader .preloader-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    animation: linkedinSlide 1.5s ease-in-out infinite;
}

/* Override old span styles */
#preloader span {
    display: none !important;
}

@keyframes linkedinSlide {
    0% {
        left: -40%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -40%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}