/* AION Industrial Premium Dark Theme */
:root {
    --bg-dark: #0f1419;
    --bg-slate: #1a232d;
    --bg-panel: #17202a;
    --glass-surface: rgba(255, 255, 255, 0.04);
    --glass-surface-strong: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --aion-blue: #1f7bb8;
    --aion-cyan: #45b8d8;
    --text-light: #eef3f7;
    --text-muted: #a4b1bd;
    --industrial-line: rgba(129, 162, 189, 0.14);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-top: 76px;
    /* Offset for fixed navbar */
    scroll-behavior: smooth;
    background-image:
        radial-gradient(circle at 14% 16%, rgba(69, 184, 216, 0.06), transparent 34%),
        radial-gradient(circle at 83% 10%, rgba(31, 123, 184, 0.06), transparent 38%);
    background-attachment: fixed;
}

section {
    position: relative;
}

section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, transparent 95%, var(--industrial-line) 96%, transparent 100%);
    background-size: 40px 40px;
    opacity: 0.2;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-light);
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Typography & Gradients */
.text-gradient {
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-custom {
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6,
.hero-insight-card h1,
.hero-insight-card h2,
.hero-insight-card h3,
.hero-insight-card h4,
.hero-insight-card h5,
.hero-insight-card h6 {
    color: var(--text-light);
}

.text-light {
    color: var(--text-light) !important;
}

/* Keep item names in lists white; use muted only for descriptive paragraphs */
ul.text-muted-custom>li {
    color: var(--text-light) !important;
}

.section-anchor {
    scroll-margin-top: 95px;
}

.eyebrow {
    letter-spacing: 0.16rem;
    font-size: 0.74rem;
    color: var(--aion-cyan);
    text-transform: uppercase;
    font-weight: 600;
}

.hero-copy,
.section-copy {
    max-width: 760px;
}

/* UI Elements */
.btn-primary {
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
    border: none;
    color: #072030;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(69, 184, 216, 0.28);
    color: #072030;
    filter: saturate(0.9);
}

.card {
    background: linear-gradient(160deg, var(--glass-surface), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(69, 184, 216, 0.45);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.icon-box i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.76), rgba(18, 18, 18, 0.58));
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.navbar.navbar-scrolled {
    border-bottom-color: rgba(69, 184, 216, 0.25);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.45rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--aion-cyan);
}

.text-aion-cyan {
    color: var(--aion-cyan) !important;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
    transition: width 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
}

.dropdown-menu {
    /* background: linear-gradient(165deg, rgba(30, 30, 30, 0.88), rgba(22, 22, 22, 0.78)); */
    background: black;
    /* border: 1px solid rgba(255, 255, 255, 0.445); */
    border-radius: 0;
    border: none;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.dropdown-item {
    color: var(--text-light);
    font-weight: 300;
    transition: background-color 0.2s ease;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.336);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(69, 184, 216, 0.12);
    color: var(--aion-cyan);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(0, 229, 255, 0.18);
    color: var(--text-light);
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* .dropdown:focus-within .dropdown-menu {
    display: block;
} */

.dropdown-toggle-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    padding: 8px 10px;
}

.dropdown-toggle-btn i {
    transition: transform 0.3s ease;
}

.dropdown-toggle-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .dropdown-menu {
        display: none;
        position: static;
        background: transparent;
        border: none;
        padding-left: 15px;
    }

    .dropdown-menu.show {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Reduce vertical spacing on homepage sections */
.home-main>section.section-anchor {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Reduce top gap between navbar and hero/content on inner pages */
main.py-5.mt-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1rem !important;
}

/* Further reduce gap on mobile devices */
@media (max-width: 767px) {
    main.py-5.mt-5 {
        padding-top: 0.75rem !important;
        margin-top: 0.5rem !important;
    }
}

main.py-5.mt-5>section.container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2.5rem !important;
}

.glass-panel {
    background: linear-gradient(160deg, var(--glass-surface-strong), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.mini-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.license-badge {
    background: linear-gradient(145deg, rgba(0, 123, 255, 0.16), rgba(0, 229, 255, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.32);
    border-radius: 0.9rem;
    padding: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.badge-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--aion-cyan);
    margin-bottom: 0.4rem;
}

.capability-card li i {
    color: var(--aion-cyan);
}

.resource-link {
    color: var(--aion-cyan);
    font-weight: 600;
    text-decoration: none;
}

.resource-link:hover {
    color: #7df5ff;
}

.capability-mini-nav-wrap {
    position: sticky;
    top: 88px;
    z-index: 900;
}

.capability-mini-nav {
    border-color: rgba(69, 184, 216, 0.28);
}

.capability-mini-nav .nav-title {
    color: var(--aion-cyan);
    text-transform: uppercase;
    letter-spacing: 0.07rem;
    font-size: 0.78rem;
}

.mini-nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(69, 184, 216, 0.35);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
}

.mini-nav-pill:hover {
    color: #072030;
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
    border-color: transparent;
}

.mini-nav-pill.active {
    color: #072030;
    background: linear-gradient(90deg, var(--aion-blue), var(--aion-cyan));
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(69, 184, 216, 0.28);
}

.capability-detail-section {
    scroll-margin-top: 165px;
}

/* .capability-section-heading {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
} */

.capability-detail-section .text-muted-custom {
    line-height: 1.65;
}

.capability-info-grid {
    margin-top: 0.35rem;
}

.capability-info-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    padding: 0.9rem 0.95rem;
    height: 100%;
}

.capability-info-item h6 {
    font-size: 0.76rem;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    color: var(--aion-cyan);
    margin-bottom: 0.45rem;
}

.capability-info-item p {
    line-height: 1.5;
}

.industry-detail-grid h6 {
    color: var(--aion-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-size: 0.78rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 320px;
    border-radius: 0.9rem;
    /* border: 1px dashed rgba(69, 184, 216, 0.45); */
    background:
        linear-gradient(135deg, rgba(31, 123, 184, 0.14), rgba(69, 184, 216, 0.08)),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.04) 0,
            rgba(255, 255, 255, 0.04) 10px,
            rgba(255, 255, 255, 0.01) 10px,
            rgba(255, 255, 255, 0.01) 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    font-weight: 600;
}

.image-placeholder::before {
    content: "Image Placeholder";
}

.image-placeholder.media-hero {
    aspect-ratio: 21 / 8;
    max-height: 280px;
}

.image-placeholder.media-section {
    aspect-ratio: 16 / 7;
    max-height: 230px;
}

.image-placeholder.media-card {
    aspect-ratio: 4 / 3;
    max-height: 260px;
}

.image-placeholder.media-compact {
    aspect-ratio: 3 / 2;
    max-height: 190px;
}

.image-placeholder.media-capability {
    aspect-ratio: 4 / 3;
    max-height: 300px;
    min-height: 220px;
}

.flow-placeholder::before {
    content: "Flow Measurement Visual";
}

.energy-placeholder::before {
    content: "Energy Metering Visual";
}

.automation-placeholder::before {
    content: "Automation Systems Visual";
}

.instrumentation-placeholder::before {
    content: "Smart Instrumentation Visual";
}

.calibration-placeholder::before {
    content: "Calibration & Verification Visual";
}

.diagnostics-placeholder::before {
    content: "Diagnostics & Lifecycle Visual";
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.interactive-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.form-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-control,
.form-select {
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--aion-cyan);
    box-shadow: 0 0 0 0.2rem rgba(69, 184, 216, 0.16);
    background: rgba(12, 12, 12, 0.72);
    color: var(--text-light);
}

.form-select option {
    color: #111;
}

.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1050;
    box-shadow: 0 6px 18px rgba(0, 229, 255, 0.24);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.whatsapp-float {
    position: fixed;
    bottom: 84px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Resource Cards */
.resource-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(69, 184, 216, 0.1), transparent);
    transition: left 0.5s ease;
}

