/*
Theme Name: Welcome Trading
Theme URI: https://welcometech.qa/
Author: Web Developer
Description: Custom WordPress theme for Welcome Trading Co. W.L.L.
Version: 1.0
Text Domain: welcome-trading
*/

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
 
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 

:root {
  --blue: #0061F7; /*#5C9E17;*/
  --blue-dk: #062223; /*#164333*/
  --blue-lt: #ADEE68;
  --blue-glow: rgba(0, 97, 247, 0.35);
  --yellow: #5C9E17; /*#F5A623;*/
  --yellow-dk: #D4891A;
  --navy: #062223;
  --navy2: #062223;
	--navygreen:#5C9E17;
  --lime: #5C9E17; /*#8DC63F;*/
  --teal: #1A6B52;
  --white: #FFFFFF;
  --off: #F7F9FC;
  --border: #E2E8F0;
  --text: #1A202C;
  --muted: #64748B;
  --card-sh: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-sh-h: 0 16px 48px rgba(0, 97, 247, 0.14);
  --f: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--f);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
      padding-top: 100px;
} 

@media (max-width: 768px) {
  body {
    padding-top: 64px; /* Space for mobile nav only */
  }
}

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

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SECTION HEADERS ── */
.section-eye {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.section-h {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-h strong {
  font-weight: 600;
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 560px;
}

/* ══ MAIN HEADER (Fixed) ══ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s var(--ease);
}
 .main-header.scrolled nav {
    background: rgba(255, 255, 255, 0.97);
}
/* ══ TOPBAR ══ */
.topbar {
  background:linear-gradient(288deg, #062223, #5c9e17, #062223);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 300;
  position: relative;
  z-index: 1001;
}

.tb-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:rgb(255 255 255);
}

.tb-r {
  display: flex;
  gap: 24px;
}

.tb-r a {
  color: rgb(255 255 255);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.tb-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  stroke: var(--blue);
  stroke-width: 2.2;
  background: var(--white);
  border-radius: 40%;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: all 0.3s var(--ease);
}
.tb-r a:hover {
  color: var(--blue);
}

/* ══ NAV ══ */
nav {
 background: rgba(255, 255, 255, 0.97);
   
  position: relative;
  z-index: 1000;
  
  transition: all 0.3s;
}

.main-header.scrolled nav {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nl-w {
    font-size: 30px;
    font-weight: 500;
    color: var(--blue); /*#216ab3;*/
    line-height: 0.7;
    letter-spacing: -0.5px;
    font-family: "Kanit", sans-serif;
}

.nl-t {
    font-size: 12px;
    font-weight: 600;
    color: var(--lime);
    letter-spacing:1.9px;
    text-transform: uppercase;
    font-family: "Kanit", sans-serif;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links > li {
  position: relative;
}
.scrolled .nav-links > li > a{
	 color: #062223;	
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 64px;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links > li > a:hover {
  color: var(--blue);
}

/* DROPDOWN MENU */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  z-index: 1000;
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  transition: all 0.25s;
}

.dropdown li a:hover {
  background: var(--off);
  color: var(--blue);
}

/* SUB DROPDOWN MENU */
.dropdown li {
  position: relative;
}

.sub-dropdown {
  position: absolute;
  top: -12px;
  left: 100%;
  background: white;
  min-width: 260px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  list-style: none;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.3s var(--ease);
  z-index: 1001;
}

.dropdown li:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown li a:hover {
  padding-left: 30px;
}

.has-submenu {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chevron-right {
  width: 10px;
  height: 10px;
  opacity: 0.6;
}

/* BADGE NEW */
.badge-new {
  position: absolute;
  top: 5px;
  right: -2px;
  background: #FF7200;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge-new::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #FF7200;
}

.chevron {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  transition: transform 0.3s;
  opacity: 0.6;
}

.nav-links li:hover .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* UNIFIED BUTTONS */
.btn-orange {
  background: var(--blue);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-orange:hover {
  background: #E66700;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 114, 0, 0.3);
}

@media (max-width: 768px) {
  .btn-orange {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
  }
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn-blue:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--blue-glow);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn-yellow:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn-green:hover {
  background: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-ghost-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s var(--ease);
}

.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .btn-blue, .btn-yellow, .btn-green, .btn-ghost-w {
    width: 100%;
    padding: 14px 22px !important;
    font-size: 15px !important;
    justify-content: center;
    border-radius: 10px;
  }
}

/* ══ MOBILE MENU ══ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 500;
  padding: 10px;
  background: #f8fbff;
  border: 1px solid rgba(0, 97, 247, 0.1);
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.menu-toggle:hover {
  background: white;
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 97, 247, 0.12);
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  transition: 0.4s var(--ease);
  border-radius: 10px;
}

.menu-toggle span:nth-child(2) {
  width: 18px;
  align-self: flex-end;
}

.menu-toggle:hover span {
  background: var(--blue);
}

.menu-toggle:hover span:nth-child(2) {
  width: 24px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--navy);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.85, 0, 0.15, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mobile-nav.active {
  right: 0;
}

.m-nav-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 30, 61, 0.5);
  backdrop-filter: blur(10px);
}

.m-nav-header .nav-logo img {
  height: 36px;
  width: auto;
}

.m-nav-header .nl-w { color: white; }

.m-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.m-nav-close svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.m-nav-close:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(90deg);
}

.m-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: none;
}

.m-nav-body::-webkit-scrollbar { display: none; }

.m-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}

.m-link:hover, .m-link.active {
  background: rgba(0, 97, 247, 0.1);
  color: white;
  border-color: rgba(0, 97, 247, 0.2);
  padding-left: 22px;
}

.m-link-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}

.m-link:hover .m-link-ico {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

/* MOBILE DROPDOWN */
.m-dropdown {
  width: 100%;
}

.m-drop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.3s;
}

.m-drop-head:hover {
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.m-drop-head .chevron {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform 0.4s var(--ease);
}

.m-drop-head.active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--blue);
}

.m-drop-head.active .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.m-drop-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 20px;
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.m-drop-head.active + .m-drop-body {
  max-height: 1500px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.m-drop-body a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  border-radius: 8px;
}

.m-drop-body a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.m-nav-footer {
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-nav-cta {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #FF7200 0%, #FF9033 100%);
  color: white !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(255, 114, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: mobile-btn-pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

.m-nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: m-shine-sweep 3s infinite;
}

@keyframes m-shine-sweep {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

@keyframes mobile-btn-pulse {
  0% { transform: scale(1); box-shadow: 0 12px 24px rgba(255, 114, 0, 0.3); }
  50% { transform: scale(1.02); box-shadow: 0 12px 32px rgba(255, 114, 0, 0.5), 0 0 0 8px rgba(255, 114, 0, 0.1); }
  100% { transform: scale(1); box-shadow: 0 12px 24px rgba(255, 114, 0, 0.3); }
}

.m-nav-cta:active {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(255, 114, 0, 0.4);
}

.m-nav-soc {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.m-soc-b {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}

.m-soc-b:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.m-info {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--blue);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--blue);
}


/* ══ FOOTER ══ */
footer {
  background: var(--navy);
}

.ft-top {
  padding: 60px 0 40px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.ft-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 320px;
  margin-top: 14px;
  margin-bottom: 22px;
  text-align: justify;
}

.ft-soc {
  display: flex;
  gap: 8px;
}

.fs-b {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.2s;
}

.fs-b:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.ft-col-t {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:var(--lime);
  margin-bottom: 16px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-links li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.ft-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.ft-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
}

.ftb-l {
  display: flex;
  gap: 20px;
}

.ftb-l a {
  color: rgba(255, 255, 255, 0.22);
}

.ftb-l a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ══ COMMON UTILITIES ══ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  width: 320px;
  height: 320px;
  position: fixed;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 97, 247, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

/* ══ CTA CARDS ══ */
.cta-sec {
  padding: 100px 0;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--navy);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cta-card-in {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-subtitle {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.cta-h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-bg-glow-1 {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--blue-glow);
  filter: blur(80px);
  opacity: 0.4;
}

.cta-bg-glow-2 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(245, 166, 35, 0.15);
  filter: blur(80px);
  opacity: 0.4;
}

.cta-icon-bg {
  position: absolute;
  top: 10%;
  right: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .cta-sec {
    padding: 60px 0;
  }

  .cta-card {
    padding: 50px 24px;
    border-radius: 20px;
  }

  .cta-h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .cta-p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-btns {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btns .btn-orange,
  .cta-btns .btn-ghost-w {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 14px !important;
    border-radius: 100px !important;
  }

  .cta-icon-bg {
    display: none;
  }
}

/* ══ RESPONSIVE OVERRIDES (Common) ══ */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 20px;
    text-align: left;
  }

  .ft-brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 10px;
  }

  .ft-brand .nav-logo {
    justify-content: flex-start;
  }

  .ft-brand p {
    margin-left: 0;
    margin-right: auto;
  }

  .ft-soc {
    justify-content: flex-start;
  }

  .ft-contact {
    grid-column: span 2;
    text-align: left;
  }

  .ft-contact ul {
    align-items: flex-start;
  }

  .ft-bot {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ══ SCROLL TO TOP BUTTON ══ */
@keyframes shine-sweep {
  0% {
    transform: translateX(-120%) skewX(-20deg);
  }

  100% {
    transform: translateX(220%) skewX(-20deg);
  }
}

@keyframes btn-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 97, 247, 0.4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(245, 166, 35, 0.55), 0 0 0 6px rgba(0, 97, 247, 0.08);
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  box-shadow: 0 4px 20px rgba(0, 97, 247, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
  animation: btn-pulse 2.8s ease-in-out infinite;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 65%);
  transform: translateX(-120%) skewX(-20deg);
  animation: shine-sweep 2.8s ease-in-out infinite;
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: white;
  position: relative;
  z-index: 1;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.45);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

/* ══ DEMO MODAL ══ */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  padding: 20px;
}

.demo-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 61, 0.75);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: #FFFFFF;
  width: 100%;
  max-width: 580px;
  border-radius: 28px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
  padding: 36px;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  max-height: 90vh;
}



.demo-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fecaca;
  transform: rotate(90deg);
}

.modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #0B1E3D;
  margin-bottom: 8px;
  line-height: 1.2;
}

.modal-title span {
  color: #0061F7;
}

.modal-subtitle {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.demo-form .form-group {
  margin-bottom: 18px;
}

.demo-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.demo-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0B1E3D;
  margin-bottom: 6px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: #1A202C;
  transition: all 0.3s;
}

.demo-form input::placeholder {
  color: #94a3b8;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #0061F7;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 97, 247, 0.1);
}

.demo-form textarea {
  height: 80px;
  resize: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
  transition: transform 0.3s;
}

.demo-form select {
  appearance: none;
  padding-right: 48px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0061F7;
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}

.submit-btn:hover {
  background: #0047B3;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 97, 247, 0.3);
}

.send-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .demo-modal {
    padding: 12px;
  }

  .modal-content {
    padding: 30px 20px 24px;
    border-radius: 20px;
    margin: 0;
    max-height: 94vh;
  }
  
  .modal-title {
    font-size: 22px;
    padding-right: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .modal-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: #f1f5f9;
  }
  
  .demo-form .form-group {
    margin-bottom: 16px;
  }

  .demo-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .demo-form .form-row .form-group {
    margin-bottom: 16px;
  }

  .demo-form label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .demo-form input, 
  .demo-form select, 
  .demo-form textarea {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
  }

  .demo-form textarea {
    height: 90px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 15px;
    border-radius: 12px;
    margin-top: 5px;
  }
}

