/* -------------------------------------------------------------
   Taj Computer Solutions Pvt. Ltd. — Component Styles (components.css)
   Light Theme & Ocean Blue / Cyan Logo Palette
   Refined Font Weights: 600 Semi-Bold Titles & Clean Subtitles
   ------------------------------------------------------------- */

/* Top Utility Bar */
.topbar {
    background: linear-gradient(90deg, #0284c7 0%, #0369a1 25%, #0052ff 70%, #1e3a8a 100%);
    color: #ffffff;
    font-size: 0.8125rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 100;
    margin: 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topbar-items {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #f0f9ff;
    font-size: 0.8125rem;
}

.topbar-label {
    color: #bae6fd;
    font-weight: 500;
}

.topbar-item i {
    color: #7dd3fc;
    font-size: 0.85rem;
}

.topbar-item a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.topbar-item a:hover {
    color: #e0f2fe;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.topbar-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.topbar-trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 0.22rem 0.65rem;
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.topbar-trust-tag i {
    color: #7dd3fc;
    font-size: 0.78rem;
}

.topbar-trust-tag:hover {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Header & Navigation System (Always Sticky!) */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    position: relative;
    width: 100%;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--color-blue-dark);
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-body);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-blue-primary);
}

.nav-link.active::after, .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-blue-primary);
    border-radius: 2px;
}

/* Nav Dropdown */
.nav-item-has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    width: 270px;
    background: #ffffff;
    border: 1px solid var(--color-border-active);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    list-style: none;
    z-index: 1010;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    color: var(--color-text-body);
    font-size: 0.875rem;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-dropdown a:hover {
    background: var(--color-bg-subtle);
    color: var(--color-blue-primary);
    padding-left: 1rem;
}

/* Header Actions & Mobile Toggle */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.mobile-nav-toggle {
    display: none;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-active);
    color: var(--color-blue-dark);
    font-size: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
    background: var(--color-border-active);
    color: var(--color-blue-primary);
}

/* Hero Section System */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.85) 0%, rgba(224, 242, 254, 0.75) 50%, rgba(219, 234, 254, 0.85) 100%);
    padding: 5rem 0 5.5rem 0;
    overflow: hidden;
    color: var(--color-text-heading);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
}

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 600; /* Refined Semi-Bold Weight (Not too heavy) */
    color: var(--color-text-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #475569;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

/* Interactive 3D Auto-Slider Card */
.hero-3d-wrapper {
    perspective: 1200px;
    width: 100%;
}

/* -------------------------------------------------------------
   Hero Live 3D Eco Earth & Orbiting Feature Badges Scene
   ------------------------------------------------------------- */
.hero-eco-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.hero-eco-scene {
    position: relative;
    width: 100%;
    max-width: 530px;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing Ambient Halo behind the transparent PNG */
.hero-eco-glow-halo {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.45) 0%, rgba(34, 197, 94, 0.25) 45%, rgba(0, 82, 255, 0) 70%);
    filter: blur(42px);
    z-index: 1;
    animation: live-halo-pulse 6s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Live Eco Globe Container */
.hero-eco-globe-container {
    position: relative;
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    animation: live-eco-float 5.5s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.hero-eco-globe-png {
    width: 100%;
    height: auto;
    max-height: 470px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 16px 35px rgba(2, 44, 114, 0.22)) drop-shadow(0 6px 16px rgba(16, 185, 129, 0.18));
    transition: filter 0.4s ease, transform 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.hero-eco-globe-container:hover .hero-eco-globe-png {
    filter: drop-shadow(0 22px 50px rgba(0, 82, 255, 0.35)) drop-shadow(0 10px 28px rgba(34, 197, 94, 0.35));
    transform: scale(1.03);
}

/* Dynamic Ambient Floor Shadow underneath floating globe */
.hero-eco-shadow {
    width: 65%;
    height: 22px;
    background: radial-gradient(ellipse at center, rgba(2, 44, 114, 0.25) 0%, rgba(2, 44, 114, 0.05) 50%, transparent 75%);
    border-radius: 50%;
    margin-top: 0.5rem;
    animation: live-shadow-scale 5.5s ease-in-out infinite;
    pointer-events: none;
}

/* Floating Ecological Leaves */
.floating-leaf {
    position: absolute;
    z-index: 6;
    pointer-events: none;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
}

.floating-leaf-1 {
    top: 8%;
    left: 6%;
    animation: leaf-sway-1 7s ease-in-out infinite;
}

.floating-leaf-2 {
    top: 18%;
    right: 4%;
    animation: leaf-sway-2 8s ease-in-out infinite 1s;
}

.floating-leaf-3 {
    bottom: 24%;
    left: 2%;
    animation: leaf-sway-3 6.5s ease-in-out infinite 2s;
}

.floating-leaf-4 {
    bottom: 14%;
    right: 6%;
    animation: leaf-sway-4 9s ease-in-out infinite 0.5s;
}

.floating-leaf-5 {
    top: 2%;
    right: 26%;
    animation: leaf-sway-1 7.5s ease-in-out infinite 1.5s;
}

.floating-leaf-6 {
    bottom: 8%;
    left: 26%;
    animation: leaf-sway-2 8.5s ease-in-out infinite 0.8s;
}

/* Keyframes for Live Earth, Shadow Float & Pulse */
@keyframes live-eco-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(1.2deg);
    }
}