.resource-card:hover::before {
    left: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 10px 30px rgba(69, 184, 216, 0.2);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(69, 184, 216, 0.1), rgba(31, 123, 184, 0.1));
    transition: all 0.3s ease;
}

.resource-card:hover .card-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(69, 184, 216, 0.2), rgba(31, 123, 184, 0.2));
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.resource-card:hover .card-arrow {
    transform: translateX(5px);
}

.resource-card .card-arrow i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.resource-card:hover .card-arrow i {
    opacity: 1;
}

/* Insight Cards */
.insight-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
}

.insight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.insight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(69, 184, 216, 0.1), rgba(31, 123, 184, 0.1));
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.insight-card:hover .insight-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(69, 184, 216, 0.2), rgba(31, 123, 184, 0.2));
}

.insight-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: auto;
}

.insight-card h5 {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.insight-card ul {
    list-style: none;
    padding-left: 0;
}

.insight-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.insight-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-gradient);
    font-weight: bold;
}

/* Brochure Downloads */
.brochure-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.brochure-image-wrapper img {
    transition: transform 0.3s ease;
}

.brochure-image-wrapper:hover img {
    transform: scale(1.05);
}

.brochure-downloads {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.download-item {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-item:hover {
    border-color: rgba(69, 184, 216, 0.3);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
}

.download-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(180, 35, 45, 0.1));
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.download-item:hover .download-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(180, 35, 45, 0.2));
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--text-gradient), #1f7bb8);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::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 ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.3);
    background: linear-gradient(135deg, #45b8d8, #1f7bb8);
}