/******************************Banner code*********************/
/* ══════════════════════════════════════════
   AUTHORITY FIRST HERO (Dark Theme)
══════════════════════════════════════════ */
.af-hero {
  background-color: #050b14; /* Deep midnight base */
  min-height: 95vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
   
	/*background-image:url(https://vintechnosoft.com/welcomenew3/wp-content/themes/wss%20theme/img/banner.webp);*/
}

/* Dynamic Background Layers */
.af-bg-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.af-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.4);
  transition: opacity 1s ease-in-out, transform 6s linear;
}
.af-bg-layer.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark Frosted Overlay */
.af-bg-overlay
 {
    position: absolute;
    inset: 0;
	 /*    background: url(https://pixelaxis.net/accupay/wp-content/uploads/2025/09/Hero-5-1.webp) center top / cover no-repeat, linear-gradient(288deg, rgb(6, 34, 35), rgb(18, 25, 6), rgb(6, 34, 35)) rgba(10, 60, 45, 0.88);*/
  /*  background-image: linear-gradient(288deg, #062223, #12360d00, #062223), url(https://vintechnosoft.com/welcomeqatar/wp-content/uploads/2026/04/bg-hero-landing.webp); /*url('https://vintechnosoft.com/welcomeqatar/wp-content/uploads/2026/04/bg-hero-landing.webp');*/
	 background-image:url('https://vintechnosoft.com/welcomeqatar/wp-content/uploads/2026/04/bg-hero-landing.webp');
    z-index: 2;
    background-color:#0a3c2de0;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

/* Subtle Top Gradient Line */
 

.af-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

/* Pill Navigation Tabs (Dark Mode) */
.af-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.af-tabs {
  display: inline-flex;
  background:rgb(255 255 255 / 75%);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 50px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.af-tab {
  background: transparent;
  border: none;
  color: #080808; /* Light gray text */
  font-family: var(--f);
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.af-tab:hover {
  color: var(--yellow);
}
.af-tab.active {
  background:var(--lime); /* Brand Blue */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 86, 210, 0.4);
}

/* Slide Content */
.af-slider-wrapper {
  position: relative;
  min-height: 350px; 
}
.af-slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.6s ease;
}
.af-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

/* Typography (Dark Mode) */
.af-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  color: #ffffff; /* White text */
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.text-accent {
  color: #78c245; /* Brand Green for high contrast */
}
.af-desc {
  font-size: 20px;
  color: #D1FAE5;
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Action Buttons (Dark Mode) */
.af-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.af-btn-primary {
  background: var(--blue); /* Brand Blue */
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow:0 10px 25px rgba(92,158,23,0.4);
}
.af-btn-primary:hover {
  background: #78c245; /* Brand Green */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(120, 194, 69, 0.3);
}
.af-btn-secondary {
  color: #fefefe;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.af-btn-secondary:hover {
  color: #78c245;
  gap: 8px;
}

/* Trust Section */
.af-trust-section {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.af-trust-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.af-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
/* Inverted logos for dark mode so they show up clearly */
.af-trust-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(100%) brightness(0) invert(1) opacity(0.5); 
  transition: all 0.3s;
}
.af-trust-logos img:hover {
  filter: grayscale(100%) brightness(0) invert(1) opacity(1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.af-tabs-wrapper {
    display: none;
}
  .af-hero { padding-top: 80px; min-height: auto; }
  .af-tabs { display: none; }
  .af-actions { flex-direction: column; width: 100%; }
  .af-btn-primary { width: 100%; }
  .af-trust-logos { gap: 20px; }
  .af-trust-logos img { height: 30px; }
}
/* ══════════════════════════════════════════
   CATCHY TALLY ORBIT PROMO
══════════════════════════════════════════ */
.tp-catchy-promo {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 86, 210, 0.05);
}

.tp-catchy-bg {
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 200%;
  background: radial-gradient(circle at top right, rgba(120, 194, 69, 0.05) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(0, 97, 247, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.tp-catchy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Gives the logo slightly more room */
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT CONTENT ── */
.tp-catchy-content {
  display: flex;
  flex-direction: column;
}

.tp-catchy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.pulse-icon {
  font-size: 16px;
  animation: firePulse 1.5s infinite;
}
.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tp-catchy-title {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

/* Animated Flowing Gradient Text */
.tp-animated-gradient {
  background: linear-gradient(-45deg, var(--blue), var(--lime), #00d2ff, var(--blue));
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientFlow 4s ease infinite;
  display: inline-block;
}

.tp-catchy-desc {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Actions */
.tp-catchy-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tp-btn-solid {
  background: var(--blue);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 97, 247, 0.25);
  transition: all 0.3s var(--ease);
}
.tp-btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 97, 247, 0.35);
  background: #0045a8;
}

.tp-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}
.play-circle {
  width: 48px; height: 48px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.play-circle svg { width: 20px; height: 20px; margin-left: 2px; }
.tp-btn-play:hover { color: var(--blue); }
.tp-btn-play:hover .play-circle {
  border-color: var(--blue); color: var(--blue); transform: scale(1.05);
}


/* ══════════════════════════════════════════
   PRECISION TECH GRID PROMO (Square Aesthetic)
══════════════════════════════════════════ */
.tp-grid-promo {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 86, 210, 0.08);
}

/* Square Blueprint Background */
.tp-square-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 86, 210, 0.03) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 86, 210, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}
.tp-square-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #ffffff 80%);
}

.tp-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT CONTENT ── */
.tp-grid-content {
  display: flex;
  flex-direction: column;
}

.tp-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 86, 210, 0.05);
  border-left: 3px solid var(--blue);
  padding: 8px 16px;
  margin-bottom: 24px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.tech-dot {
  width: 8px; height: 8px;
  background-color: var(--blue);
  animation: blink 2s infinite;
}

