/* =========================================================
   GLOBAL RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* prevent side scroll on mobile */
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f5f7;
    color: #000000;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Space for fixed header (topbar + nav) */
.aa-main {
    padding-top: 120px;
}

/* =========================================================
   COLOR TOKENS
   ========================================================= */
:root {
    --aa-blue: #2563eb;
    --aa-sky:  #0ea5e9;
    --aa-teal: #14b8a6;
    --aa-ink:  #0f172a;
    --aa-soft-bg:    #f9fafb;
    --aa-soft-border:#e5e7eb;
}

/* =========================================================
   TOPBAR + HEADER + NAVIGATION
   ========================================================= */

/* Wrapper (fixed-top) */
.aa-site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1030;
}

/* Top strip */
.aa-topbar {
    padding: 0.25rem 0;
    background: linear-gradient(90deg, rgba(37, 99, 235, 1.08), rgba(56, 189, 248, 1.18));
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    font-size: 1.0rem;
    color: #000000;
}

.aa-topbar-left,
.aa-topbar-right {
    padding: 0.4rem 0;
	font-size:15px;
}

.aa-top-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1e293b;
    background: linear-gradient(90deg, #e0f2fe, #dbeafe);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Navbar band */
.aa-navbar {
    padding: 0.45rem 0;
    backdrop-filter: blur(8px);
}

/* Brand (logo text) */
.aa-logo-main {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--aa-ink);
}

.aa-logo-sub {
    font-size: 0.75rem;
    color: #64748b;
}

/* Real Logo Image */
.aa-logo-img {
    height: 42px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Nav links */
.aa-nav-list .nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    color: #1e293b;
    position: relative;
    text-transform: none;
}

.aa-nav-list .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aa-blue), var(--aa-sky));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease-out;
}

.aa-nav-list .nav-link:hover,
.aa-nav-list .nav-link:focus {
    color: var(--aa-blue);
}

.aa-nav-list .nav-link.active {
    color: var(--aa-blue);
}

.aa-nav-list .nav-link.active::after,
.aa-nav-list .nav-link:hover::after {
    transform: scaleX(1);
}

/* Header CTA button */
.aa-nav-cta {
    padding: 0.65rem 1.1rem;
    border-radius: 99px;
    font-size: 1.25rem;
    font-weight: 400;
    border: none;
    background: linear-gradient(90deg, var(--aa-blue), var(--aa-sky));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.aa-nav-cta:hover {
    color: #ffffff;
    opacity: 0.96;
}

/* Toggler */
.aa-nav-toggle,
.navbar-toggler {
    border-radius: 999px;
    border-color: rgba(148, 163, 184, 0.6);
}

.navbar-toggler-icon {
    background-image: none;
    width: 1.3rem;
    height: 1.3rem;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: #111827;
}

.navbar-toggler-icon::before {
    top: 0.3rem;
}
.navbar-toggler-icon::after {
    bottom: 0.3rem;
}

/* =========================================================
   GENERIC HERO SECTION (text layout)
   ========================================================= */
.aa-hero {
    min-height: 76vh;
    padding: 5rem 0 4rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.18), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.18), transparent 55%),
        #f9fafb;
}

.aa-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.95rem;
    border-radius: 999px;
    background: #eef2ff;
    border: 1px solid #bfdbfe;
    font-size: 0.72rem;
    color: #1d4ed8;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.aa-hero-title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.3rem);
    font-weight: 700;
    line-height: 1.18;
    color: #0f172a;
}

.aa-hero-subtitle {
    color: #4b5563;
    max-width: 38rem;
    font-size: 0.95rem;
}