@keyframes live-shadow-scale {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.85);
        opacity: 0.45;
    }
}

@keyframes live-halo-pulse {
    0% {
        transform: scale(0.92);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes leaf-sway-1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(14px, -18px) rotate(22deg) scale(1.06); }
    66% { transform: translate(-10px, -28px) rotate(-16deg) scale(0.94); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes leaf-sway-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -22px) rotate(-28deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes leaf-sway-3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(18px, -20px) rotate(32deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes leaf-sway-4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 18px) rotate(-20deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Responsive Breakpoints for Eco Scene */
@media (max-width: 1024px) {
    .hero-eco-scene {
        max-width: 440px;
        min-height: 420px;
    }
    .hero-eco-globe-container {
        max-width: 390px;
    }
    .hero-eco-glow-halo {
        width: 330px;
        height: 330px;
    }
}

@media (max-width: 768px) {
    .hero-eco-scene {
        max-width: 100%;
        min-height: 360px;
        margin-top: 1.5rem;
    }
    .hero-eco-globe-container {
        max-width: 320px;
    }
    .hero-eco-glow-halo {
        width: 270px;
        height: 270px;
    }
}

@media (max-width: 480px) {
    .hero-eco-scene {
        min-height: 290px;
    }
    .hero-eco-globe-container {
        max-width: 270px;
    }
    .hero-eco-glow-halo {
        width: 220px;
        height: 220px;
    }
}

/* Cards & Modules with Animated Gradient Sweep Hover */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
}

/* Top Accent Animated Gradient Line */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan-primary) 0%, var(--color-blue-primary) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px -6px rgba(29, 78, 216, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
    border-color: var(--color-border-active);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--color-blue-glow);
    color: var(--color-blue-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--color-cyan-primary) 0%, var(--color-blue-primary) 100%);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.25);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    color: var(--color-text-heading);
    font-weight: 600;
}

.card-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-blue-primary);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-link,
.card-link:hover {
    color: var(--color-cyan-primary);
}

.card:hover .card-link i,
.card-link:hover i {
    transform: translateX(6px);
}

/* Process Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 0 5px var(--color-bg-page), 0 4px 10px rgba(0,0,0,0.08);
    z-index: 2;
}

/* Collection Table Filter */
.filter-bar {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.15rem;
    margin-bottom: 1.75rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: var(--shadow-sm);
    width: 100%;
    box-sizing: border-box;
}

.search-input-wrap {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.4rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--color-blue-primary);
    box-shadow: 0 0 0 3px var(--color-blue-glow);
}

.search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.filter-select {
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    cursor: pointer;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
    min-width: 600px;
}