.tp-grid-title {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.tp-text-gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tp-grid-desc {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
}

.tp-grid-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tp-btn-primary {
  background: var(--blue);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 4px; /* Sharper corners */
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 86, 210, 0.2);
  transition: all 0.3s var(--ease);
}
.tp-btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 30, 61, 0.25);
}

.tp-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid #e2e8f0;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.tp-btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}


/* ── RIGHT VISUAL (TECH STAGE) ── */
.tp-grid-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.tp-tech-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 86, 210, 0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(248, 250, 252, 0.8) 100%);
  backdrop-filter: blur(10px);
}

/* Corner Crosshairs (+) */
.tp-crosshair {
  position: absolute;
  width: 16px; height: 16px;
}
.tp-crosshair::before, .tp-crosshair::after {
  content: ''; position: absolute; background: var(--blue);
}
.tp-crosshair::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.tp-crosshair::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }

.ch-tl { top: -8px; left: -8px; }
.ch-tr { top: -8px; right: -8px; }
.ch-bl { bottom: -8px; left: -8px; }
.ch-br { bottom: -8px; right: -8px; }

/* Backdrop Glow */
.tp-stage-glow {
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(120, 194, 69, 0.15) 0%, rgba(0, 86, 210, 0.05) 100%);
  filter: blur(30px);
  z-index: 1;
}

