/* Extracted from Home – Advance Global IT Support.cleaned.html */

:root {
      --primary-orange: #ED502E;
      --text-dark: #0f172a;
      --text-light: #ffffff;
      --topbar-height: 40px;
      --rotator-height-desktop: 85px;
      --rotator-height-mobile: 55px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      overflow-x: hidden;
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
    }

    body { overflow-x: hidden; width: 100%; font-family: 'Poppins', sans-serif; background: #fff; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }

    .topbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--topbar-height);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 5%;
      background: transparent;
      z-index: 1001;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .topbar-socials a {
      margin-left: 20px;
      color: var(--primary-orange);
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .topbar-socials a:hover {
      color: #fff;
      transform: translateY(-2px);
    }

    .navbar {
      position: absolute;
      top: var(--topbar-height);
      left: 0;
      width: 100%;
      padding: 20px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
      background: transparent;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      position: fixed;
      top: 0;
      background-color: #ffffff !important;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      padding: 15px 5%;
      animation: slideInNav 0.4s ease-out;
    }

    @keyframes slideInNav {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    .navbar-brand img {
      height: 50px;
      transition: 0.3s ease-in-out;
      filter: brightness(0) invert(1);
    }

    .navbar.scrolled .navbar-brand img {
      height: 45px;
      filter: none;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-grow: 1;
    }

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

    .nav-links > li {
      margin-left: 30px;
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-links > li > a {
      text-decoration: none;
      color: var(--primary-orange);
      font-weight: 700;
      font-size: 15px;
      text-transform: uppercase;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .navbar.scrolled .nav-links > li > a {
      color: var(--text-dark);
    }

    .navbar.scrolled .nav-links > li > a:hover {
      color: var(--primary-orange);
    }

    .dropdown-menu {
      position: absolute;
      top: 150%;
      left: 0;
      background: #fff;
      min-width: 240px;
      list-style: none;
      padding: 15px 0;
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
      border-radius: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      border-top: 3px solid var(--primary-orange);
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      top: 100%;
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 25px;
      color: #475569;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      text-transform: capitalize;
      transition: 0.3s;
    }

    .dropdown-menu li a:hover {
      color: var(--primary-orange);
      background: #f8fafc;
      padding-left: 30px;
    }

    .btn-partner {
      background: var(--primary-orange);
      color: #ffffff !important;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(237, 80, 46, 0.3);
      margin-left: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-partner:hover {
      background: var(--text-dark);
      box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
    }

    .menu-toggle {
      display: none;
      color: var(--primary-orange);
      font-size: 28px;
      cursor: pointer;
      z-index: 1002;
    }

    .hero-section {
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      height: 100vh;
      min-height: 700px;
      background: url('https://focus.flokk.com/hubfs/Blogs/2023/Office%20Focus%20Workspaces/PopInWork%2018-03-13_052.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: var(--topbar-height);
    }

    .kd-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(237, 80, 46, 0.6) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      padding: 0 20px;
    }

    .hero-title {
      font-size: 70px;
      font-weight: 900;
      color: #ffffff;
      line-height: 1.1;
    }

    .rotator-wrapper {
      color: var(--primary-orange);
      display: block;
      height: var(--rotator-height-desktop);
      overflow: hidden;
    }

    .rotator-inner {
      display: flex;
      flex-direction: column;
      animation: slideUpDesktop 12s infinite;
    }

    .rotator-single {
      height: var(--rotator-height-desktop);
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    @keyframes slideUpDesktop {
      0%, 15% { transform: translateY(0); }
      20%, 35% { transform: translateY(calc(var(--rotator-height-desktop) * -1)); }
      40%, 55% { transform: translateY(calc(var(--rotator-height-desktop) * -2)); }
      60%, 75% { transform: translateY(calc(var(--rotator-height-desktop) * -3)); }
      80%, 95% { transform: translateY(calc(var(--rotator-height-desktop) * -4)); }
      100% { transform: translateY(0); }
    }

    .hero-subtitle {
      font-size: 20px;
      color: #e2e8f0;
      margin-top: 25px;
      font-weight: 400;
    }

    .separator-waves {
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 12vh;
      min-height: 100px;
      max-height: 150px;
      z-index: 10;
    }

    .separator-waves-parallax > use {
      animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
    }

    .separator-waves-parallax > use:nth-child(1) {
      animation-delay: -2s;
      animation-duration: 7s;
    }

    .separator-waves-parallax > use:nth-child(2) {
      animation-delay: -3s;
      animation-duration: 10s;
    }

    .separator-waves-parallax > use:nth-child(3) {
      animation-delay: -4s;
      animation-duration: 13s;
    }

    .separator-waves-parallax > use:nth-child(4) {
      animation-delay: -5s;
      animation-duration: 20s;
    }

    @keyframes move-forever {
      0% { transform: translate3d(-90px,0,0); }
      100% { transform: translate3d(85px,0,0); }
    }

    @media (max-width: 992px) {
      .nav-container { display: none; }
      .menu-toggle { display: block; }
      .navbar.scrolled .menu-toggle { color: var(--text-dark); }

      .nav-container.active {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        animation: slideInRight 0.3s ease-out;
      }

      @keyframes slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
      }

      .nav-links { flex-direction: column; width: 100%; }
      .nav-links > li { display: block; margin: 15px 0; text-align: left; width: 100%; padding: 0 30px; }
      .nav-links > li > a {
        font-size: 18px;
        color: var(--text-dark) !important;
        justify-content: space-between;
      }

      .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        margin-top: 10px;
      }

      .dropdown:hover .dropdown-menu { display: block; }
      .btn-partner { margin: 20px 30px; display: inline-flex; text-align: center; }
      .hero-title { font-size: 45px; }
      .rotator-wrapper { height: var(--rotator-height-mobile); }
      .rotator-single { height: var(--rotator-height-mobile); font-size: 28px; }

      @keyframes slideUpMobile {
        0%, 15% { transform: translateY(0); }
        20%, 35% { transform: translateY(calc(var(--rotator-height-mobile) * -1)); }
        40%, 55% { transform: translateY(calc(var(--rotator-height-mobile) * -2)); }
        60%, 75% { transform: translateY(calc(var(--rotator-height-mobile) * -3)); }
        80%, 95% { transform: translateY(calc(var(--rotator-height-mobile) * -4)); }
        100% { transform: translateY(0); }
      }

      .rotator-inner { animation: slideUpMobile 12s infinite; }
      .separator-waves { height: 60px; min-height: 60px; }
    }

:root {
      --brand-color: #ED502E;
      --black-text: #1a1a1a;
      --paragraph-text: #555555;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .services-section {
      padding: 80px 0;
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      background: #ffffff;
    }

    .top-header {
      text-align: center;
      max-width: 1050px;
      margin: 0 auto 50px;
      padding: 0 20px;
    }

    .top-header h2 {
      font-size: 44px;
      font-weight: 900;
      color: var(--black-text);
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .top-header h2 span { color: var(--brand-color); }

    .top-header p {
      color: var(--paragraph-text);
      font-size: 17px;
      line-height: 1.7;
      font-weight: 400;
    }

    .container-fluid {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .cb-wrapper {
      background-color: var(--brand-color);
      border-radius: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 45px 25px;
      transition: var(--transition);
      border: 1px solid var(--brand-color);
      box-shadow: 0 10px 30px rgba(237, 80, 46, 0.1);
      min-height: auto;
      opacity: 0;
      transform: translateY(30px);
      cursor: pointer;
    }

    .cb-wrapper.cb-card-link {
      color: inherit;
      text-decoration: none;
    }

    .cb-wrapper.cb-card-link:focus-visible {
      outline: 3px solid rgba(237, 80, 46, 0.35);
      outline-offset: 5px;
    }

    .cb-wrapper.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    .cb-img-area {
      height: 60px;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cb-img-area i {
      font-size: 52px;
      color: #ffffff;
      transition: var(--transition);
    }

    .cb-text-area {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .cb-heading {
      font-size: 21px;
      font-weight: 800;
      line-height: 1.3;
      text-transform: capitalize;
      height: 60px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
    }

    .cb-text-area p {
      font-size: 15.5px;
      line-height: 1.6;
      font-weight: 400;
      min-height: auto;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      color: #ffffff;
    }

    .cb-simple-link {
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-bottom: none;
      padding-bottom: 0;
      transition: var(--transition);
      display: inline-block;
      margin-top: 5px;
      align-self: center;
      color: #ffffff;
    }

    .cb-wrapper:hover,
    .cb-wrapper:active {
      background-color: var(--brand-color) !important;
      transform: translateY(-12px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .cb-wrapper:hover .cb-heading,
    .cb-wrapper:hover .cb-text-area p,
    .cb-wrapper:hover .cb-img-area i,
    .cb-wrapper:hover .cb-simple-link {
      color: #ffffff !important;
    }

    @media (max-width: 1200px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .cb-heading,
      .cb-text-area p { min-height: auto; height: auto; }
    }

:root {
      --gap-brand: #ED502E;
      --gap-soft: rgba(237, 80, 46, 0.08);
      --gap-dark: #1a1a1a;
      --gap-white: #ffffff;
    }

    .agits-it-gap-premium {
      padding: 60px 0;
      background: var(--gap-white);
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      display: flex;
      justify-content: center;
    }

    .gap-container-full {
      max-width: 1200px;
      width: 90%;
      margin: 0 auto;
      position: relative;
      z-index: 5;
    }

    .gap-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }

    .gap-blob {
      position: absolute;
      width: 500px;
      height: 500px;
      background: var(--gap-soft);
      filter: blur(100px);
      border-radius: 50%;
      z-index: 1;
      animation: blobFloat 10s infinite alternate ease-in-out;
    }

    @keyframes blobFloat {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(10%, 10%) scale(1.1); }
    }

    .gap-image-card {
      position: relative;
      border-radius: 40px;
    }

    .gap-image-card img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 40px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    .experience-float {
      position: absolute;
      bottom: 30px;
      right: -20px;
      background: var(--gap-white);
      padding: 20px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      animation: floatY 4s infinite ease-in-out;
    }

    .gap-tag {
      color: var(--gap-brand);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: var(--gap-soft);
      padding: 6px 15px;
      border-radius: 50px;
      display: inline-block;
    }

    .gap-title {
      font-size: 48px;
      font-weight: 900;
      margin: 10px 0 20px;
      line-height: 1.2;
      color: var(--gap-dark);
    }

    .gap-title span { color: var(--gap-brand); }

    .gap-desc {
      font-size: 17px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .gap-stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gap-stat-card {
      background: #fafafa;
      padding: 25px 20px;
      border-radius: 25px;
      text-align: center;
      border: 1px solid #f0f0f0;
      transition: all 0.4s ease;
    }

    .gap-stat-card:hover {
      background: var(--gap-white);
      border-color: var(--gap-brand);
      transform: translateY(-10px);
      box-shadow: 0 15px 30px var(--gap-soft);
    }

    .stat-icon { color: var(--gap-brand); font-size: 24px; margin-bottom: 10px; }
    .gap-stat-card h3 { font-size: 32px; font-weight: 800; color: var(--gap-dark); margin: 5px 0; }
    .gap-stat-card p { font-size: 13px; font-weight: 600; color: #888; text-transform: uppercase; }

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

    @media (max-width: 991px) {
      .gap-content-wrapper { grid-template-columns: 1fr; text-align: center; }
      .gap-image-card img { height: 350px; }
      .experience-float { right: 20px; }
      .gap-title { font-size: 32px; }
      .gap-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    }

    @media (max-width: 600px) {
      .gap-stats-grid { grid-template-columns: 1fr; }
      .agits-it-gap-premium { padding: 40px 0; }
    }

:root {
      --brand-soft: rgba(237, 80, 46, 0.08);
      --pure-white: #ffffff;
    }

    .sectors-section {
      font-family: 'Poppins', sans-serif;
      background: var(--pure-white);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80vh;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .rain-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .drop {
      position: absolute;
      background: var(--brand-color);
      border-radius: 50%;
      opacity: 0.2;
      animation: fall linear infinite;
    }

    @keyframes fall {
      0% { transform: translateY(-10vh) scale(0); opacity: 0; }
      20% { opacity: 0.3; transform: scale(1); }
      100% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    }

    .section-container {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 5;
    }

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

    .sector-card {
      background: var(--pure-white);
      padding: 40px 25px;
      border-radius: 25px;
      border: 1px solid rgba(237, 80, 46, 0.1);
      transition: var(--transition);
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      position: relative;
      z-index: 2;
    }

    .card-1 { animation: floatFrame 6s infinite ease-in-out; }
    .card-2 { animation: floatFrame 6s infinite ease-in-out 1.5s; }
    .card-3 { animation: floatFrame 6s infinite ease-in-out 3s; }
    .card-4 { animation: floatFrame 6s infinite ease-in-out 4.5s; }

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

    .sector-card:hover {
      border-color: var(--brand-color);
      box-shadow: 0 20px 50px rgba(237, 80, 46, 0.15);
      background: #fff;
      transform: scale(1.05) !important;
      z-index: 10;
    }

    .icon-wrapper {
      width: 70px;
      height: 70px;
      background: var(--brand-soft);
      color: var(--brand-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 20px;
      transition: var(--transition);
    }

    .sector-card:hover .icon-wrapper {
      background: var(--brand-color);
      color: white;
      transform: rotateY(360deg);
    }

    .sector-card h4 {
      color: #1a1a1a;
      margin-bottom: 10px;
      font-size: 20px;
      font-weight: 800;
    }

    .sector-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .title {
      font-size: clamp(34px, 5vw, 55px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 25px;
      color: #1a1a1a;
    }

    .title span { color: var(--brand-color); }

    .view-btn {
      background: var(--brand-color);
      color: white;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: var(--transition);
      box-shadow: 0 10px 25px rgba(237, 80, 46, 0.2);
      text-transform: uppercase;
      border: 2px solid var(--brand-color);
    }

    .view-btn:hover {
      background: transparent;
      color: var(--brand-color);
      transform: translateY(-5px);
    }

    .learn-more {
      color: var(--brand-color);
      text-decoration: none;
      font-weight: 700;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      text-transform: uppercase;
    }

    @media (max-width: 1024px) {
      .section-container { grid-template-columns: 1fr; text-align: center; }
      .cards-grid { order: 2; }
      .content-side { order: 1; }
    }

    @media (max-width: 600px) {
      .cards-grid { grid-template-columns: 1fr; }
      .sector-card { animation: none; }
    }

:root {
      --cov-brand: #ED502E;
      --cov-soft: rgba(237, 80, 46, 0.08);
      --cov-dark: #1a1a1a;
      --cov-white: #ffffff;
    }

    .agits-coverage-premium {
      padding: 100px 0;
      background: var(--cov-white);
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      display: flex;
      justify-content: center;
    }

    .cov-container-full {
      max-width: 1200px;
      width: 90%;
      margin: 0 auto;
      position: relative;
      z-index: 5;
    }

    .cov-blob {
      position: absolute;
      width: 500px;
      height: 500px;
      background: var(--cov-soft);
      filter: blur(100px);
      border-radius: 50%;
      z-index: 1;
      animation: covBlobFloat 10s infinite alternate ease-in-out;
    }

    @keyframes covBlobFloat {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(10%, 10%) scale(1.1); }
    }

    .cov-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .cov-tag {
      color: var(--cov-brand);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: var(--cov-soft);
      padding: 6px 15px;
      border-radius: 50px;
    }

    .cov-title {
      font-size: 48px;
      font-weight: 900;
      margin: 20px 0;
      color: var(--cov-dark);
    }

    .cov-title span { color: var(--cov-brand); }

    .cov-desc {
      font-size: 17px;
      color: #555;
      line-height: 1.8;
    }

    .cov-content-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: center;
    }

    .map-wrapper {
      position: relative;
      border-radius: 30px;
    }

    .map-wrapper img {
      width: 100%;
      border-radius: 20px;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    }

    .map-dot {
      position: absolute;
      width: 14px;
      height: 14px;
      background: #000000;
      border-radius: 50%;
      z-index: 10;
      box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
    }

    .map-dot::after {
      content: '';
      position: absolute;
      top: -100%;
      left: -100%;
      width: 300%;
      height: 300%;
      border: 2px solid #000000;
      border-radius: 50%;
      animation: covPing 2s infinite;
    }

    @keyframes covPing {
      0% { transform: scale(0.2); opacity: 1; }
      100% { transform: scale(1.2); opacity: 0; }
    }

    .map-dot span {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      background: #000000;
      color: #ffffff;
      padding: 5px 12px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .dot-latam { top: 62%; left: 28%; }
    .dot-emea { top: 43%; left: 52%; }
    .dot-apac { top: 48%; left: 82%; }

    .cov-bar-item { margin-bottom: 30px; }

    .bar-label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .region-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--cov-dark);
      letter-spacing: 0.5px;
    }

    .region-perc {
      font-weight: 800;
      color: var(--cov-brand);
    }

    .bar-track {
      height: 12px;
      background: #f0f0f0;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #eee;
    }

    .bar-fill {
      height: 100%;
      width: 0%;
      background-color: var(--cov-brand);
      border-radius: 20px;
      transition: width 2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    }

    .animated-striped {
      background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
      background-size: 1rem 1rem;
      animation: progress-stripes 1s linear infinite;
    }

    @keyframes progress-stripes {
      from { background-position: 1rem 0; }
      to { background-position: 0 0; }
    }

    @media (max-width: 991px) {
      .cov-content-grid { grid-template-columns: 1fr; text-align: center; }
      .cov-title { font-size: 32px; }
      .agits-coverage-premium { padding: 60px 0; }
    }

:root {
      --glow-color: rgba(237, 80, 46, 0.25);
      --transition-ultra: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .agits-vendors-premium {
      padding: 45px 0;
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      overflow: hidden;
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .vendors-header {
      text-align: center;
      margin-bottom: 25px;
    }

    .vendors-header h2 {
      font-size: clamp(24px, 3vw, 32px);
      color: #1a1a1a;
      font-weight: 900;
      text-transform: uppercase;
    }

    .vendors-header h2 span { color: var(--brand-color); }

    .carousel-outer {
      width: 100%;
      position: relative;
      padding: 15px 0;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .carousel-inner {
      display: flex;
      width: fit-content;
      animation: scroll-wide 35s linear infinite;
    }

    .vendor-card {
      flex: 0 0 auto;
      width: 210px;
      height: 105px;
      margin: 0 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 18px;
      padding: 20px;
      border: 2px solid var(--brand-color);
      box-shadow: 0 8px 20px var(--glow-color);
      transition: var(--transition-ultra);
      position: relative;
      overflow: hidden;
    }

    .vendor-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
      transform: skewX(-25deg);
      animation: sweep 4s infinite;
    }

    .vendor-card img {
      max-width: 100%;
      max-height: 55px;
      object-fit: contain;
      z-index: 2;
    }

    .vendor-card:hover {
      transform: translateY(-8px) scale(1.06);
      box-shadow: 0 15px 35px rgba(237, 80, 46, 0.4);
      border-color: #ff3c12;
    }

    .carousel-outer:hover .carousel-inner {
      animation-play-state: paused;
    }

    @keyframes scroll-wide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes sweep {
      0% { left: -100%; }
      30% { left: 150%; }
      100% { left: 150%; }
    }

    @media (max-width: 768px) {
      .vendor-card { width: 160px; height: 85px; margin: 0 10px; }
      .agits-vendors-premium { padding: 30px 0; }
    }

:root {
      --text-dark: #1a1a1a;
    }

    .agits-contact-premium {
      padding: 60px 0;
      background: var(--pure-white);
      font-family: 'Poppins', sans-serif;
      display: flex;
      justify-content: center;
      width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      overflow: hidden;
    }

    .bg-pulse {
      position: absolute;
      width: 400px;
      height: 400px;
      background: var(--brand-soft);
      filter: blur(80px);
      border-radius: 50%;
      z-index: 1;
      animation: pulseMove 8s infinite alternate ease-in-out;
    }

    @keyframes pulseMove {
      0% { transform: translate(-20%, -20%); opacity: 0.5; }
      100% { transform: translate(20%, 20%); opacity: 0.8; }
    }

    .contact-card {
      max-width: 1100px;
      width: 92%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--pure-white);
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.08);
      border: 1px solid #f0f0f0;
      position: relative;
      z-index: 5;
      min-height: 550px;
    }

    .form-content {
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .tagline {
      color: var(--brand-color);
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tagline::before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--brand-color);
    }

    .form-content h2 {
      font-size: 36px;
      color: var(--text-dark);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 30px;
    }

    .form-content h2 span { color: var(--brand-color); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .full { grid-column: span 2; }
    .field-wrapper { position: relative; }

    .field-wrapper i {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--brand-color);
      font-size: 16px;
    }

.field-wrapper input,
    .field-wrapper select,
    .field-wrapper textarea {
      width: 100%;
      padding: 14px 20px 14px 50px;
      border: 1.5px solid #f3f3f3;
      background: #fafafa;
      border-radius: 12px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      outline: none;
      transition: var(--transition);
    }

    .field-wrapper input::placeholder,
    .field-wrapper textarea::placeholder {
      font-family: 'Poppins', sans-serif;
    }

    .field-wrapper input:focus,
    .field-wrapper textarea:focus {
      border-color: var(--brand-color);
      background: #fff;
      box-shadow: 0 5px 15px rgba(237, 80, 46, 0.08);
    }

    .submit-btn {
      width: 100%;
      background: var(--brand-color);
      color: white;
      padding: 16px;
      border: none;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(237, 80, 46, 0.25);
      letter-spacing: 1px;
    }

    .visual-side {
      background: url('https://thumbs.dreamstime.com/b/vertical-portrait-confident-successful-businessman-sitting-table-arranging-meeting-using-his-smartphone-111721722.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 40px;
    }

    .visual-side::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    }

    .floating-badge {
      background: rgba(255, 255, 255, 0.95);
      padding: 20px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
      z-index: 2;
      animation: floatAnim 4s infinite ease-in-out;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

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

    .badge-icon {
      width: 45px;
      height: 45px;
      background: var(--brand-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .badge-text b { display: block; font-size: 16px; color: var(--text-dark); }
    .badge-text span { font-size: 12px; color: #666; }

    @media (max-width: 900px) {
      .contact-card { grid-template-columns: 1fr; }
      .visual-side { display: none; }
      .agits-contact-premium { padding: 40px 0; }
    }

:root {
      --text-main: #1d1d1f;
      --text-dim: #6e6e73;
      --border-light: #f2f2f2;
      --footer-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .agits-bottom-section {
      background-color: var(--pure-white);
      padding: 60px 0 0;
      font-family: 'Inter', sans-serif;
      color: var(--text-main);
      width: 100%;
      border-top: 1px solid var(--border-light);
    }

    .base-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1fr 0.6fr 1.4fr;
      gap: 40px;
    }

    .brand-box img { max-width: 150px; margin-bottom: 20px; display: block; }
    .brand-box p { font-size: 14px; line-height: 1.6; color: var(--text-dim); margin-bottom: 25px; }
    .social-wrap { display: flex; gap: 10px; }

    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      text-decoration: none;
      transition: var(--footer-transition);
      border: 1px solid var(--border-light);
    }

    .social-link:hover {
      background: var(--brand-color);
      color: white;
      transform: translateY(-3px);
    }

    .nav-box { display: flex; flex-direction: column; }

    .base-title {
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 20px;
      color: var(--brand-color);
    }

    .nav-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
    .nav-list li { margin-bottom: 12px; list-style: none; }

    .nav-list a {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: var(--footer-transition);
    }

    .nav-list a:hover { color: var(--brand-color); }

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

    .office-item {
      padding: 15px;
      border-radius: 12px;
      background: #fafafa;
      border: 1px solid var(--border-light);
      transition: var(--footer-transition);
    }

    .office-item:hover {
      border-color: var(--brand-color);
      background: #fff;
    }

    .office-item h5 {
      font-size: 14px;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .office-item h5 i {
      color: var(--brand-color);
      font-size: 12px;
    }

    .office-item p {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.4;
    }

    .end-bar {
      margin-top: 40px;
      padding: 20px 5%;
      border-top: 1px solid var(--border-light);
      text-align: center;
    }

    .end-bar p { font-size: 12px; color: #999; margin: 0; }

    @media (max-width: 850px) {
      .base-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }

      .brand-box img { margin: 0 auto 20px; }
      .social-wrap { justify-content: center; }
      .nav-box { align-items: center; }
      .office-grid { grid-template-columns: 1fr; }
      .office-item h5 { justify-content: center; }
    }