.data-table th {
    background: var(--color-blue-dark);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.875rem 1.15rem;
    border-bottom: 2px solid var(--color-cyan-primary);
}

.data-table td {
    padding: 0.875rem 1.15rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background-color: var(--color-bg-subtle);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.state-badge {
    font-weight: 600;
    color: var(--color-blue-dark);
}

/* Light Footer */
.site-footer {
    background-color: #f8fafc;
    color: #64748b;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--color-border);
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600; /* Refined Semi-Bold */
    color: var(--color-text-heading);
    margin-bottom: 1.15rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: #475569;
    font-size: 0.875rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-blue-primary);
    padding-left: 0.3rem;
}

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.825rem;
}

/* Modal Dialog */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-normal);
    padding: 1rem;
    box-sizing: border-box;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 580px;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition-normal);
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

/* Flex Button Group Helper */
.flex-btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

/* -------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (iPad, Tablet & Mobile Rules)
   ------------------------------------------------------------- */

/* iPad & Tablet Landscape / Portrait (1024px and down) */
@media (max-width: 1024px) {
    /* Hide topbar completely on iPads, Tablets & Mobile */
    .topbar {
        display: none !important;
    }
    
    .header-container { height: 68px; }
    
    /* Hide header inline desktop button, show mobile menu drawer trigger */
    .header-actions .btn-header-cta {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: flex !important;
    }
    
    /* Slide-Down Mobile/iPad Navigation Drawer */
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1rem 1.25rem 1.75rem 1.25rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: var(--transition-normal);
        list-style: none;
        z-index: 1005;
        box-sizing: border-box;
    }

    .nav-menu.mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-link {
        display: block;
        padding: 0.85rem 0;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .nav-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--color-bg-subtle);
        margin: 0 0 0.5rem 0;
        padding: 0.5rem;
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    .mobile-menu-cta {
        display: block !important;
        width: 100%;
        margin-top: 0.75rem;
    }
    
    /* Hero Responsiveness on iPad */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2.25rem;
        width: 100%;
    }
    
    .hero-3d-wrapper {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-3d-card {
        padding: 1.5rem 1.15rem;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Screens (<768px) */
@media (max-width: 768px) {
    .brand-logo img { height: 32px; }
    .brand-name { font-size: 0.95rem; }
    .brand-subtitle { font-size: 0.55rem; }
    
    .hero-section { padding: 2.25rem 0 3rem 0; }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        display: flex;
    }
    
    .flex-btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .flex-btn-group .btn {
        width: 100%;
        display: flex;
    }
    
    .slide-visual-box {
        padding: 0.75rem 0.85rem;
    }
    
    .slide-metric-number {
        font-size: 1.35rem;
    }
    
    /* Timeline Mobile Alignment */
    .timeline::before { left: 18px; }
    .timeline-step, .timeline-step:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .timeline-badge {
        left: 18px;
        transform: none;
    }
    .timeline-content {
        width: calc(100% - 50px) !important;
        margin-left: 50px !important;
        box-sizing: border-box !important;
    }
    
    /* Footer Mobile Alignment */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    /* Table Filter Controls */
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .search-input-wrap { width: 100%; }
    .filter-select { width: 100%; }
}

/* ==========================================================================
   Exact Pixel-Perfect ABCD Circular Ecosystem Section with Smooth Loop Animations
   ========================================================================== */
.abcd-section {
    position: relative;
    padding: 5.5rem 0;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.abcd-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.abcd-exact-heading {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.65rem;
    line-height: 1.45;
    color: #1a2253;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin: 0;
}

.abcd-blue-text {
    color: #0052ff;
    font-weight: 600;
}

/* Orbit Canvas Wrapper */
.abcd-circle-orbit {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle Workspace Illustration Behind Circles */
.abcd-bg-art {
    position: absolute;
    bottom: 0;
    left: 2%;
    width: 96%;
    height: 55%;
    object-fit: cover;
    opacity: 0.65;
    border-radius: 0 0 28px 28px;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Central Vibrant Blue Radial Glow with Smooth Breathing Pulse */
.abcd-center-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #0066ff 0%, #0052ff 35%, rgba(0, 102, 255, 0.45) 55%, transparent 75%);
    filter: blur(14px);
    pointer-events: none;
    z-index: 2;
    animation: abcd-aura-pulse 4.5s ease-in-out infinite alternate;
}

@keyframes abcd-aura-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.75;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* Circular Dashed Orbital Track with Continuous Smooth Slow Rotation */
.abcd-dashed-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 2px dashed #cbd5e1;
    pointer-events: none;
    z-index: 3;
    animation: abcd-ring-spin 60s linear infinite;
}

@keyframes abcd-ring-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Center Brand Core - Crisp, Sharp & Fully Visible */
.abcd-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #0059ff;
    border: 3.5px solid #ffffff;
    box-shadow: 0 6px 28px rgba(0, 89, 255, 0.55), inset 0 2px 6px rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    overflow: hidden;
}

.abcd-center-badge:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 36px rgba(0, 89, 255, 0.75);
}