/* Vertical Scanning Line */
.tp-scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 10px rgba(120, 194, 69, 0.5);
  z-index: 2;
  animation: scanDown 4s ease-in-out infinite;
  opacity: 0.5;
}

/* The Massive Logo */
.tp-stage-logo {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 200px; /* Highly visible */
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 86, 210, 0.15));
  animation: logoHover 6s ease-in-out infinite;
}

/* Sharp Tech Tags (Replacing pills) */
.tp-tech-tag {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  padding: 10px 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
  white-space: nowrap;
}
.tag-top { top: 15%; right: -10%; animation: tagFloat 5s ease-in-out infinite; }
.tag-bottom { bottom: 15%; left: -10%; animation: tagFloat 6s ease-in-out infinite 1s; border-left-color: var(--blue); }


/* ── ANIMATIONS ── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes logoHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scanDown {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}


/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .tp-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .tp-tech-badge { align-self: center; }
  .tp-grid-desc { margin: 0 auto 40px; }
  .tp-grid-actions { justify-content: center; }
  .tp-tech-stage { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .tp-grid-promo { padding: 80px 0; }
  .tp-grid-title { font-size: 36px; }
  .tp-grid-actions { flex-direction: column; width: 100%; gap: 16px; }
  .tp-btn-primary, .tp-btn-outline { width: 100%; justify-content: center; }
  .tp-stage-logo { max-width: 280px; }
  .tp-tech-tag { font-size: 11px; padding: 8px 14px; }
  .tag-top { right: -5%; }
  .tag-bottom { left: -5%; }
}
/* Mandatory CSS for Lenis Smooth Scroll */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/* ══════════════════════════════════════════
   CATCHY TALLY CLOUD HOVER-DECK
══════════════════════════════════════════ */
.tc-catchy-cloud {
  padding: 120px 0;
  background-color: #f8fafc; /* Very light cool-gray */
  position: relative;
  overflow: hidden;
}

