
  :root {
    --primary-orange: #ff6b00;
    --text-dark: #111111;
    --text-muted: #555555;
    --bg-white: #ffffff;
    --grey-light: #f8f9fa;
    --grey-connection: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --fx25-font-heading: 'Oswald', sans-serif;
    --fx25-font-body: 'Inter', sans-serif;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter", sans-serif; */
  }

  body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
    font-family: var(--fx25-font-body);
     line-height: 1.5;


  }

  /* --- Search Overlay --- */
  .search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 350px;
    background: white;
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
      rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    z-index: 99999 !important;
  }

  .search-overlay.active {
    top: 0;
  }

  .search-container {
    width: 80%;
    max-width: 800px;
    position: relative;
  }

  .search-container input {
    width: 100%;
    padding: 20px 0;
    font-size: 32px;
    border: none;
    border-bottom: 2px solid var(--primary-orange);
    outline: none;
    font-family: "Oswald", sans-serif;
  }

  .close-search {
    position: absolute;
    top: 40px;
    right: 5%;
    font-size: 40px;
    cursor: pointer;
    color: var(--text-dark);
  }

  /* --- Navbar --- */

  /* Sticky Navbar Smooth Animation */
  /* ===== Sticky Navbar Smooth Animation ===== */

  header {
    transition:
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease;
    will-change: transform;
  }

  /* Sticky base state */
  header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    transform: translateY(-100%);
  }

  /* Visible state (smooth reveal) */
  header.sticky.show {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* Optional (recommended for premium look) */
  header.sticky.show {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
  }

  header {
    width: 100%;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    background: white;
  }

  .logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }

  nav {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .nav-item {
    position: relative;
    padding: 25px 0;
  }

  nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  nav a:hover {
    color: var(--primary-orange);
  }

  .dropdown-menu {
    position: absolute;
    top: 90%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow:
      rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 12px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 2000;
    border: 1px solid #f0f0f0;
  }

  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    padding: 12px 25px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 15px;
  }

  .dropdown-menu a:hover {
    background: var(--grey-light);
    color: var(--primary-orange);
    padding-left: 30px;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  /* Mobile Toggle Button */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 3000;
  }

  .mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .search-btn {
    background: none;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }















  .cta-btn,
  .explore-btn {
    background-color: var(--primary-orange);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    /* box-shadow: 0 8px 15px rgba(255, 107, 0, 0.2); */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    width: fit-content;
  }

  .cta-btn span,
  .explore-btn span {
    display: inline-block;
    transition: transform 0.4s ease;
  }

  .cta-btn:hover span,
  .explore-btn:hover span {
    transform: rotate(-45deg);
  }























  /* --- Hero Section --- */
  .hero {
    position: relative;
    padding: 60px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .badge-connection {
    position: absolute;
    top: 0;
    right: 5%;
    width: 160px;
    height: 200px;
    background-color: var(--grey-connection);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    z-index: 10;
  }

  .floating-badge {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    animation:
      rotate 25s linear infinite,
      orangeBlink 2s ease-in-out infinite;
    /* Updated to orange blink */
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  /* Orange Blink Animation for Image inside Connector */
  @keyframes orangeBlink {

    0%,
    100% {
      box-shadow: 0 0 0px var(--primary-orange);
      border: 2px solid transparent;
    }

    50% {
      box-shadow: 0 0 20px var(--primary-orange);
      border: 2px solid var(--primary-orange);
    }
  }

  .floating-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

  .hero-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(45px, 8vw, 85px);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 50px;
    max-width: 85%;
  }

  .title-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-orange);
  }

  /* Content Grid */
  .hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-image-container {
    position: relative;
    /* border-radius: 24px; */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    max-width: 550px;
  }

  .hero-image-container img {
    width: 100%;
    display: block;
    transition: var(--transition);
  }

  .hero-image-container:hover img {
    transform: scale(1.05);
  }

  .sub-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-size: 14px;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 35px;
  }

  .explore-btn {
    padding: 18px 40px;
    font-weight: 800;
    font-size: 14px;
  }

  /* --- Mobile Sidebar Updated --- */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /* Mobile me full width for better experience */
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 4000;
    padding: 40px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  .mobile-close {
    font-size: 35px;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-links>a,
  .mobile-dropdown-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    background: var(--grey-light);
    flex-direction: column;
    border-radius: 8px;
  }

  .mobile-dropdown-content a {
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-dropdown-content.active {
    display: flex;
  }

  /* --- Responsive updates --- */
  @media (max-width: 1024px) {
    nav {
      display: none;
    }

    .mobile-toggle {
      display: flex;
    }

    .badge-connection {
      display: none;
    }

    .hero-content {
      grid-template-columns: 1fr;
    }

    .hero-image-container {
      max-width: 100%;
      margin-bottom: 30px;
    }

    .hero-title {
      font-size: 50px;
      max-width: 100%;
    }
  }

  @media (max-width: 600px) {
    .hero-title {
      font-size: 40px;
    }

    .nav-right .cta-btn {
      display: none;
    }
  }
  




















  /* about section start  */


  
        :root {
            --fx25-bg: #fff;
            --fx25-accent: #ff6b00; /* Neon Lime/Green */
            --fx25-card-bg: #555555;
            --fx25-text-main: #000;
            --fx25-text-dim: #a0a0a0;
           
        }

       
        .fx25-section {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 5%;
            position: relative;
            
        }

        /* Abstract background glow element */
        .fx25-bg-accent-bottom {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .fx25-main-container {
            width: 100%;
            max-width: 1280px;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        /* --- LEFT SIDE --- */
        .fx25-left-content {
            grid-column: span 6;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .fx25-hero-heading {
            font-family: var(--fx25-font-heading);
            font-size: clamp(3rem, 5vw, 4.5rem);
            line-height: 1.1;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .fx25-outline-text {
            color: transparent;
            -webkit-text-stroke: 1px var(--fx25-accent);
        }

        .fx25-label-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 60px;
        }

        .fx25-label-text {
            font-family: var(--fx25-font-heading);
            font-size: 1.1rem;
            color: var(--fx25-accent);
            text-transform: uppercase;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .fx25-label-line {
            height: 2px;
            background-color: var(--fx25-accent);
            flex-grow: 1;
            max-width: 180px;
            position: relative;
        }

        .fx25-label-line::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background-color: var(--fx25-accent);
            border-radius: 50%;
        }

        .fx25-experience-block {
            position: relative;
            margin-top: auto;
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }

        .fx25-big-number {
            font-family: var(--fx25-font-heading);
            font-size: clamp(8rem, 15vw, 16rem);
            line-height: 0.8;
            color: transparent;
            -webkit-text-stroke: 2px #222; /* Dark stroke like image */
            font-weight: 700;
        }

        .fx25-exp-labels {
            margin-bottom: 20px;
        }

        .fx25-plus-sign {
            font-family: var(--fx25-font-heading);
            font-size: 8rem;
            color: transparent;
            -webkit-text-stroke: 2px #333;
            line-height: 1;
            margin-bottom: -10px;
        }

        .fx25-exp-text {
            font-family: var(--fx25-font-heading);
            font-size: 2.2rem;
            line-height: 1.1;
            text-transform: uppercase;
            color: var(--fx25-accent);
            -webkit-text-stroke: 1px var(--fx25-accent);
        }

        /* --- RIGHT SIDE --- */
        .fx25-right-content {
            grid-column: span 6;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            padding-top: 20px;
        }

        .fx25-description {
            max-width: 520px;
            color: var(--fx25-text-dim);
            font-size: 1.05rem;
            text-align: left;
            margin-bottom: 60px;
            line-height: 1.6;
        }

        .fx25-stats-container {
            width: 100%;
            max-width: 520px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 60px;
        }

        .fx25-stat-card {
            background-color: var(--fx25-card-bg);
            border-radius: 60px; /* High pill radius */
            padding: 24px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.3s ease;
            color: white;
        }

        /* Visual stagger effect like the image */
        .fx25-stat-card:nth-child(1) { margin-left: 0; }
        .fx25-stat-card:nth-child(2) { margin-left: 20px; }
        .fx25-stat-card:nth-child(3) { margin-left: 40px; }

        .fx25-stat-label {
            font-family: var(--fx25-font-heading);
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .fx25-stat-value {
            font-family: var(--fx25-font-heading);
            font-size: 2.4rem;
            color: var(--fx25-accent);
            font-weight: 700;
        }

        .fx25-btn {
            background-color: var(--fx25-accent);
            color: #000;
            padding: 18px 36px;
            border-radius: 50px;
            font-family: var(--fx25-font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: scale 0.2s ease;
            text-decoration: none;
            margin-right: auto; /* Align to left of right column basically */
        }

        

        .fx25-arrow {
            width: 20px;
            height: 20px;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 1024px) {
            .fx25-main-container {
                gap: 20px;
            }
            .fx25-hero-heading { font-size: 3.5rem; }
            .fx25-big-number { font-size: 10rem; }
            .fx25-description { max-width: 100%; }
        }

        @media (max-width: 768px) {
            .fx25-main-container {
                display: flex;
                flex-direction: column;
            }
            .fx25-left-content, .fx25-right-content {
                width: 100%;
            }
            .fx25-right-content {
                align-items: flex-start;
            }
            .fx25-stat-card {
                margin-left: 0 !important; /* Remove stagger on mobile */
                padding: 18px 30px;
            }
            .fx25-big-number {
                font-size: 8rem;
            }
            .fx25-experience-block {
                margin-top: 40px;
            }
        }
    











/* servies section start  */


        /* CSS Reset & Variables */
       

        :root {
            --fx-neon-green: #ff6b00; 
            --fx-neon-bright: #ff6b00;
            --fx-dark-bg: #111111;
            --fx-card-bg: #ffffff; 
            --fx-text-main: #1a1a1a;
            --fx-text-gray: #666666;
            --fx-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

       
        .fx-service-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        /* Header Section */
        .fx-service-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .fx-service-subtitle {
            color: var(--fx-neon-green);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .fx-service-main-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
            line-height: 1.1;
        }

        .fx-service-outline-text {
            color: transparent;
            -webkit-text-stroke: 1.5px #ff6b00;
        }

        /* Grid Layout */
        .fx-service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            align-items: stretch;
        }

        /* Adjusted Card Height */
        .fx-service-card {
            background-color: var(--fx-card-bg);
            overflow: hidden;
            position: relative;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 520px; 
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: rgba(60, 64, 67, 0.15) 0px 1px 2px 0px;
            transition: var(--fx-transition);
            z-index: 1; /* Establish stacking context */
        }

        /* Fixed Aspect Ratio for Images - Height updated to 250px */
        .fx-service-hover-img, .fx-service-center-img {
            width: 100%;
            height: 250px; 
            object-fit: cover;
            transition: var(--fx-transition);
        }

        /* Hover Image Slide Down Logic */
        .fx-service-hover-img {
            position: absolute;
            top: 0;
            left: 0;
            transform: translateY(-100%);
            z-index: 1; /* Lower than icon/text */
        }

        .fx-service-card:hover .fx-service-hover-img {
            transform: translateY(0);
        }

        /* Watermark Text */
        .fx-service-watermark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 60px;
            font-weight: 900;
            color: rgba(0,0,0,0.04);
            letter-spacing: 4px;
            z-index: 0;
            transition: var(--fx-transition);
        }

        .fx-service-card:hover .fx-service-watermark {
            opacity: 0;
            transform: translateY(20px);
        }

        /* Icon Styling */
        .fx-service-icon-box {
            width: 70px;
            height: 70px;
            background: #f5f5f5;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: auto;
            position: relative;
            z-index: 5; /* Higher than hover image */
            transition: var(--fx-transition);
        }

        .fx-service-card:hover .fx-service-icon-box {
            background: var(--fx-dark-bg);
            transform: translateY(15px);
        }

        .fx-service-icon-box i {
            font-size: 30px;
            color: #333;
            transition: var(--fx-transition);
        }

        .fx-service-card:hover .fx-service-icon-box i {
            color: var(--fx-neon-bright);
        }

        /* Center Card Specifics */
        .fx-service-card-center {
            padding: 0;
        }

        .fx-service-center-img-wrapper {
            width: 100%;
            height: 250px; 
            overflow: hidden;
            border-bottom: 3px solid var(--fx-neon-bright);
            position: relative;
            z-index: 1;
        }

        .fx-service-center-content {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            z-index: 5;
        }

        /* Typography */
        .fx-service-title {
            font-family: 'Oswald', sans-serif;
            color: var(--fx-text-main);
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
            position: relative;
            z-index: 5; /* Ensure text is above sliding image */
            letter-spacing: 0.5px;
        }

        .fx-service-desc {
            color: var(--fx-text-gray);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 25px;
            position: relative;
            z-index: 5;
        }

        /* Button Styling */
        .fx-service-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #000;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            z-index: 5;
            transition: var(--fx-transition);
        }

        .fx-service-arrow {
            width: 34px;
            height: 34px;
            background-color: var(--fx-dark-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--fx-transition);
        }

        .fx-service-arrow i {
            font-size: 12px;
            color: var(--fx-neon-bright);
            transform: rotate(-45deg);
            transition: var(--fx-transition);
        }

        .fx-service-btn:hover {
            color: var(--fx-neon-green);
        }

        .fx-service-btn:hover .fx-service-arrow {
            background-color: var(--fx-neon-bright);
            transform: translateX(5px);
        }

        .fx-service-btn:hover .fx-service-arrow i {
            color: #000;
            transform: rotate(0deg); 
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .fx-service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .fx-service-grid {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            
            .fx-service-card {
                min-height: 500px;
                padding: 25px; /* Slightly tighter for mobile */
            }
            /* Ensure images don't stretch weirdly on small screens */
            .fx-service-hover-img, .fx-service-center-img, .fx-service-watermark {
                height: 200px; 
            }
            .fx-service-center-img-wrapper {
                height: 200px;
            }
            /* Fix for potential mobile hover sticking */
            .fx-service-card:active .fx-service-hover-img {
                transform: translateY(0);
            }
        }























/* project showcase section  */

        :root {
            --fx-showcase-neon: #ff6b00;
            --fx-showcase-black: #000000;
            --fx-showcase-white: #ffffff;
            --fx-showcase-grey-light: #f5f5f5;
            --fx-showcase-grey-dark: #333333;
            --fx-showcase-border: #e0e0e0;
        }

        

        /* Full width container for centering */
        .fx-showcase-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .fx-showcase-section {
            display: grid;
            grid-template-columns: 80px 1fr 80px;
            grid-template-rows: auto auto auto;
            min-height: 100vh;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-left: 1px solid var(--fx-showcase-border);
            border-right: 1px solid var(--fx-showcase-border);
            border-bottom: 1px solid var(--fx-showcase-border);
        }

        /* --- Header Area --- */
        .fx-showcase-header {
            grid-column: 1 / -1;
            padding: 60px 80px 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 1px solid var(--fx-showcase-border);
            position: relative;
        }

        .fx-showcase-title-group {
            max-width: 70%;
        }

        .fx-showcase-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            letter-spacing: 1px;
            color: var(--fx-showcase-black);
            margin-bottom: 15px;
        }

        .fx-showcase-tag::before {
            content: '✱';
            color: var(--fx-showcase-neon);
            font-size: 20px;
        }

        .fx-showcase-main-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-transform: uppercase;
            line-height: 1;
        }

        .fx-showcase-highlight {
            -webkit-text-stroke: 1.5px var(--fx-showcase-black);
            color: transparent;
            background: linear-gradient(to right, var(--fx-showcase-neon) 50%, transparent 50%);
            background-size: 200% 100%;
            background-position: right bottom;
            transition: all 0.5s ease;
            display: inline-block;
            padding: 0 5px;
        }

        .fx-showcase-main-heading:hover .fx-showcase-highlight {
            background-position: left bottom;
            color: var(--fx-showcase-black);
        }

        .fx-showcase-view-all {
            background-color: var(--fx-showcase-neon);
            color: var(--fx-showcase-black);
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fx-showcase-view-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 255, 0, 0.3);
        }

        /* --- Sidebar Labels --- */
        .fx-showcase-side-label {
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid var(--fx-showcase-border);
            position: relative;
        }

        .fx-showcase-side-label.right {
            border-right: none;
            border-left: 1px solid var(--fx-showcase-border);
        }

        .fx-showcase-vertical-text {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            white-space: nowrap;
            color: var(--fx-showcase-black);
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .fx-showcase-vertical-text span {
            color: var(--fx-showcase-neon);
            font-size: 12px;
            letter-spacing: 0;
        }

        .fx-showcase-dot {
            width: 8px;
            height: 8px;
            background-color: var(--fx-showcase-neon);
            border-radius: 50%;
            margin: 10px 0;
        }

        /* --- Center Content --- */
        .fx-showcase-content {
            padding: 60px 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: var(--fx-showcase-white);
        }

        .fx-showcase-image-wrapper {
            width: 100%;
            background-color: #0c0c0c;
            border-radius: 4px;
            position: relative;
            margin-bottom: 40px;
            overflow: hidden;
            /* Aspect ratio for the large main image */
            aspect-ratio: 16/9;
            display: flex;
            justify-content: center;
            align-items: center;
            
        }

        .fx-showcase-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .fx-showcase-image-wrapper:hover .fx-showcase-main-img {
            transform: scale(1.05);
            opacity: 1;
        }

        /* --- Project Info Footer --- */
        .fx-showcase-project-footer {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .fx-showcase-project-meta {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .fx-showcase-category {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Oswald', sans-serif;
            color: var(--fx-showcase-neon);
            font-size: 14px;
            text-transform: uppercase;
        }

        .fx-showcase-category::before {
            content: '';
            width: 30px;
            height: 2px;
            background-color: var(--fx-showcase-neon);
        }

        .fx-showcase-project-title {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .fx-showcase-cta {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--fx-showcase-black);
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
            text-transform: uppercase;
            transition: gap 0.3s ease;
        }

        

        .fx-showcase-arrow-btn {
            width: 50px;
            height: 50px;
            background-color: var(--fx-showcase-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transform: rotate(-45deg);
        }

        /* --- Decorative Dots in Header --- */
        .fx-showcase-decor-dots {
            position: absolute;
            right: 320px;
            bottom: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .fx-showcase-decor-dot-small {
            width: 6px;
            height: 6px;
            background-color: var(--fx-showcase-neon);
            border-radius: 50%;
        }

        .fx-showcase-decor-dot-large {
            width: 30px;
            height: 30px;
            border: 1px solid var(--fx-showcase-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- Responsive Queries --- */
        @media (max-width: 1200px) {
            .fx-showcase-section {
                border-left: none;
                border-right: none;
            }
        }

        @media (max-width: 1024px) {
            .fx-showcase-header {
                padding: 40px 40px 30px;
            }
            .fx-showcase-content {
                padding: 40px;
            }
            .fx-showcase-decor-dots {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .fx-showcase-section {
                grid-template-columns: 1fr;
            }
            
            .fx-showcase-side-label {
                display: none;
            }

            .fx-showcase-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 30px 20px;
            }

            .fx-showcase-title-group {
                max-width: 100%;
            }

            .fx-showcase-content {
                padding: 30px 20px;
            }

            .fx-showcase-project-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .fx-showcase-image-wrapper {
                aspect-ratio: 4/3;
            }
        }


















/* clint revoew section  */

 
        :root {
            --fx-feedback-white: #ffffff;
            --fx-feedback-black: #000000;
            --fx-feedback-grey: #666666;
            --fx-feedback-muted: #999999;
            --fx-feedback-neon: #ff6b00; /* Neon Lime/Yellow */
            --fx-feedback-star-color: #ff6b00; /* Gold/Yellow for stars */
            --fx-feedback-border: #eeeeee;
            --fx-feedback-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

      

        .fx-feedback-section {
            padding: 40px 0;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            margin: 0 auto;
            min-height: 600px; /* Base height for section */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Watermark Background Image Container */
        .fx-feedback-watermark-img-container {
            position: absolute;
            right: -2%;
            top: 70%;
            transform: translateY(-50%);
            width: 40%; /* Adjustable width to fill space */
            max-width: 500px;
            height: auto;
            opacity: 0.2; /* Subtle watermark effect */
            z-index: -1;
            pointer-events: none;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive Watermark Image */
        .fx-feedback-watermark-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
        }

        /* --- TOP MOVING HEADING (MARQUEE) --- */
        .fx-feedback-marquee-container {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow: hidden;
            background: var(--fx-feedback-white);
            padding: 20px 0;
            border-bottom: 1px solid var(--fx-feedback-border);
            margin-bottom: 40px;
        }

        .fx-feedback-marquee-inner {
            display: flex;
            white-space: nowrap;
            animation: fx-feedback-scroll 8s linear infinite;
        }

        .fx-feedback-marquee-text {
            font-family: 'Oswald', sans-serif;
            font-size: 6rem; /* Slightly smaller for better fit */
            font-weight: 700;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 30px;
            padding-right: 30px;
        }

        .fx-feedback-text-filled {
            color: var(--fx-feedback-black);
        }

        .fx-feedback-text-outline {
            color: transparent;
            -webkit-text-stroke: 2px #ff6b00;
        }

        .fx-feedback-star-icon {
            color: var(--fx-feedback-neon);
            font-size: 4rem;
        }

        @keyframes fx-feedback-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- MAIN TESTIMONIAL SECTION --- */
        .fx-feedback-main-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr; /* Adjusted for better layout */
            gap: 50px;
            padding: 0 5%;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* LEFT SIDE: Image (Fixed/Sticky) */
        .fx-feedback-image-wrapper {
            position: sticky;
            top: 50px;
            width: 100%;
            max-width: 400px;
            justify-self: center;
        }

        .fx-feedback-client-img {
            width: 100%;
            aspect-ratio: 1 / 1.1;
            object-fit: cover;
            border-radius: 20px;
            filter: grayscale(10%);
            display: block;
            box-shadow: var(--fx-feedback-shadow);
        }

        .fx-feedback-quote-badge {
            position: absolute;
            bottom: -15px;
            right: 15px;
            background-color: var(--fx-feedback-neon);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(204, 255, 0, 0.3);
            z-index: 2;
        }

        .fx-feedback-quote-icon {
            width: 22px;
            height: 22px;
            fill: var(--fx-feedback-black);
        }

        /* RIGHT SIDE: Slider Content */
        .fx-feedback-slider-viewport {
            overflow: hidden;
            width: 100%;
        }

        .fx-feedback-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fx-feedback-slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-right: 20px;
        }

        .fx-feedback-text {
            font-size: 1.5rem;
            line-height: 1.4;
            color: var(--fx-feedback-black);
            font-weight: 400;
            font-style: italic;
        }

        .fx-feedback-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--fx-feedback-border);
            padding-top: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .fx-feedback-client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .fx-feedback-name-group {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .fx-feedback-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            text-transform: uppercase;
            color: var(--fx-feedback-black);
            background-color: var(--fx-feedback-neon);
            display: inline-block;
            padding: 1px 6px;
        }

        .fx-feedback-role {
            font-size: 0.9rem;
            color: var(--fx-feedback-grey);
            font-weight: 500;
        }

        .fx-feedback-stars {
            color: var(--fx-feedback-star-color);
            font-size: 1.1rem;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        /* NAVIGATION UI */
        .fx-feedback-nav-wrapper {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 30px;
        }

        .fx-feedback-nav-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 0;
        }

        .fx-feedback-nav-btn:hover {
            transform: scale(1.15);
        }

        .fx-feedback-nav-btn svg {
            width: 100%;
            height: auto;
            stroke: var(--fx-feedback-black);
            stroke-width: 1.5;
            fill: none;
        }

        .fx-feedback-counter {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--fx-feedback-black);
            min-width: 60px;
            text-align: center;
        }

        .fx-feedback-counter span {
            font-size: 1rem;
            color: var(--fx-feedback-muted);
            vertical-align: middle;
        }

        /* --- RESPONSIVENESS (PERFECT MOBILE VIEW) --- */
        @media (max-width: 1100px) {
            .fx-feedback-watermark-img-container { display: none; }
            .fx-feedback-marquee-text { font-size: 4rem; }
        }

        @media (max-width: 900px) {
            .fx-feedback-main-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .fx-feedback-image-wrapper {
                position: relative;
                top: 0;
                margin: 0 auto;
                max-width: 300px;
            }

            .fx-feedback-meta {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .fx-feedback-client-info {
                flex-direction: column;
                align-items: center;
            }

            .fx-feedback-nav-wrapper {
                justify-content: center;
            }

            .fx-feedback-slide {
                padding-right: 0;
            }
        }

        @media (max-width: 600px) {
            .fx-feedback-section { padding: 20px 0; }
            .fx-feedback-marquee-text { font-size: 3rem; }
            .fx-feedback-text { font-size: 1.1rem; }
            .fx-feedback-counter { font-size: 1.6rem; }
            .fx-feedback-nav-wrapper { gap: 15px; }
            .fx-feedback-nav-btn { width: 35px; }
            .fx-feedback-marquee-container { margin-bottom: 25px; padding: 15px 0; }
        }


    /* ============================= */
/* 🔥 FINAL PERFECT MOBILE FIX */
/* ============================= */



/* Fix marquee overflow issue (BIG FIX) */
.fx-feedback-marquee-container {
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
left: 0 !important;
}

/* Slider safety */
.fx-feedback-slider-container {
width: 100%;
overflow: hidden;
}

.fx-feedback-slide {
min-width: 100%;
width: 100%;
padding: 0 10px;
}

/* ============================= */
/* TABLET FIX */
/* ============================= */
@media (max-width: 900px) {


.fx-feedback-main-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
}

/* Kill sticky (important fix) */
.fx-feedback-image-wrapper {
    position: relative !important;
    top: 0;
    max-width: 260px;
    margin: 0 auto;
}

.fx-feedback-client-img {
    aspect-ratio: 1/1;
}

.fx-feedback-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fx-feedback-client-info {
    flex-direction: column;
    align-items: center;
}

.fx-feedback-nav-wrapper {
    justify-content: center;
}

.fx-feedback-slide {
    padding-right: 0;
}

}

/* ============================= */
/* MOBILE PERFECT FIX */
/* ============================= */
@media (max-width: 600px) {


.fx-feedback-section {
    padding: 25px 0;
    min-height: auto;
}

.fx-feedback-main-container {
    padding: 0 15px;
    gap: 25px;
}

/* TEXT FIX */
.fx-feedback-text {
    font-size: 1.05rem;
    line-height: 1.5;
}

.fx-feedback-name {
    font-size: 1.05rem;
}

.fx-feedback-role {
    font-size: 0.8rem;
}

/* IMAGE FIX */
.fx-feedback-image-wrapper {
    max-width: 230px;
}

/* MARQUEE FIX (VERY IMPORTANT) */
.fx-feedback-marquee-text {
    font-size: 2.2rem;
    gap: 12px;
}

.fx-feedback-star-icon {
    font-size: 1.8rem;
}

.fx-feedback-marquee-container {
    padding: 12px 0;
    margin-bottom: 20px;
}

/* NAV FIX */
.fx-feedback-nav-wrapper {
    margin-top: 20px;
    gap: 15px;
}

.fx-feedback-counter {
    font-size: 1.3rem;
}

.fx-feedback-nav-btn {
    width: 30px;
}


}

/* ============================= */
/* EXTRA SMALL DEVICES (🔥 FINAL TOUCH) */
/* ============================= */
@media (max-width: 400px) {
.fx-feedback-text {
    font-size: 0.95rem;
}

.fx-feedback-marquee-text {
    font-size: 1.8rem;
}

.fx-feedback-image-wrapper {
    max-width: 200px;
}


}
    
    



























/* latest blog section  */


 :root {
            --fx-blog-neon: #ff6b00; 
            --fx-blog-white: #ffffff;
            --fx-blog-bg: #f8f8f8;
            --fx-blog-black: #000000;
            --fx-blog-dark-grey: #1a1a1a;
            --fx-blog-text-grey: #555555;
            --fx-blog-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --fx-blog-shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
            --fx-blog-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

       

        .fx-blog-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top:50px;
        }

        /* HEADER AREA */
        .fx-blog-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 50px !important;
        }

        .fx-blog-header-left {
            flex: 1;
        }

        .fx-blog-label {
            display: flex;
            align-items: center;
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--fx-blog-black);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .fx-blog-label::before {
            content: "✳";
            color: var(--fx-blog-neon);
            margin-right: 8px;
            font-size: 18px;
        }

        .fx-blog-main-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.1;
            text-transform: uppercase;
        }

        .fx-blog-highlight {
            color: transparent;
            -webkit-text-stroke: 1px var(--fx-blog-black);
        }

        .fx-blog-view-all {
            background-color: var(--fx-blog-neon);
            color: var(--fx-blog-black);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--fx-blog-transition);
            border: 1px solid transparent;
            margin-bottom: 10px;
        }

        .fx-blog-view-all:hover {
            background-color: var(--fx-blog-black);
            color: var(--fx-blog-white);
        }

        .fx-blog-view-all span {
            font-size: 18px;
            transform: rotate(-45deg);
        }

        /* GRID SYSTEM */
        .fx-blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* CARD DESIGN */
        .fx-blog-card {
            background-color: var(--fx-blog-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            transition: var(--fx-blog-transition);
            display: flex;
            flex-direction: column;
        }

        

        .fx-blog-image-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 11;
        }

        .fx-blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--fx-blog-transition);
        }

        .fx-blog-card:hover .fx-blog-image {
            transform: scale(1.08);
        }

        /* DATE BADGE */
        .fx-blog-date-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: var(--fx-blog-neon);
            padding: 10px 20px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        }

        /* CARD CONTENT */
        .fx-blog-content {
            padding: 30px;
            background-color: var(--fx-blog-black); /* Dark background for content areas as per image reference contrast */
            color: white;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .fx-blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 13px;
            color: #999;
            margin-bottom: 20px;
        }

        .fx-blog-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .fx-blog-meta-icon {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .fx-blog-meta-divider {
            color: var(--fx-blog-neon);
            font-weight: bold;
        }

        .fx-blog-title {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* CTA BUTTON */
        .fx-blog-cta {
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--fx-blog-white);
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--fx-blog-transition);
        }

        .fx-blog-cta-arrow {
            width: 40px;
            height: 40px;
            background-color: var(--fx-blog-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fx-blog-black);
            transition: var(--fx-blog-transition);
        }

        .fx-blog-cta:hover {
            color: var(--fx-blog-neon);
        }

        .fx-blog-cta:hover .fx-blog-cta-arrow {
            transform: rotate(-45deg);
            background-color: var(--fx-blog-white);
        }

        /* RESPONSIVENESS */
        @media (max-width: 1024px) {
            .fx-blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .fx-blog-container{
                padding:20px;
            }
        }

        @media (max-width: 768px) {
            
            .fx-blog-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .fx-blog-container{
                padding:20px;
            }
            .fx-blog-grid {
                grid-template-columns: 1fr;
            }
            .fx-blog-main-title {
                font-size: 2.5rem;
            }
        }
















/* strip banner section  */



        
        
      
              /* Premium Typography */
        @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;700&display=swap');

       

        

        /* Section Wrapper - Height Reduced for Elegance */
        .agency-hero {
            position: relative;
            width: 100%;
            height: 420px; 
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #050505; /* Black fallback for fast loading */
        }

        /* Banner Image in HTML - Optimized Styling */
        .hero-visual-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: grayscale(1) contrast(1.1) brightness(0.8);
            opacity: 0.5;
            transform: scale(1.05);
            animation: subtleZoom 25s infinite alternate ease-in-out;
        }

        /* Solid Black Shade + Gradient Depth */
        .hero-shade {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(0, 0, 0, 0.6) 50%, 
                rgba(0, 0, 0, 0.95) 100%);
            z-index: 1;
        }

        /* Animated Grain Texture Overlay */
        .grain-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/76/1k_filmgrain.png');
            opacity: 0.04;
            z-index: 2;
            pointer-events: none;
        }

        /* Content Container */
        .hero-inner {
            position: relative;
            z-index: 5;
            text-align: center;
            padding: 0 24px;
        }

        /* Label with tracking */
        .label-text {
            font-family: 'Inter', sans-serif !important;
            font-size: 10px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.8em;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 24px;
            display: block;
            animation: fadeIn 1.5s ease-out;
        }

        /* The Bold Headline (As per image) */
        .hero-headline {
            font-family: 'Oswald', sans-serif !important;
            font-size: clamp(64px, 12vw, 100px);
            font-weight: 400;
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 32px;
            letter-spacing: -0.01em;
            overflow: hidden;
        }

        .hero-headline span {
            display: block;
            transform: translateY(100%);
            animation: revealUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
        }

        /* Breadcrumb Nav - Minimalist Luxury */
        .breadcrumb-list {
            display: inline-flex;
            list-style: none;
            align-items: center;
            gap: 16px;
            font-family: 'Inter', sans-serif;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            transition: all 0.4s ease;
        }

        .breadcrumb-item a:hover {
            color: #ffffff;
            letter-spacing: 0.25em;
        }

        .divider {
            color: rgba(255, 255, 255, 0.2);
            font-size: 12px;
            font-weight: 300;
        }

        .active-page {
            color: #ffffff;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            position: relative;
        }

        .active-page::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 1.5px;
            background: #ffffff;
        }

        /* Keyframes */
        @keyframes subtleZoom {
            from { transform: scale(1.05); }
            to { transform: scale(1.15); }
        }

        @keyframes revealUp {
            to { transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .agency-hero { height: 350px; }
            .hero-headline { font-size: 72px; }
            .label-text { letter-spacing: 0.4em; font-size: 9px; }
            .breadcrumb-list { gap: 12px; }
            .breadcrumb-item a, .active-page { font-size: 11px; letter-spacing: 0.15em; }
        }

        @media (max-width: 480px) {
            .agency-hero { height: 300px; }
            .hero-headline { font-size: 55px; }
            .breadcrumb-list { flex-wrap: wrap; justify-content: center; gap: 8px; }
        }
















/* process section css  */

      :root {
        --prm-bg: #ffffff;
        --prm-accent: #ff6b00;
        --prm-accent-light: #f5f3ff;
        --prm-text-dark: #0f172a;
        --prm-text-muted: #64748b;
        --prm-card-shadow:
          0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --prm-hover-shadow:
          0 20px 25px -5px rgb(139 92 246 / 0.1),
          0 8px 10px -6px rgb(139 92 246 / 0.1);
        --prm-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      
      

      #prm-process-wrapper-99 {
        padding: 120px 20px;
        max-width: 1240px;
        margin: 0 auto;
        position: relative;
        
      }

      /* Abstract Background Decor */
      #prm-process-wrapper-99::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background:
          radial-gradient(
            circle at 10% 20%,
            rgba(139, 92, 246, 0.03) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 90% 80%,
            rgba(139, 92, 246, 0.03) 0%,
            transparent 50%
          );
        z-index: -1;
      }

      /* Process Grid */
      .prm-process-grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        perspective: 1000px;
      }

      /* Advanced Card Design */
      .prm-step-card-unique {
        background: #ffffff;
        /* border-radius: 30px; */
        padding: 50px 40px;
        text-align: left;
        transition: var(--prm-transition);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(241, 245, 249, 1);
        box-shadow:
          rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
          rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        display: flex;
        flex-direction: column;
        cursor: pointer;
      }

      .prm-step-card-unique {
        animation: floating 6s ease-in-out infinite;
      }
      .prm-step-card-unique:nth-child(2) {
        animation-delay: 1s;
      }
      .prm-step-card-unique:nth-child(3) {
        animation-delay: 2s;
      }

      .prm-step-card-unique:hover {
        animation-play-state: paused;
        /* transform: translateY(-15px) scale(1.02); */
        box-shadow: var(--prm-hover-shadow);
        border-color: rgba(139, 92, 246, 0.3);
      }

      /* Step Watermark Background */
      .prm-step-watermark {
        position: absolute;
        bottom: -20px;
        right: 10px;
        font-size: 8rem;
        font-weight: 900;
        color: rgba(139, 92, 246, 0.04);
        user-select: none;
        z-index: 0;
        transition: var(--prm-transition);
      }

      .prm-step-card-unique:hover .prm-step-watermark {
        transform: scale(1.1) translateY(-10px);
        color: rgba(139, 92, 246, 0.07);
      }

      /* Top-Right Number Circle - Enhanced */
      .prm-number-circle {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, var(--prm-accent), #ff6b00);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.2rem;
        padding-top: 10px;
        padding-right: 10px;
        z-index: 2;
        box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        transition: var(--prm-transition);
      }

      .prm-step-card-unique:hover .prm-number-circle {
        transform: rotate(15deg) scale(1.1);
      }

      /* Icon Container - Advanced Styling */
      .prm-icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
        background: var(--prm-accent-light);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--prm-accent);
        position: relative;
        z-index: 1;
        transition: var(--prm-transition);
      }

      .prm-icon-box i {
        font-size: 2rem;
      }

      .prm-step-card-unique:hover .prm-icon-box {
        background: var(--prm-accent);
        color: white;
        transform: rotateY(180deg);
      }

      /* Typography Styling */
      .prm-step-card-title {
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 15px;
        color: var(--prm-text-dark);
        z-index: 1;
      }

      .prm-step-card-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--prm-text-muted);
        z-index: 1;
      }

      /* Responsive Breakpoints */
      @media (max-width: 1024px) {
        .prm-process-grid-layout {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
        }
      }

      @media (max-width: 768px) {
        .prm-process-grid-layout {
          grid-template-columns: 1fr;
        }
        .prm-step-card-unique {
          animation: none; /* Mobile par clean feel ke liye */
          padding: 40px 30px;
        }
        #prm-process-wrapper-99 {
          padding: 60px 20px;
        }
      }

