.abcd-center-logo-img {
    width: 74px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Pure Circular Discs */
.abcd-disc {
    position: absolute;
    width: 216px;
    height: 216px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 1rem;
    z-index: 6;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.abcd-disc:hover {
    box-shadow: 0 18px 40px rgba(0, 82, 255, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: #0052ff;
    animation-play-state: paused !important;
}

/* 4 Orbital Positions with Smooth Floating Loop Animations */
.abcd-disc-a {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: abcd-float-top 5s ease-in-out infinite;
}
.abcd-disc-a:hover {
    transform: translateX(-50%) scale(1.05);
}

.abcd-disc-b {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: abcd-float-right 5.5s ease-in-out infinite;
}
.abcd-disc-b:hover {
    transform: translateY(-50%) scale(1.05);
}

.abcd-disc-c {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: abcd-float-bottom 5.2s ease-in-out infinite;
}
.abcd-disc-c:hover {
    transform: translateX(-50%) scale(1.05);
}

.abcd-disc-d {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: abcd-float-left 5.8s ease-in-out infinite;
}
.abcd-disc-d:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Smooth Loop Keyframes */
@keyframes abcd-float-top {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes abcd-float-right {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(8px); }
}

@keyframes abcd-float-bottom {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes abcd-float-left {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(-8px); }
}

/* Elements inside the Disc */
.abcd-disc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    color: #0052ff;
    transition: transform 0.3s ease;
}

.abcd-disc:hover .abcd-disc-icon {
    transform: scale(1.12);
}

.abcd-disc-title {
    font-size: 1.28rem;
    font-weight: 500;
    color: #0052ff;
    line-height: 1.2;
    margin: 0;
}

.abcd-disc-title .abcd-char {
    font-size: 1.45rem;
    font-weight: 600;
}

.abcd-disc-desc {
    font-size: 0.92rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.35;
    margin: 0.45rem 0 0;
}

/* Responsive Scaling - Preserves Exact Circular Ecosystem on ALL Devices */
@media (max-width: 1024px) {
    .abcd-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    .abcd-exact-heading {
        font-size: 2.15rem;
        max-width: 580px;
        margin: 0 auto;
    }
    .abcd-circle-orbit {
        max-width: 500px;
        height: 500px;
    }
    .abcd-disc {
        width: 185px;
        height: 185px;
        padding: 0.85rem;
    }
    .abcd-dashed-ring {
        width: 340px;
        height: 340px;
    }
    .abcd-center-badge {
        width: 84px;
        height: 84px;
    }
    .abcd-center-badge svg {
        width: 38px;
    }
    .abcd-disc-title {
        font-size: 1.12rem;
    }
    .abcd-disc-desc {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .abcd-section {
        padding: 4rem 0;
    }
    .abcd-exact-heading {
        font-size: 1.85rem;
        line-height: 1.35;
        max-width: 520px;
        margin: 0 auto;
    }
    .abcd-circle-orbit {
        max-width: 440px;
        height: 440px;
    }
    .abcd-dashed-ring {
        width: 300px;
        height: 300px;
    }
    .abcd-center-aura {
        width: 180px;
        height: 180px;
    }
    .abcd-center-badge {
        width: 74px;
        height: 74px;
    }
    .abcd-center-badge svg {
        width: 32px;
    }
    .abcd-center-badge .badge-text {
        font-size: 0.52rem;
    }
    .abcd-disc {
        width: 165px;
        height: 165px;
        padding: 0.75rem 0.5rem;
    }
    .abcd-disc-icon svg {
        width: 26px;
        height: 26px;
    }
    .abcd-disc-title {
        font-size: 0.98rem;
    }
    .abcd-disc-title .abcd-char {
        font-size: 1.12rem;
    }
    .abcd-disc-desc {
        font-size: 0.74rem;
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .abcd-section {
        padding: 3rem 0;
    }
    .abcd-exact-heading {
        font-size: 1.45rem;
        line-height: 1.35;
    }
    .abcd-circle-orbit {
        max-width: 340px;
        height: 340px;
    }
    .abcd-dashed-ring {
        width: 230px;
        height: 230px;
    }
    .abcd-center-aura {
        width: 140px;
        height: 140px;
    }
    .abcd-center-badge {
        width: 60px;
        height: 60px;
        border-width: 2.5px;
    }
    .abcd-center-badge svg {
        width: 26px;
    }
    .abcd-center-badge .badge-text {
        font-size: 0.44rem;
        margin-top: 0.1rem;
    }
    .abcd-disc {
        width: 126px;
        height: 126px;
        padding: 0.4rem 0.25rem;
    }
    .abcd-disc-icon {
        margin-bottom: 0.2rem;
    }
    .abcd-disc-icon svg {
        width: 20px;
        height: 20px;
    }
    .abcd-disc-title {
        font-size: 0.78rem;
        line-height: 1.15;
    }
    .abcd-disc-title .abcd-char {
        font-size: 0.9rem;
    }
    .abcd-disc-desc {
        font-size: 0.62rem;
        line-height: 1.25;
        margin-top: 0.2rem;
    }
}

/* ==========================================================================
   Homepage Statement / Quote Section (Dark & Light Blue Mixed Gradient)
   ========================================================================== */
.home-quote-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #091c3d 0%, #123773 35%, #1d4ed8 75%, #0284c7 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Subtle Ambient Glow */
.home-quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.25) 0%, rgba(29, 78, 216, 0.1) 45%, transparent 70%);
    pointer-events: none;
}

.home-quote-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.home-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.48;
    margin: 0;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .home-quote-section {
        padding: 3.75rem 0;
    }
    .home-quote-text {
        font-size: 1.35rem;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Accreditations & Certifications Page
   ========================================================================== */
/* R2 Spotlight Card */
.r2-spotlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.75rem 3rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}

.r2-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052ff, #00d2ff);
}