/* Glowing Background Mesh */
.tc-mesh-bg {
  position: absolute;
  top: -20%; left: -10%;
  width: 120%; height: 140%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 86, 210, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(120, 194, 69, 0.05) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.tc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT: CONTENT & PILLS ── */
.tc-catchy-content {
  display: flex;
  flex-direction: column;
}

.tc-catchy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.tc-live-dot {
  width: 8px; height: 8px;
  background-color: var(--blue);
  border-radius: 50%;
  animation: tcPulseBlue 2s infinite;
}

.tc-catchy-title {
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.tc-text-gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-catchy-desc {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 30px;
}

/* Catchy Feature Pills */
.tc-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.tc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 86, 210, 0.05);
  border: 1px solid rgba(0, 86, 210, 0.1);
  color: var(--navy);
  padding: 6px 6px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.tc-pill svg { width: 16px; height: 16px; color: var(--blue); transition: all 0.3s; }

/* Interactive Hover Effect on Pills */
.tc-pill:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 86, 210, 0.2);
}
.tc-pill:hover svg { color: var(--lime); }

.tc-catchy-note {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-left: 16px;
  border-left: 3px solid var(--border);
}

/* Actions */
.tc-catchy-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tc-btn-blue {
  background: var(--blue);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 86, 210, 0.2);
}
.tc-btn-blue:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 30, 61, 0.25);
}

.tc-btn-chat {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.tc-btn-chat svg { color: #25D366; } /* WhatsApp Green icon */
.tc-btn-chat:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}


/* ── RIGHT: HOVER-DECK VISUAL ── */
.tc-catchy-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.tc-hover-deck {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Abstract Orbits */
.tc-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 86, 210, 0.2);
  z-index: 1;
}
.tc-orbit-1 {
  width: 400px; height: 400px;
  animation: tcSpin 30s linear infinite;
}
.tc-orbit-2 {
  width: 500px; height: 500px;
  border: 1px solid rgba(120, 194, 69, 0.15);
  animation: tcSpin 40s linear infinite reverse;
}

/* Main Cloud Image */
.tc-deck-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(11, 30, 61, 0.15);
  border: 4px solid var(--white);
  animation: tcImageFloat 6s ease-in-out infinite;
}

/* Floating Deck Tags */
.tc-deck-tag {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.pulse-green {
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(120, 194, 69, 0.5);
  animation: tcPulseGreen 2s infinite;
}

.tag-t-right { top: -10px; right: -20px; animation: tcFloatTag 5s ease-in-out infinite; }
.tag-b-left { bottom: 20px; left: -30px; animation: tcFloatTag 6s ease-in-out infinite 1s; }


/* ── ANIMATIONS ── */
@keyframes tcPulseBlue {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
@keyframes tcPulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
@keyframes tcSpin {
  100% { transform: rotate(360deg); }
}
@keyframes tcImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes tcFloatTag {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .tc-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .tc-catchy-badge { align-self: center; }
  .tc-pill-group { justify-content: center; }
  .tc-catchy-note { padding-left: 0; border-left: none; border-top: 3px solid var(--border); padding-top: 16px; }
  .tc-catchy-actions { justify-content: center; }
  .tc-orbit { display: none; } /* Hide rings on tablet to save space */
}

@media (max-width: 768px) {
  .tc-catchy-cloud { padding: 80px 0; }
  .tc-catchy-title { font-size: 34px; }
  .tc-pill { font-size: 13px; padding: 8px 14px; }
  .tc-catchy-actions { flex-direction: column; width: 100%; gap: 16px; }
  .tc-btn-blue, .tc-btn-chat { width: 100%; justify-content: center; }
  .tag-t-right { top: -20px; right: 0; }
  .tag-b-left { bottom: -10px; left: 0; }
}

/* ══════════════════════════════════════════
   HERO FLOATING ELEMENTS
══════════════════════════════════════════ */
.af-floater {
  position: absolute;
  top: 50%;
  z-index: 5;
  pointer-events: none; /* Prevents them from blocking mouse clicks */
}

/* Push them wide so they sit in the empty space */
.float-left {
  left: -120px; 
}
.float-right {
  right: -120px;
}

/* The Premium Glass Container */
.glass-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05); /* Soft glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg); /* Slight jaunty angle for style */
}