/* servies section css start  */



/* Custom Reset & Variables */
        :root {
            --wd-primary-bg: #ffffff;
            --wd-accent-color: #000000;
            --wd-text-muted: #4b5563;
            --wd-border-radius: 24px;
            --wd-container-width: 1200px;
        }

        #unique-wd-section-wrapper {
            margin: 0;
            padding: 60px 20px;
            background-color: var(--wd-primary-bg);
            font-family: 'Oswald', sans-serif !important;
            color: var(--wd-accent-color);
            display: flex;
            justify-content: center;
        }

        .wd-main-container {
            width: 100%;
            max-width: var(--wd-container-width);
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Header Styling */
        #wd-header-container-01 {
            max-width: 1200px;
        }

        .wd-title-bold {
            font-size: clamp(2.2rem, 7vw, 2.5rem);
            font-weight: 900;
            text-transform: uppercase;
            margin: 0 0 12px 0;
            line-height: 1.1;
            letter-spacing: -1.5px;
        }

        .wd-description-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--wd-text-muted);
            max-width: 100%;
            margin: 0;
        }

        /* Image Container - Adjusted Height */
        #wd-visual-frame-id {
            width: 100%;
            max-height: 500px; /* Desktop height limit */
            position: relative;
            overflow: hidden;
            border-radius: var(--wd-border-radius);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
        }

        .wd-hero-media {
            width: 100%;
            height: 500px; /* Fixed height for consistency */
            display: block;
            object-fit: cover; /* Important: prevents stretching */
            object-position: center 20%; /* Adjusts focus on faces */
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        #wd-visual-frame-id:hover .wd-hero-media {
            transform: scale(1.03);
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            #unique-wd-section-wrapper {
                padding: 40px 16px;
            }

            .wd-title-bold {
                letter-spacing: -1px;
            }

            #wd-visual-frame-id {
                max-height: 350px; /* Mobile height limit */
                border-radius: 16px;
            }

            .wd-hero-media {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .wd-title-bold {
                font-size: 2rem;
            }

            #wd-visual-frame-id {
                max-height: 280px; /* Small mobile height */
            }

            .wd-hero-media {
                height: 280px;
            }
        }








        
        :root {
            --wd-primary-bg: #ffffff;
            --wd-accent-color: #000000;
            --wd-text-muted: #4b5563;
            --wd-yellow-accent: #eab308;
            --wd-container-width: 1200px;
        }

        

        

        /* Title Styling */
        .wd-title-bold {
            font-size: clamp(2.2rem, 7vw, 3rem);
            font-weight: 900;
            text-transform: uppercase;
            margin: 0 0 12px 0;
            line-height: 1.1;
            letter-spacing: -1.5px;
        }

        /* What's Included Section */
        #wd-included-section-id {
            margin-top: 20px;
        }

        .wd-sub-heading {
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
        }

        .wd-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .wd-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .wd-feature-icon {
            color: var(--wd-yellow-accent);
            font-weight: 900;
            font-size: 1.2rem;
            line-height: 1.2;
            flex-shrink: 0;
        }

        .wd-feature-label {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.4;
        }

        /* Service Overview Section */
        #wd-overview-section-id {
            border-top: 1px solid #f0f0f0;
            padding-top: 50px;
        }

        .wd-overview-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .wd-overview-para {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--wd-text-muted);
            margin: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .wd-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            #unique-wd-section-wrapper {
                padding: 40px 16px;
            }

            .wd-features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .wd-sub-heading {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .wd-title-bold {
                font-size: 2rem;
            }
            
            .wd-overview-para {
                font-size: 0.95rem;
            }
        }
