.r2-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.r2-scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.r2-scope-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #eff6ff;
    color: #0052ff;
    border: 1px solid rgba(0, 82, 255, 0.15);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
}

.r2-doc-preview {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.r2-doc-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.r2-doc-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 82, 255, 0.15);
    border-color: #0052ff;
}

.r2-doc-logo-img {
    height: 52px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

.r2-doc-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #eff6ff;
    color: #0052ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 82, 255, 0.15);
}

/* ISO Certificates Matrix */
.iso-matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.iso-cert-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.iso-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 82, 255, 0.08);
    border-color: #cbd5e1;
}

.iso-cert-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.iso-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #eff6ff;
    color: #0052ff;
    border: 1px solid rgba(0, 82, 255, 0.15);
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.iso-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.iso-cert-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.iso-cert-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.iso-cert-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.iso-cert-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Accreditations */
@media (max-width: 1024px) {
    .r2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .iso-matrix-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .r2-spotlight-card {
        padding: 1.75rem 1.25rem;
    }
    .iso-cert-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ==========================================================================
   Infinite Trust Marquee / Ticker Strip
   ========================================================================== */
.trust-marquee-section {
    background: #080f1e;
    background: linear-gradient(90deg, #060b17 0%, #0d1a38 50%, #060b17 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    user-select: none;
}

.trust-marquee-track {
    display: flex;
    width: max-content;
    animation: trust-marquee-scroll 35s linear infinite;
}

.trust-marquee-track:hover {
    /* Speed slowdown is managed dynamically without stopping */
    animation-play-state: running;
}

.trust-marquee-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
}

.trust-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.45rem 1.05rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.trust-marquee-item i {
    color: #38bdf8;
    font-size: 0.8rem;
}

.trust-marquee-item:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.trust-marquee-item.item-accent {
    background: rgba(0, 82, 255, 0.2);
    border-color: rgba(0, 82, 255, 0.4);
    color: #ffffff;
}

.trust-marquee-item.item-accent i {
    color: #60a5fa;
}

/* Gradient Fade Edges */
.trust-marquee-section::before,
.trust-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.trust-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, #060b17 0%, transparent 100%);
}