.float-right .glass-icon {
  transform: rotate(5deg);
}

.glass-icon svg {
  width: 36px;
  height: 36px;
}

/* Animations (Different timings so they don't bounce perfectly together) */
.float-anim-1 {
  animation: afFloat1 6s ease-in-out infinite;
}
.float-anim-2 {
  animation: afFloat2 7s ease-in-out infinite 1s;
}

@keyframes afFloat1 {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-20px); }
}

@keyframes afFloat2 {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(20px); }
}

/* Hide on tablet and mobile so they don't overlap the text */
@media (max-width: 1200px) {
  .af-floater {
    display: none;
  }
}

/**************Custome Code **************/
a.gt_switcher-popup.glink.nturl.notranslate {
    position: relative;
    top: 6px;
}
.glass-icon.glass-img {
    background: #fff;
    width: 100px;
    height: 100px;
}
.p-hero-overlay {
    
    background-image: url('https://vintechnosoft.com/welcomeqatar/wp-content/uploads/2026/04/bg-hero-landing.webp') !important;
    background-color: var(--blue-dk) !important;
}
.p-hero::before {
    background: radial-gradient(circle at 70% 30%, rgb(9 38 34) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 50%) !important;
}
.shine-silver, .shine-gold{
    background: linear-gradient(120deg, var(--lime) 20%, #FFFBEB 50%, var(--lime) 80%) !important;
background-size: 200% auto !important;
    -webkit-background-clip: text !important;
}
.ph-label {
	color: #ffffff !important;
}
 .since-badge {
    background: var(--lime);
    color: #fff;
    font-size: 14px;
    padding: 0px 10px;
    border-radius: 20px;
}
 .form-group br {
    display: none;
} 
/* ══ MEGA MENU ══ */
.has-mega {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: calc(100vw - 64px);
  max-width: 1100px;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 2000;
  pointer-events: none;
}

.nav-links > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mega-item {
  display: flex;
  gap: 18px;
  padding: 16px;
  border-radius: 14px;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
}

.nav-links li:hover .mega-item {
  opacity: 1;
  transform: translateY(0);
}

.mega-grid .mega-item:nth-child(1) { transition-delay: 0.05s; }
.mega-grid .mega-item:nth-child(2) { transition-delay: 0.1s; }
.mega-grid .mega-item:nth-child(3) { transition-delay: 0.15s; }
.mega-grid .mega-item:nth-child(4) { transition-delay: 0.2s; }
.mega-grid .mega-item:nth-child(5) { transition-delay: 0.25s; }
.mega-grid .mega-item:nth-child(6) { transition-delay: 0.3s; }

.mega-item:hover {
  background: var(--off);
  transform: translateY(-2px);
}

.mega-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 97, 247, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: all 0.3s;
}

.mega-item:hover .mega-icon {
  transform: scale(1.1);
}

.mega-icon svg {
  width: 22px;
  height: 22px;
}

.mega-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.mega-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.mega-featured {
  background: #fffcf5;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(245, 166, 35, 0.1);
  position: relative;
  opacity: 0;
  transform: scale(0.95) translateX(30px);
  transition: all 0.7s var(--ease);
  transition-delay: 0.15s;
}

.nav-links li:hover .mega-featured {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.mega-featured {
  overflow: hidden;
}

.mega-featured img {
  width: 100%;
  height: 220px;
  object-fit: cover; /* Default to cover for photos */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s;
}

.mega-featured img.mega-contain {
  object-fit: contain;
  background: #ffffff;
}

.mega-featured img.mega-logo {
  object-fit: contain;
  background: #ffffff;
  padding: 35px;
  height: 170px;
}

.featured-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.featured-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.mega-featured .btn-orange {
  margin-top: 5px;
  width: fit-content;
  padding: 8px 18px;
  font-size: 12px;
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
  .mega-menu {
    width: 95vw;
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    display: none; /* Mobile nav handles this */
  }
}