.btn-gradient:active {
    transform: translateY(0);
}

.btn-gradient:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-gradient:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-download.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    min-width: auto;
}

.btn-download.btn-sm i {
    margin: 0;
}

/* Minimal Download Button */
.btn-download-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-download-minimal:hover {
    border-color: var(--text-gradient);
    background: rgba(69, 184, 216, 0.1);
    color: var(--text-gradient);
    text-decoration: none;
}

.btn-download-minimal:active {
    background: rgba(69, 184, 216, 0.2);
}

.additional-info .alert {
    border-radius: 0.75rem;
    padding: 1.25rem;
}

/* Technical Service Cards */
.technical-service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
}

.technical-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(69, 184, 216, 0.1), rgba(31, 123, 184, 0.1));
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.technical-service-card:hover .service-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(69, 184, 216, 0.2), rgba(31, 123, 184, 0.2));
}

.technical-service-card h5 {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.technical-service-card ul {
    list-style: none;
    padding-left: 0;
}

.technical-service-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.technical-service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-gradient);
    font-weight: bold;
}

/* Service Methodology */
.methodology-step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.methodology-step:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text-gradient), #1f7bb8);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.methodology-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(69, 184, 216, 0.3);
}

.methodology-step h6 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Consultancy Service Cards */
.consultancy-service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
}

.consultancy-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.consultancy-service-card h5 {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.consultancy-service-card ul {
    list-style: none;
    padding-left: 0;
}

.consultancy-service-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.consultancy-service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-gradient);
    font-weight: bold;
}

/* Trading Service Cards */
.trading-service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
}

.trading-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.trading-service-card h5 {
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.trading-service-card ul {
    list-style: none;
    padding-left: 0;
}

.trading-service-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.trading-service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-gradient);
    font-weight: bold;
}

/* Value Items */
.value-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 216, 0.3);
    box-shadow: 0 8px 25px rgba(69, 184, 216, 0.15);
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(20, 108, 67, 0.1));
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.2), rgba(20, 108, 67, 0.2));
}

.value-item h6 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Footer Logo */
.footer-logo {
    height: 32px;
    width: auto;
    display: block;
}

/* Center headings on mobile and tablet */
@media (max-width: 991px) {
    .display-5 {
        text-align: center !important;
    }

    .section-copy {
        text-align: center !important;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .eyebrow {
        text-align: center !important;
        display: block !important;
        width: 100%;
    }

    /* Center industry focus heading */
    .card h3 {
        text-align: center !important;
    }

    /* Center industry focus cards */
    .industry-detail-grid .col-md-4 {
        text-align: center !important;
    }

    .industry-detail-grid .col-md-4 h6 {
        text-align: center !important;
    }

    .industry-detail-grid .col-md-4 p {
        text-align: center !important;
    }
}

/* Mobile Navbar Styles */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(69, 184, 216, 0.25);
    border-color: var(--aion-cyan);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-nav {
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        margin: 0.5rem 0;
        border-radius: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Success Message Container */
.success-message-container {
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    animation: scaleIn 0.4s ease-out 0.2s both;
}

.success-icon i {
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(40, 167, 69, 0.3));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .service-icon {
        width: 50px;
        height: 50px;
    }

    .methodology-step {
        padding: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .brochure-downloads {
        padding: 1rem;
    }

    .download-item {
        padding: 1rem;
    }

    .download-icon {
        width: 50px;
        height: 50px;
    }

    .download-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
}


@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 78vh;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 0.75rem;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 72px;
    }

    .sticky-cta {
        right: 16px;
        bottom: 16px;
        font-size: 0.86rem;
        padding: 0.55rem 0.85rem;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 26px;
        right: 16px;
        bottom: 68px;
    }

    .capability-mini-nav-wrap {
        top: 78px;
    }

    .image-placeholder.media-capability {
        min-height: 190px;
    }

    .media-capability {
        min-height: 180px !important;
        max-height: 250px !important;
    }

    .media-capability img {
        max-width: 100%;
    }

    .capability-info-item {
        padding: 0.8rem 0.85rem;
    }
}