.trust-marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, #060b17 0%, transparent 100%);
}

@keyframes trust-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .trust-marquee-section {
        padding: 0.65rem 0;
    }
    .trust-marquee-item {
        padding: 0.35rem 0.85rem;
        font-size: 0.76rem;
    }
    .trust-marquee-group {
        gap: 0.85rem;
        padding-right: 0.85rem;
    }
}

/* -------------------------------------------------------------
   About Us: Modern Company Profile Card & Credential Modules
   ------------------------------------------------------------- */
.about-profile-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 3.5rem 3.5rem 2.75rem 3.5rem;
    box-shadow: 0 20px 60px rgba(2, 44, 114, 0.07), 0 4px 16px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Background Subtle Gradient Glow */
.about-profile-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(0, 82, 255, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-profile-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Kicker Tag */
.profile-kicker-tag {
    display: inline-flex;
    align-items: center;
    background: #09132a;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

/* Main Heading (Matching website standard font-weight and color) */
.about-profile-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 600;
    color: var(--color-blue-dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.about-profile-subtitle {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-profile-text {
    font-size: 0.925rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.about-profile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Right Visual with Bigger Clean Circular Frame */
.about-profile-visual-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    height: 420px;
    margin: 0 auto;
}

.about-profile-circle-frame {
    width: 390px;
    height: 390px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 50px rgba(2, 44, 114, 0.16), 0 0 0 1px rgba(226, 232, 240, 0.9);
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-profile-circle-frame:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 82, 255, 0.22), 0 0 0 2px rgba(0, 82, 255, 0.3);
}

.about-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-profile-circle-frame:hover .about-profile-img {
    transform: scale(1.08);
}

/* Bottom Credentials 4 Cards Grid */
.about-credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.credential-card {
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-4px);
}

/* Dark Card */
.credential-card.card-dark {
    background: #09132a;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(9, 19, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.credential-card.card-dark:hover {
    box-shadow: 0 14px 30px rgba(9, 19, 42, 0.25);
    border-color: rgba(0, 82, 255, 0.4);
}

.credential-card.card-dark .credential-tag {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
}

.credential-card.card-dark .credential-title {
    color: #ffffff;
}

.credential-card.card-dark .credential-desc {
    color: #94a3b8;
}

/* Light Card */
.credential-card.card-light {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(2, 44, 114, 0.05);
}

.credential-card.card-light:hover {
    box-shadow: 0 14px 28px rgba(0, 82, 255, 0.12);
    border-color: rgba(0, 82, 255, 0.35);
}

.credential-card.card-light .credential-tag {
    color: #0052ff;
    background: rgba(0, 82, 255, 0.08);
}

.credential-card.card-light .credential-title {
    color: #09132a;
}

.credential-card.card-light .credential-desc {
    color: #64748b;
}

/* Card Elements */
.credential-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

.credential-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.credential-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive adjustments for About Profile */
@media (max-width: 1024px) {
    .about-profile-card {
        padding: 2.5rem;
    }
    .about-profile-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-profile-title {
        font-size: 2.2rem;
    }
    .about-profile-circle-frame {
        width: 320px;
        height: 320px;
    }
    .about-profile-visual-wrapper {
        max-width: 340px;
        height: 340px;
    }
    .about-credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-profile-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    .about-profile-title {
        font-size: 1.75rem;
    }
    .about-profile-circle-frame {
        width: 270px;
        height: 270px;
    }
    .about-profile-visual-wrapper {
        max-width: 290px;
        height: 290px;
    }
    .about-credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Homepage: Capabilities Bento Grid Section
   ========================================================================== */
.capabilities-section {
    padding: 5.5rem 0 6rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Header */
.capabilities-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 2;
}

.capabilities-kicker-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.75rem;
}

.capabilities-kicker {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #0052ff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.capabilities-kicker-bar {
    width: 26px;
    height: 2.5px;
    background: #0052ff;
    border-radius: 2px;
    margin-top: 0.45rem;
}

.capabilities-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3.5vw, 2.75rem);
    font-weight: 600;
    color: #09132a;
    line-height: 1.2;
    margin: 0 0 0.4rem;
    letter-spacing: -0.015em;
}