/* Buttons */
.aa-btn-primary {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border: none;
    color: #ffffff;
    padding: 0.7rem 1.7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aa-btn-primary:hover {
    opacity: 0.95;
    color: #ffffff;
}

.aa-btn-outline {
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    color: #111827;
    font-size: 0.9rem;
    padding: 0.7rem 1.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #ffffff;
}

.aa-btn-outline:hover {
    border-color: #2563eb;
    color: #1d4ed8;
}

/* “Why us” hero card */
.aa-hero-card {
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.1), transparent 60%),
        #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.aa-hero-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 70%);
    top: -60px;
    right: -60px;
}

.aa-hero-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.5);
    pointer-events: none;
}

.aa-hero-card-title {
    font-size: 0.96rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

.aa-hero-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
    font-size: 0.86rem;
    color: #4b5563;
    position: relative;
    z-index: 1;
}

.aa-hero-list li {
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.aa-hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #a855f7);
}

.aa-hero-tag {
    display: inline-flex;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px dashed #22c55e;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #166534;
    background: #ecfdf5;
    margin-top: 0.8rem;
    position: relative;
    z-index: 1;
}

/* =========================================================
   GENERIC SECTIONS & TYPOGRAPHY
   ========================================================= */
.aa-section {
    padding: 4rem 0;
}

.aa-section-light {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.aa-section-head {
    max-width: 680px;
    margin: 0 auto;
}

.aa-section-kicker {
    display: inline-flex;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2563eb;
}

.aa-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0f172a;
}

.aa-section-subtitle {
    font-size: 0.95rem;
    color: #4b5563;
}

/* Chips */
.aa-chip-row {
    display: inline-flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.aa-chip {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.75rem;
    color: #4b5563;
    background: #ffffff;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.aa-service-card {
    padding: 1.4rem 1.3rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.aa-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    border-color: #cbd5f5;
}

.aa-service-pill {
    display: inline-flex;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 0.72rem;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.55rem;
}

.aa-service-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.3rem;
}

.aa-service-text {
    font-size: 0.86rem;
    color: #4b5563;
    margin-bottom: 0.7rem;
}

.aa-service-list {
    list-style: none;
    margin: 0;
    padding-left: 0;
    font-size: 0.84rem;
    color: #111827;
}

.aa-service-list li {
    margin-bottom: 0.28rem;
    padding-left: 1rem;
    position: relative;
}

.aa-service-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* =========================================================
   STATS / HIGHLIGHT CARDS
   ========================================================= */
.aa-stat-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.aa-stat-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--aa-blue);
}

.aa-stat-label {
    font-size: 0.9rem;
    color: #374151;
}

.aa-stat-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-top: 0.3rem;
}

/* =========================================================
   CONTACT CARD
   ========================================================= */
.aa-contact-card {
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    background: #ffffff;
    border: 1px dashed #e5e7eb;
    color: #111827;
}

/* =========================================================
   HERO CAROUSEL (HOME BANNER)
   ========================================================= */
.aa-hero-carousel-wrap {
    padding: 0.5rem 0 2.5rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.16), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.18), transparent 50%),
        linear-gradient(180deg, #f9fafb, #eff6ff);
}

.aa-hero-carousel {
    position: relative;
}

.aa-hero-slide {
    min-height: 360px;
}

/* Image/video element in slides */
.aa-hero-media {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

/* Wrapper for media + overlay */
.aa-hero-media-wrap {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.aa-hero-media-wrap .aa-hero-media {
    height: 100%;
    max-height: 430px;
}

/* Overlays */
.aa-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 1.8rem 2rem;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.84), transparent 55%);
    color: #f9fafb;
}

.aa-hero-overlay-right {
    background: linear-gradient(270deg, rgba(15, 23, 42, 0.84), transparent 55%);
    justify-content: flex-end;
}

.aa-hero-overlay-inner {
    max-width: 480px;
}

