 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e293b;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* Classic yet eye-catching container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header / Navigation - clean Google-ish vibe */
        header {
            padding: 1.2rem 0;
            border-bottom: 1px solid #eef2f6;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(2px);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #0f2b3d, #1e4a6e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #3b82f6;
            display: block;
            letter-spacing: 0;
        }

        .nav-links a {
            margin-left: 2rem;
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #0f2b3d;
            border-bottom: 2px solid #3b82f6;
            padding-bottom: 4px;
        }
         .active {
            color: #0f2b3d;
            border-bottom: 2px solid #3b82f6;
            padding-bottom: 4px;
        }

        /* Hero section: "Problem → AI Solution" classic big text */
        .hero {
            padding: 5rem 0 3rem 0;
            text-align: center;
            background: #fafcff;
            background: linear-gradient(145deg, #0c4a6e, #0284c7);
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            max-width: 800px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(145deg, #ebf1f5, #79c1e6);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero .highlight {
            background: #eef2ff;
            color: #1e40af;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            color: #2c3e50;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #0f2b3d;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 48px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #1e4a6e;
            transform: scale(1.02);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid #0f2b3d;
            padding: 0.8rem 2rem;
            border-radius: 48px;
            font-weight: 600;
            transition: 0.2s;
            text-decoration: none;
            color: #0f2b3d;
        }

        .btn-outline:hover {
            background: #f1f5f9;
            border-color: #0284c7;
        }

        /* Infographic section — classic timeline / diagram style */
        .infographic {
            padding: 4rem 0;
            background: #ffffff;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .section-sub {
            text-align: center;
            color: #475569;
            max-width: 680px;
            margin: 0 auto 3rem auto;
        }

        .grid-infographic {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .infographic-card {
            background: #f8fafc;
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.25s;
            border: 1px solid #e9eef3;
            box-shadow: 0 5px 12px rgba(0,0,0,0.02);
        }

        .infographic-card:hover {
            transform: translateY(-6px);
            border-color: #b9d0f0;
            box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
        }

        .icon-circle {
            background: #e6f0ff;
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .icon-circle i {
            font-size: 2.4rem;
            color: #1e4a6e;
        }

        .infographic-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .infographic-card p {
            color: #334155;
            margin-bottom: 1rem;
        }

        .step-number {
            font-weight: 800;
            background: white;
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px;
            margin-bottom: 1rem;
            border: 1px solid #cbd5e1;
            font-size: 1.2rem;
        }

        /* Problem solving process flow (classic infographic style) */
        .process-flow {
            background: #f1f5f9;
            padding: 4rem 0;
            border-radius: 48px;
            margin: 2rem 0;
        }

        .flow-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .flow-item {
            background: white;
            border-radius: 2rem;
            padding: 1.5rem 1.2rem;
            flex: 1;
            min-width: 180px;
            text-align: center;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.03);
        }

        .flow-arrow {
            font-size: 2rem;
            align-self: center;
            color: #3b82f6;
        }

        @media (max-width: 760px) {
            .flow-arrow { display: none; }
            .flow-steps { flex-direction: column; align-items: stretch; }
        }

        /* Classic / Eye-catching showcase section */
        .showcase {
            padding: 4rem 0;
        }

        .two-column {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }

        .showcase-text {
            flex: 1;
        }

        .showcase-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .showcase-text p {
            margin-bottom: 1rem;
            color: #2d3a4b;
        }

        .showcase-visual {
            flex: 1;
            background: linear-gradient(145deg, #eef2ff, #ffffff);
            border-radius: 2rem;
            padding: 2rem;
            text-align: center;
            border: 1px solid #cbdff2;
        }

        .ai-badge {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Testimonial / trust */
        .testimonial {
            background: #ffffff;
            padding: 3rem 0;
            border-top: 1px solid #edf2f7;
        }

        .quote {
            font-size: 1.2rem;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background: #fafcff;
            padding: 2rem;
            border-radius: 2rem;
            border-left: 6px solid #0f2b3d;
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }

        .footer-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }

        .footer-copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #1e293b;
            font-size: 0.85rem;
        }

        a {
            text-decoration: none;
        }

        /* seo friendly heading hierarchy */
        h2 {
            font-size: 2rem;
            font-weight: 700;
        }
        .attr-nav{
            display: flex;
        }
        .hero-img {
            animation: float 6s ease-in-out infinite;
            position: relative;
        }
        .hero-img:after{
            position: absolute;
    right: 0px;
    bottom: 0px;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    background: url(../../images/2.png) center top / contain no-repeat;
    background-position: center top;
        }

        /* Container styling */
.aih-logo-slider {
  overflow: hidden;
  background: #f8f9fa; /* Match your ah-bg color */
  padding: 60px 0;
}

.marquee {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 40px; /* Space between logos */
  animation: scroll 30s linear infinite;
}

/* Individual Brand Item */
.qty-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: sans-serif;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bg-gradient {
    /* List gradient first, then the image */
    background: linear-gradient(90deg, rgba(43, 77, 255, 0.65) 0%, rgba(62, 0, 167, 0.85) 100%), 
                url('../images/7.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.quick-contact-items {
    padding: 60px 80px; /* Adjusted padding to match visual */
    border-radius: 15px;
    overflow: hidden;
    color: #ffffff; /* Ensures "Need help?" and title are white */
}

/* Styling the "underlined" look from your screenshot */
.quick-contact-items strong {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.sub-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

/* Optional: Pause on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* The Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* Moves exactly half the width (the first set) */
  }
}

.bg-navy-950 {
    --tw-bg-opacity: 1;
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
}

.breduchumb-bg:before{
    content: "";
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg, #0a165e 25.96%, #0a165e99 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

        

        @media (max-width: 640px) {
            .container { padding: 0 1.5rem; }
            .hero h1 { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
        }