.capabilities-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 600;
    color: #0052ff;
    line-height: 1.3;
    margin: 0 0 0.85rem;
    letter-spacing: -0.01em;
}

.capabilities-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* Bento Grid */
.capabilities-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.capability-bento-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: 0 10px 30px rgba(2, 44, 114, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.capability-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 82, 255, 0.12);
    border-color: rgba(0, 82, 255, 0.3);
}

/* Card Content */
.capability-bento-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.capability-num-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.capability-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0052ff;
    letter-spacing: -0.01em;
}

.capability-num-dash {
    width: 24px;
    height: 2.5px;
    background: #0052ff;
    border-radius: 2px;
}

.capability-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #09132a;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.capability-title-line {
    width: 28px;
    height: 2.5px;
    background: #0052ff;
    border-radius: 2px;
    margin-bottom: 0.85rem;
}

.capability-card-desc {
    font-size: 0.885rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Card Visual & Angled Masking */
.capability-bento-visual {
    position: relative;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
}

.capability-mask-angled {
    position: absolute;
    inset: 0;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    height: 100%;
    width: 100%;
}

.capability-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.capability-bento-card:hover .capability-img {
    transform: scale(1.08);
}

.capability-full-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
}

/* Wide Card 03: E-Waste Recycling */
.capability-bento-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.25fr;
}

.green-num .capability-num {
    color: #16a34a;
}

.green-num .capability-num-dash {
    background: #16a34a;
}

.green-line {
    background: #16a34a;
}

.capability-mask-organic {
    position: absolute;
    inset: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    height: 100%;
    width: 100%;
}

/* Bottom Bar Action Pill */
.capabilities-bottom-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.1rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    box-shadow: 0 8px 24px rgba(2, 44, 114, 0.04);
    position: relative;
    z-index: 2;
}

.capabilities-bottom-left {
    display: flex;
    align-items: center;
}

.capabilities-bottom-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .capabilities-bento-grid {
        grid-template-columns: 1fr;
    }
    .capability-bento-wide {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .capabilities-section {
        padding: 3.5rem 0;
    }
    .capability-bento-card,
    .capability-bento-wide {
        grid-template-columns: 1fr;
    }
    .capability-mask-angled,
    .capability-mask-organic {
        clip-path: none;
        height: 200px;
        position: relative;
    }
    .capability-bento-visual {
        height: 200px;
        min-height: 200px;
    }
    .capabilities-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
    }
    .capabilities-bottom-right {
        width: 100%;
    }
    .capabilities-bottom-right .btn {
        width: 100%;
        justify-content: center;
    }
}



