/* Prevent any element from causing horizontal scroll */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
       body { 
    font-family: 'Inter', sans-serif; 
}

.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 14rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease-out;
    z-index: 50;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f9fafb;
    color: #3EB489;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.dropdown-container.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        display: none;
        border: none;
        border-radius: 0;
        background: #f9fafb;
    }
    .dropdown-container {
   padding-bottom: 4px;
}
}


/* ===== UNIVERSAL GRADIENTS (All Pages) ===== */
.gradient-bg, .gradient-bg-service {
    background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
}

.gradient-text, .gradient-text-service {
    background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

        
        .gradient-bg {
            background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
        }

        .to-orange-500{
            background: #3EB489 !important;
        }

        .to-red-500{
            background:#3EB489 !important;
        }
        
        .from-orange-500{
            background: #3EB489 !important;
        }

        .bg-orange-500 {
 background: #495981 !important;
}

        .text-orange-600{
            color: #495981 !important;
        }

         /* Visual gradient used for active/hovered card (edit colors here) */
    .card-gradient {
      background:linear-gradient(135deg, #3EB489 0%, #495981 100%);
      color: #fff;
    }

    .pt-22{
        padding-top: 7rem;
    }

     .fade-slide {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }
    .fade-slide-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 1s ease;
    }
    .fade-slide-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 1s ease;
    }
    .visible {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }

    /* Default (non-gradient) card look */
    .card-default {
      background: url(https://performedges.com/wp-content/uploads/2025/08/Untitled-design-72.png) no-repeat;
    background-size: cover;
      color: #1f2937; /* text-gray-800 */
      background-color: #fff;
    }

    /* Icon circle adjustments depending on card type */
    .card-default .icon img {
     
            filter: brightness(140.5);
         
 /* cyan */
    }
    .card-default .icon {
 background: #3EB489; /* light-blue tint */
    }
    .card-gradient .icon {
      background: rgba(255,255,255,0.92); /* near white circle */
      color: #4f46e5; /* indigo-ish for the svg/icon */
    }

    /* Smooth transitions */
    .card {
      transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
    }

    /* subtle rounded band background (the "half-gray background") */
    .gray-band {
      background: #f1f6ff;
    
    }

    .card-shadow{
        box-shadow: 1px 1px 10px 2px #ececec !important;
    }

        
        .gradient-text {
            background:#495981;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(234, 88, 12, 0.25);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease-out;
        }
        
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #3EB489;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(135deg, #3EB489 0%, #3EB489 100%);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
    
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .rocket-animation {
            animation: rocket-fly 4s ease-in-out infinite;
        }
        
        @keyframes rocket-fly {
            0%, 100% { transform: translateY(0px) rotate(-5deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes pulse-glow {
            from { box-shadow: 0 0 20px rgba(234, 88, 12, 0.3); }
            to { box-shadow: 0 0 30px rgba(234, 88, 12, 0.6); }
        }
        
        .tab-button {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .tab-button.active {
            background: linear-gradient(135deg, #3EB489 0%, #3EB489 100%);
            color: white;
        }
        
        .tab-button:not(.active):hover {
            background-color: #495981;
            color: #fff;
            transform: translateY(-2px);
        }
        
        .tab-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .tab-content.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 800;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .ad-float {
            animation: ad-float 6s ease-in-out infinite;
        }
        
        @keyframes ad-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(2deg); }
            66% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        .chart-animation {
            animation: chart-grow 3s ease-out infinite;
        }
        
        @keyframes chart-grow {
            0% { transform: scaleY(0.3); }
            50% { transform: scaleY(1); }
            100% { transform: scaleY(0.8); }
        }
        
        .sparkle {
            animation: sparkle 2s ease-in-out infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        .bounce-in {
            animation: bounce-in 1s ease-out;
        }
        
        @keyframes bounce-in {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .gradient-border {
            background:#495981;
            padding: 2px;
            border-radius: 1rem;
        }
        
        .gradient-border-inner {
            background: white;
            border-radius: 0.875rem;
        }
   

        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(234, 88, 12, 0.25);
        }
        
        .fade-in-about {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .fade-in-about.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left-about {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }
        
        .slide-in-left-about.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right-about {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        
        .slide-in-right-about.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in-about {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease-out;
        }
        
        .scale-in-about.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #3EB489 0%, #495981 100%) ;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgb(135 135 135 / 30%);
        }
        
        .floating-about {
            animation: floating-about 3s ease-in-out infinite;
        }
        
        @keyframes floating-about {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes pulse-glow {
            from { box-shadow: 0 0 20px rgb(135 135 135 / 30%); }
            to { box-shadow: 0 0 30px rgb(135 135 135 / 30%); }
        }
        
        .ad-float-about {
            animation: ad-float-about 6s ease-in-out infinite;
        }
        
        @keyframes ad-float-about {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(2deg); }
            66% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        .sparkle-about {
            animation: sparkle-about 2s ease-in-out infinite;
        }
        
        @keyframes sparkle-about {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        .bounce-in-about {
            animation: bounce-in-about 1s ease-out;
        }
        
        @keyframes bounce-in-about {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        /* Timeline Styles */
        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #3EB489 0%, #3EB489 100%);
            border-radius: 2px;
            transform: translateY(-50%);
        }
        
        .timeline-items {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }
        
        .timeline-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }
        
        .timeline-dot {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #3EB489 0%, #3EB489 100%);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 4px 12px rgb(12 132 234 / 30%);
            z-index: 20;
            position: relative;
            animation: timeline-pulse 2s ease-in-out infinite;
        }
        
        @keyframes timeline-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .timeline-year {
            position: absolute;
            top: -60px;
            font-size: 1.5rem;
            font-weight: 800;
            color: #3EB489;
            white-space: nowrap;
        }
        
        .timeline-content {
            position: absolute;
            top: 40px;
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 280px;
            text-align: center;
            border: 2px solid #495981;
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
        }
        
        .timeline-content h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .timeline-content p {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.5;
        }
        
        /* Responsive Timeline */
        @media (max-width: 768px) {
            .timeline-items {
                flex-direction: column;
                gap: 3rem;
            }
            
            .timeline-line {
                top: 0;
                bottom: 0;
                left: 50%;
                right: auto;
                width: 4px;
                height: auto;
                transform: translateX(-50%);
            }
            
            .timeline-year {
                position: relative;
                top: auto;
                left: -80px;
                margin-bottom: 1rem;
            }
            
            .timeline-content {
                position: relative;
                top: auto;
                left: 40px;
                max-width: 250px;
            }
        }
        
        /* Breadcrumb Styles */
        .breadcrumb-item {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .breadcrumb-item:hover {
            color: #3EB489;
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '>';
            margin: 0 0.75rem;
            color: #9ca3af;
        }
        
        /* Feature Card Styles */
        .feature-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #3EB489 0%, #3EB489 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 4px 12px rgb(12 132 234 / 30%);
            border-color: #495981;
        }
        
        .feature-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #3EB489 0%, #3EB489 100%);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .timeline-section{
            padding-bottom: 16rem !important;        }


            /* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
  background: #3EB489 ;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #3EB489 ;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #3EB489 ;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #495981 ;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


.cta{
    display: grid;
    justify-content: center;
    align-items: center;
}

 .btn-primary-service {
            background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-service::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary-service:hover::before {
            left: 100%;
        }
        
        .btn-primary-service:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(62, 180, 137, 0.4);
        }
        
        .floating-service {
            animation: floating-service 3s ease-in-out infinite;
        }
        
        @keyframes floating-service {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .pulse-glow-service {
            animation: pulse-glow-service 2s ease-in-out infinite alternate;
        }
        
        @keyframes pulse-glow-service {
            from { box-shadow: 0 0 20px rgba(62, 180, 137, 0.3); }
            to { box-shadow: 0 0 30px rgba(62, 180, 137, 0.6); }
        }
        
        .ad-float-service {
            animation: ad-float-service 6s ease-in-out infinite;
        }
        
        @keyframes ad-float-service {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(2deg); }
            66% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        .sparkle-service {
            animation: sparkle-service 2s ease-in-out infinite;
        }
        
        @keyframes sparkle-service {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
        .bounce-in-service {
            animation: bounce-in-service 1s ease-out;
        }
        
        @keyframes bounce-in-service {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .magnet-animation {
            animation: magnet-pull 4s ease-in-out infinite;
        }
        
        @keyframes magnet-pull {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-8px) rotate(-5deg); }
            50% { transform: translateY(-15px) rotate(0deg); }
            75% { transform: translateY(-8px) rotate(5deg); }
        }
        
        .lead-flow {
            animation: lead-flow 5s ease-in-out infinite;
        }
        
        @keyframes lead-flow {
            0%, 100% { transform: translateX(0px) scale(1); }
            25% { transform: translateX(10px) scale(1.1); }
            50% { transform: translateX(0px) scale(1); }
            75% { transform: translateX(-10px) scale(1.1); }
        }
        
        .funnel-animation {
            animation: funnel-flow 3s ease-in-out infinite;
        }
        
        @keyframes funnel-flow {
            0%, 100% { transform: scaleY(1) scaleX(1); }
            50% { transform: scaleY(1.1) scaleX(0.9); }
        }
        
        /* Breadcrumb Styles */
        .breadcrumb-item {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .breadcrumb-item:hover {
            color: #3EB489;
        }
        
        .breadcrumb-item:not(:last-child)::after {
            content: '>';
            margin: 0 0.75rem;
            color: #9ca3af;
        }
        
        /* Service Card Styles */
        .service-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(62, 180, 137, 0.2);
            border-color: rgba(62, 180, 137, 0.3);
        }
        
        .service-number {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-number {
            transform: scale(1.1) rotate(10deg);
        }
        
        /* Lead Generation Image Styles */
        .lead-gen-image {
            background: linear-gradient(135deg, rgba(62, 180, 137, 0.1) 0%, rgba(73, 89, 129, 0.1) 100%);
            border-radius: 2rem;
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .lead-gen-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(62, 180, 137, 0.1) 0%, transparent 70%);
            animation: rotate-bg 20s linear infinite;
        }
        
        @keyframes rotate-bg {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .lead-magnet-icon {
            font-size: 8rem;
            background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 10;
        }

        .retargeting-image {
    background: linear-gradient(135deg, rgba(62, 180, 137, 0.1) 0%, rgba(73, 89, 129, 0.1) 100%);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.retargeting-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(62, 180, 137, 0.1) 0%, transparent 70%);
    animation: rotate-bg 25s linear infinite;
}

.retargeting-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 10;
}

.target-animation {
    animation: target-pulse 3s ease-in-out infinite;
}

@keyframes target-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.retargeting-circles {
    animation: retargeting-spin 8s linear infinite;
}

@keyframes retargeting-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Additional styles for programmatic advertising page */
.programmatic-image {
    background: linear-gradient(135deg, rgba(62, 180, 137, 0.1) 0%, rgba(73, 89, 129, 0.1) 100%);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.programmatic-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(62, 180, 137, 0.1) 0%, transparent 70%);
    animation: rotate-bg 30s linear infinite;
}

.programmatic-icon {
    font-size: 8rem;
    background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 10;
}

.automation-animation {
    animation: automation-pulse 2s ease-in-out infinite;
}

@keyframes automation-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.data-flow {
    animation: data-stream 4s ease-in-out infinite;
}

@keyframes data-stream {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

.data-pulse {
    animation: data-pulse 1.5s ease-in-out infinite;
}

@keyframes data-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Base styles */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating animations */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.sparkle {
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

.ad-float {
    animation: ad-float 5s ease-in-out infinite;
}

@keyframes ad-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(-5px) rotate(-3deg); }
}

.lead-flow {
    animation: lead-flow 8s linear infinite;
}

@keyframes lead-flow {
    0% { transform: translateX(0px) scale(1); }
    25% { transform: translateX(20px) scale(1.2); }
    50% { transform: translateX(0px) scale(1); }
    75% { transform: translateX(-20px) scale(0.8); }
    100% { transform: translateX(0px) scale(1); }
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #495981 0%, #3EB489 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(62, 180, 137, 0.3);
}

/* Breadcrumb styles */
.breadcrumb-item {
    position: relative;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #9CA3AF;
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(62, 180, 137, 0.15);
}

/* Checkbox and radio custom styles */
input[type="checkbox"]:checked {
    background-color: #3EB489;
    border-color: #3EB489;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating, .sparkle, .ad-float, .lead-flow {
        display: none;
    }
}



/* Base styles */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating animations */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.sparkle {
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

.ad-float {
    animation: ad-float 5s ease-in-out infinite;
}

@keyframes ad-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(-5px) rotate(-3deg); }
}

.lead-flow {
    animation: lead-flow 8s linear infinite;
}

@keyframes lead-flow {
    0% { transform: translateX(0px) scale(1); }
    25% { transform: translateX(20px) scale(1.2); }
    50% { transform: translateX(0px) scale(1); }
    75% { transform: translateX(-20px) scale(0.8); }
    100% { transform: translateX(0px) scale(1); }
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #3EB489 0%, #495981 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(62, 180, 137, 0.3);
}

/* Breadcrumb styles */
.breadcrumb-item {
    position: relative;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #9CA3AF;
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(62, 180, 137, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating, .sparkle, .ad-float, .lead-flow {
        display: none;
    }
    
    .slide-in-left, .slide-in-right {
        transform: translateY(30px);
    }
    
    .slide-in-left.visible, .slide-in-right.visible {
        transform: translateY(0);
    }
    .width-11 {
    width: 6.5rem !important;
}
}


.width-11 {
    width: 7.5rem;
}