.aa-hero-overlay-inner .aa-pill {
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    border-radius: 999px;
    padding: 0.1rem 0.7rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aa-hero-overlay-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.aa-hero-overlay-text {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

/* Carousel indicators & arrows */
.aa-hero-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background-color: #cbd5f5;
    opacity: 1;
}

.aa-hero-carousel .carousel-indicators .active {
    width: 18px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
}

.aa-hero-carousel .carousel-control-prev-icon,
.aa-hero-carousel .carousel-control-next-icon {
    filter: invert(1) grayscale(1);
}

/* =========================================================
   FOOTER (CLEAN CARD STYLE)
   ========================================================= */
.aa-footer {
    margin-top: 3rem;
    color: #0f172a;
}

.aa-footer-top {
    padding: 2.5rem 0 2.2rem;
    background:
        radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(96, 165, 250, 0.22), transparent 60%),
        #8ac5d1;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.aa-footer-panel {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 1.8rem 1.9rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
    margin-right: -85px;
    margin-left: -90px;
}

.aa-footer-divider {
    border-color: rgba(203, 213, 225, 0.8);
    margin: 1.3rem 0 1.1rem;
}

.aa-footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 0.7rem;
}

.aa-footer-text {
    font-size: 0.85rem;
    color: #1e293b;
}

.aa-footer-links,
.aa-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aa-footer-links li {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.aa-footer-links a {
    color: #1f2933;
    text-decoration: none;
}

.aa-footer-links a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.aa-footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.aa-footer-label {
    min-width: 70px;
    font-weight: 600;
    color: #0f172a;
}

/* Footer CTA button */
.aa-footer-cta {
    margin-top: 0.4rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
}

.aa-footer-cta:hover {
    color: #ffffff;
    opacity: 0.97;
}

/* Bottom strip */
.aa-footer-bottom {
    padding: 0.75rem 0;
    background: linear-gradient(90deg, #020617, #0f172a);
    color: #e5e7eb;
    font-size: 0.8rem;
}

/* =========================================================
   MEGA MENU — BASE
   ========================================================= */
.aa-megamenu {
    padding: 1.4rem 1.7rem;
    border-radius: 18px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
    background: #ffffff;
}

/* Fix Bootstrap row negative margins inside dropdown */
.aa-megamenu .row {
    margin-left: 0;
    margin-right: 0;
}

.aa-megamenu .row > [class^="col-"],
.aa-megamenu .row > [class*=" col-"] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.aa-mega-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.aa-mega-underline {
    margin: 0.25rem 0 0.7rem;
    border-color: rgba(148, 163, 184, 0.7);
}

.aa-mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aa-mega-list li {
    margin-bottom: 0.25rem;
}

.aa-mega-list a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: #111827;
    padding: 0.25rem 0;
    text-decoration: none;
}

.aa-mega-list a i {
    font-size: 1rem;
    color: #2563eb;
}

.aa-mega-list a:hover {
    color: #2563eb;
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */

/* Desktop & large screens */
@media (min-width: 992px) {

    .aa-main {
        padding-top: 135px;
    }

    .aa-mega-nav {
        position: static;
    }

    .aa-mega-nav .dropdown-menu.aa-megamenu {
        min-width: 780px;
        max-width: 980px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0.6rem;
    }

    .aa-mega-nav:hover > .dropdown-menu {
        display: block;
    }
}

/* Mobile & Tablet */
@media (max-width: 991.98px) {

    .aa-main {
        padding-top: 135px;
    }

    .aa-hero-carousel-wrap {
        padding-top: 3.8rem;
    }

    .aa-hero-overlay,
    .aa-hero-overlay-right {
        padding: 1.5rem;
    }

    .aa-hero-overlay-title {
        font-size: 1.2rem;
    }

    /* Collapsed navbar as white card */
    .navbar-collapse {
        background: #ffffff;
        border-radius: 14px;
        padding: 0.8rem 0.9rem;
        margin-top: 0.5rem;
        box-shadow: 0 15px 34px rgba(15,23,42,0.12);
    }

    /* Make dropdown full width, no overflow */
    .navbar-collapse .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0.4rem !important;
        border-radius: 12px;
        border: 1px solid rgba(226,232,240,0.9);
        box-shadow: none;
        left: 0 !important;
        right: 0 !important;
    }

    /* Mega menu inside mobile collapse */
    .navbar-collapse .aa-megamenu {
        background: #f8fafc;
        padding: 1rem !important;
        border-radius: 12px !important;
        transform: none !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .aa-megamenu .row > div {
        margin-bottom: 1rem;
    }

    .aa-mega-title {
        font-size: 0.82rem;
        margin-top: 0.4rem;
    }

    .aa-mega-list a {
        font-size: 0.82rem;
        padding: 0.2rem 0;
    }

    .aa-nav-list .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.6rem;
    }

    .dropdown-toggle::after {
        margin-left: 0.35rem;
    }
}

@media (max-width: 767.98px) {

    .aa-main {
        padding-top: 120px;
    }

    .aa-hero {
        min-height: auto;
    }

    .aa-hero-card {
        margin-top: 1.5rem;
    }

    .aa-hero-media-wrap {
        min-height: 260px;
    }

    .aa-hero-overlay,
    .aa-hero-overlay-right {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), transparent 55%);
        align-items: flex-end;
        padding: 1.2rem;
    }

    .aa-hero-overlay-inner {
        max-width: 100%;
    }

    .aa-footer-panel {
        padding: 1.3rem 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }

    .aa-footer-bottom .container {
        justify-content: center !important;
        text-align: center;
    }
}
/* ============================================
   PARTNER / ASSOCIATES CARD (ABOUT SECTION)
   ============================================ */
.aa-partner-panel {
    position: relative;
    border-radius: 20px;
    padding: 1.6rem 1.5rem 1.8rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.16), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.18), transparent 60%),
        #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.aa-partner-panel::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 16px;
    border: 1px dashed rgba(148, 163, 184, 0.55);
    pointer-events: none;
}

.aa-partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: #ecfeff;
    border: 1px solid #a5f3fc;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.aa-partner-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0.6rem;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.aa-partner-text {
    font-size: 0.88rem;
    color: #4b5563;
    position: relative;
    z-index: 1;
}

/* Partner names as chips */
.aa-partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.2rem;
    position: relative;
    z-index: 1;
}

.aa-partner-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    border: 1px solid #bfdbfe;
    color: #1f2937;
    white-space: nowrap;
}

.aa-partner-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    margin-right: 0.35rem;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
}

.aa-partner-footer {
    position: relative;
    z-index: 1;
}

.aa-partner-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    border: 1px dashed #22c55e;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #166534;
    background: #ecfdf5;
}

/* Responsive tweaks for partner card */
@media (max-width: 767.98px) {
    .aa-partner-panel {
        margin-top: 0.5rem;
        padding: 1.4rem 1.2rem 1.5rem;
        box-shadow: 0 12px 26px rgba(15,23,42,0.12);
    }

    .aa-partner-list {
        gap: 0.3rem;
    }

    .aa-partner-chip {
        font-size: 0.76rem;
        padding: 0.22rem 0.65rem;
    }
}
/* =============================
   SERVICES BANNER
============================= */
.aa-services-banner {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 60%, #14b8a6 100%);
    color: #ffffff;
    position: relative;
}

.aa-banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aa-banner-subtitle {
    max-width: 480px;
    color: #f1f5f9;
}

.aa-banner-img {
    max-width: 360px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* =============================
   SERVICE ICON
============================= */
.aa-service-icon {
    font-size: 2.2rem;
    color: var(--aa-blue);
    margin-bottom: 0.4rem;
}

/* =============================
   CTA BANNER
============================= */
.aa-cta-banner {
    padding: 3.2rem 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #f8fafc;
}

.aa-cta-title {
    font-size: 1.9rem;
    font-weight: 700;
}

.aa-cta-text {
    font-size: 1rem;
    color: #e2e8f0;
}