/* 2 img section  */


        :root {
            --wd-gal-bg: #ffffff;
            --wd-gal-text: #000000;
            --wd-gal-muted: #4b5563;
            --wd-gal-radius: 24px;
            --wd-gal-width: 1200px;
        }

        #wd-gal-section-wrapper {
            padding: 60px 20px;
            background-color: var(--wd-gal-bg);
           
            color: var(--wd-gal-text);
            display: flex;
            justify-content: center;
        }

        .wd-gal-container {
            width: 100%;
            max-width: var(--wd-gal-width);
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* --- Dual Image Gallery --- */
        #wd-gal-dual-display {
            display: flex;
            gap: 30px;
            width: 100%;
        }

        .wd-gal-column {
            flex: 1;
            /* border-radius: var(--wd-gal-radius); */
            overflow: hidden;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        }

        .wd-gal-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .wd-gal-column:hover .wd-gal-img {
            transform: scale(1.05);
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            #wd-gal-section-wrapper {
                padding: 40px 16px;
            }

            #wd-gal-dual-display {
                flex-direction: column;
                gap: 20px;
            }

            .wd-gal-img {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .wd-gal-img {
                height: 250px;
            }
        }











/* Project section  */



        

        :root {
            --primary-accent: #ff6b00; /* Neon Lime from original design */
            --bg-white: #ffffff;
            --text-dark: #1a1a1a;
            --card-shadow: 0 15px 35px rgba(0,0,0,0.1);
            --border-radius: 24px;
        }

        

        /* Unique Main Container */
        #fm-portfolio-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Grid Layout */
        .fm-project-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        /* Project Card */
        .fm-card-item {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Image Box with Demo Backgrounds */
        .fm-visual-box {
            width: 100%;
            aspect-ratio: 16 / 10;
            background-color: #000;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--card-shadow);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .fm-visual-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9; /* Slightly darker to make it look premium */
            transition: transform 0.6s ease, opacity 0.3s ease;
        }

        .fm-visual-box:hover img {
            transform: scale(1.05);
            opacity: 1;
        }

        /* Info Section */
        .fm-info-bar {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 0 5px;
        }

        .fm-text-group {
            flex: 1;
        }

        /* Category Label */
        .fm-category-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 800;
            color: var(--text-dark);
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .fm-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary-accent);
            border-radius: 50%;
        }

        .fm-line {
            width: 18px;
            height: 2px;
            background-color: var(--primary-accent);
        }

        /* Main Title */
        .fm-project-title {
            font-size: 20px;
            font-weight: 900;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

        /* Action Link */
        .fm-action-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            cursor: pointer;
            margin-bottom: 5px;
        }

        .fm-btn-text {
            font-weight: 800;
            font-size: 14px;
            color: var(--text-dark);
            text-transform: uppercase;
            transition: color 0.3s;
        }

        /* Circle Icon */
        .fm-circle-arrow {
            width: 52px;
            height: 52px;
            background-color: var(--primary-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(212, 255, 0, 0.3);
        }

        .fm-action-btn:hover .fm-circle-arrow {
            transform: scale(1.1);
            background-color: #000;
            color: var(--primary-accent);
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .fm-project-title { font-size: 22px; }
        }

        @media (max-width: 768px) {
            .fm-project-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .fm-visual-box { aspect-ratio: 4 / 3; }
        }

        @media (max-width: 480px) {
            
            .fm-info-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .fm-action-btn {
                width: 100%;
                justify-content: space-between;
                padding: 15px 20px;
                background: #f4f4f4;
                border-radius: 50px;
            }
            .fm-project-title { font-size: 24px; }
        }













                /* Base Reset */
       

        /* Seamless Main Container */
        .unique-contact-wrapper {
            max-width: 1100px;
            width: 100%;
            display: flex;
            background: transparent;
            overflow: visible;
            margin: 0 auto;
            margin-top: 50px;
        }

        /* Left Side: Info */
        .info-panel-section {
            flex: 1;
            padding: 40px 60px 40px 0;
            display: flex;
            flex-direction: column;
        }

        .section-badge-text {
            color: #ff6b00;
            text-transform: uppercase;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: block;
        }

        .main-headline-txt {
            font-size: 32px;
            line-height: 1.1;
            font-weight: 800;
            color: #111827;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .contact-card-item {
            background: #f3f4f6;
            padding: 20px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 16px;
            max-width: 380px;
        }

        .icon-box-circle {
            width: 44px;
            height: 44px;
            background: #111827;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff6b00;
            flex-shrink: 0;
        }

        .card-content-data h4 {
            font-size: 14px;
            color: #6b7280;
            font-weight: 600;
        }

        .card-content-data p {
            font-size: 15px;
            color: #111827;
            font-weight: 700;
        }

        /* SOCIAL ICONS ALIGNED IN ONE LINE */
        .social-links-footer {
            margin-top: auto;
            padding-top: 40px;
            display: flex;
            align-items: center;
            gap: 20px; /* Space between label and icons */
        }

        .social-label-head {
            font-size: 14px;
            font-weight: 800;
            color: #111827;
            text-transform: uppercase;
            white-space: nowrap; /* Keeps label on one line */
        }

        .social-icons-group {
            display: flex;
            gap: 12px;
        }

        .social-btn-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f3f4f6; /* Light grey circle background */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111827;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-btn-link:hover {
            background: #e5e7eb;
            transform: scale(1.05);
        }

        /* Right Side: Form */
        .form-panel-section {
            flex: 1.2;
            padding: 40px 40px;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            
        }

        .contact-grid-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .input-field-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input-field-group label {
            font-size: 13px;
            font-weight: 800;
            color: #111827;
            text-transform: uppercase;
        }

        .input-element-style {
            padding: 18px 24px;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background: #fcfcfc;
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
        }

        .input-element-style:focus {
            border-color: #ff6b00;
            background: #fff;
            box-shadow: 0 4px 12px rgba(132, 204, 22, 0.1);
        }

        .textarea-element-style {
            resize: none;
            height: 180px;
        }

        .submit-btn-action {
            background-color: #ff6b00;
            color: #000;
            border: none;
            padding: 20px 40px;
            border-radius: 100px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-transform: uppercase;
            margin-top: 30px;
            transition: all 0.3s ease;
        }

        .submit-btn-action:hover {
            background-color: #ff6b00;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(163, 230, 53, 0.2);
        }

        /* Mobile Responsive View */
        @media (max-width: 900px) {
            .unique-contact-wrapper {
                flex-direction: column;
            }
            .info-panel-section, .form-panel-section {
                padding: 40px 0;
            }
            .main-headline-txt {
                font-size: 32px;
            }
        }

        @media (max-width: 600px) {
            .contact-grid-row {
                grid-template-columns: 1fr;
            }
            .unique-contact-wrapper{
                padding: 20px;
            }
            .form-panel-section{
                padding: 20px;
            }
            .social-links-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        .icon-svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }