        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: #1a1a1a;
            background: #fafafa;
        }

        /* Header & Navigation */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .header-main {
            padding: 24px 0;
        }

        .offals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 14px;
            margin-bottom: 18px;
        }

        .offal-item {
            background: #fafafa;
            border-radius: 12px;
            padding: 10px;
            text-align: center;
        }

        .offal-item img {
            width: 100%;
            height: 130px;
            object-fit: contain;
        }

        .offal-item span {
            display: block;
            margin-top: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0f172a;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-container {
            border-radius: 50%;
            padding: 6px;
            background: white;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
        }

        .logo-container img {
            height: 56px;
            width: 56px;
            display: block;
            border-radius: 50%;
        }


        .company-info h1 {
            font-size: 1.3em;
            font-weight: 600;
            color: #1e3a8a;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.02em;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 8px;
        }

        nav ul li a {
            color: #1a1a1a;
            text-decoration: none;
            padding: 10px 20px;
            display: block;
            transition: all 0.2s ease;
            font-weight: 400;
            font-size: 0.95em;
            letter-spacing: -0.01em;
        }

        nav ul li a:hover {
            color: #1e3a8a;
        }

        nav ul li a.active {
            color: #1e3a8a;
            font-weight: 500;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        /* Hero Section */


        .hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.92)), 
                                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e293b" width="1200" height="600"/></svg>');
            background-size: cover;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 160px 0 160px;
            min-height: 70vh;   /* WAS 90vh */
            display: flex;
            align-items: center;
        }

        .section-bridge {
            height: 140px;
            background: linear-gradient(
                180deg,
                #ffffff,
                #0f172a
            );
        }

        .spine {
            width: 100%;
            height: 1px;
            background: rgba(30,58,138,0.18);
            margin: 120px 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }

        .hero .container {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 5em;
            margin-bottom: 40px;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.02em;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.01em;
        }

        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 48px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            font-size: 0.85em;
        }

        .btn-primary {
            background: white;
            color: #1e3a8a;
        }

        .btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Section Styling */
        section {
            padding: 140px 0;
        }

        section.dark-section {
            background: #0f172a;
            color: white;
        }

        section.white-section {
            background: white;
        }
        .dark-section {
        background:
            radial-gradient(900px 500px at 70% -10%, rgba(30,58,138,0.25), transparent 60%),
            #0f172a;
        }

        h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 3.5em;
            margin-bottom: 30px;
            color: #1e3a8a;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }


        .dark-section h2 {
            color: white;
        }

        h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 2.2em;
            margin: 60px 0 24px;
            color: #1e293b;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .dark-section h3 {
            color: white;
        }

        /* Welcome Section */
        .welcome-section {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .welcome-section h2 {
            margin-bottom: 40px;
        }

        .welcome-section p {
            font-size: 1.2em;
            line-height: 1.9;
            font-weight: 300;
            color: #334155;
        }

        /* Authority Block */
        .authority-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .authority-text {
            font-size: 1.15em;
            line-height: 1.9;
            font-weight: 300;
            color: #334155;
            justify-content: center;

           
        }

        .authority-text p {
            margin-bottom: 24px;
        }

        .image-placeholder {
            background: #e5e7eb;
            height: 420px;              /* instead of min-height */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;           /* IMPORTANT */
            border-radius: 4px;
        }

                .image-placeholder img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;   /* or 'contain' if you don't want cropping */
            display: block;
        }


        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(30,58,138,0.25),
                transparent
            );
            margin: 0;
        }

        /* Capabilities Section */
        .capabilities {
            max-width: 1200px;
            margin: 0 auto;
        }

        .capability-item {
            padding: 80px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .capability-item:last-child {
            border-bottom: none;
        }

        .capability-item h3 {
            margin-top: 0;
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .capability-item p {
            font-size: 1.15em;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
            max-width: 800px;
        }

        /* About Page */
        .about-hero {
            padding: 100px 0 60px;
            text-align: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: start;
            margin-top: 60px;
        }

        .about-text {
            font-size: 1.1em;
            line-height: 1.9;
            font-weight: 300;
        }

        .about-text h3 {
            margin-top: 0;
            font-size: 2em;
        }

        .about-text h3:not(:first-child) {
            margin-top: 50px;
        }

        .about-text p {
            margin-bottom: 24px;
            color: #334155;
        }

        .ceo-link {
            display: inline-block;
            margin-top: 30px;
            padding: 14px 32px;
            background: #0077b5;
            color: white;
            text-decoration: none;
            border-radius: 2px;
            transition: all 0.3s;
            font-size: 0.9em;
            font-weight: 500;
            letter-spacing: 0.01em;
        }

        .ceo-link:hover {
            background: #005885;
            transform: translateY(-2px);
        }

        /* Products Page */
        .products-header {
            max-width: 900px;
            margin: 0 auto 80px;
            text-align: center;
        }

        .products-header h2 {
            margin-bottom: 24px;
        }

        .products-header h3 {
            margin: 0 0 20px;
            font-size: 2em;
        }

        .products-header p {
            font-size: 1.15em;
            color: #475569;
            font-weight: 300;
            line-height: 1.8;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .product-card {
            background: white;
            padding: 50px 40px;
            border-radius: 2px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #d1d5db;
        }

        .product-image-placeholder {
            background: #f8fafc;
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: #94a3b8;
            font-size: 0.9em;
            letter-spacing: 0.02em;
        }

        .product-card h3 {
            margin-top: 0;
            font-size: 1.8em;
            margin-bottom: 16px;
        }

        .product-card > p {
            color: #64748b;
            margin-bottom: 24px;
            font-weight: 300;
        }

        .product-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .product-card li {
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            color: #475569;
            font-size: 0.95em;
        }

        .product-card li:last-child {
            border-bottom: none;
        }

        /* Network Page */
        .network-intro {
            max-width: 1000px;
            margin: 0 auto 60px;
            font-size: 1.15em;
            line-height: 1.9;
            font-weight: 300;
            text-align: center;
        }

        .network-intro p {
            margin-bottom: 24px;
            color: #334155;
        }

     
        .map-placeholder {
            position: relative;
            min-height: 720px;
            margin: 90px 0 40px;
            border-radius: 28px;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 20%, rgba(30, 58, 138, 0.35), transparent 28%),

                radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.14), transparent 26%),
                linear-gradient(145deg, #081120 0%, #0f172a 45%, #0b1324 100%);
            box-shadow:
                0 40px 100px rgba(2, 6, 23, 0.55),
                inset 0 1px 0 rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .map-placeholder::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
            pointer-events: none;
        }

        .map-placeholder::after {
            content: "";
            position: absolute;
            inset: auto -10% -35% -10%;
            height: 240px;
            background: radial-gradient(circle, rgba(30,58,138,0.22), transparent 65%);
            filter: blur(40px);
            pointer-events: none;
        }

        .map-container {
            position: relative;
            width: 100%;
            min-height: 720px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1600px;
        }

        .map-stage {
            position: relative;
            width: min(100%, 1100px);
            height: 620px;
            transform: rotateX(14deg) rotateY(-8deg);
            transform-style: preserve-3d;
        }

        .map-board {
            position: absolute;
            inset: 60px 120px 90px 120px;
            border-radius: 30px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
                rgba(10, 18, 35, 0.72);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(18px);
            box-shadow:
                0 40px 80px rgba(0,0,0,0.45),
                inset 0 1px 0 rgba(255,255,255,0.10);
        }

        .map-board::before {
            content: "";
            position: absolute;
            inset: 14px;
            border-radius: 22px;
            border: 1px solid rgba(255,255,255,0.06);
            pointer-events: none;
        }

        .map-svg {
            position: absolute;
            inset: 60px 120px 90px 120px;
            width: calc(100% - 240px);
            height: calc(100% - 150px);
            z-index: 2;
            overflow: visible;
        }

        .connection-line {
            stroke: url(#goldLine);
            stroke-width: 2.2;
            stroke-dasharray: 8 10;
            opacity: 0.75;
            animation: dash 14s linear infinite;
            filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
        }

        .connection-line.secondary {
            stroke: rgba(96, 165, 250, 0.5);
            opacity: 0.45;
        }

        .location-marker {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .location-marker:hover {
            transform: translateY(-6px);
        }

        .location-marker:hover .marker-core {
            filter: drop-shadow(0 0 18px rgba(255,255,255,0.45));
        }

        .location-marker:hover .marker-ring {
            opacity: 1;
        }

        .marker-glow {
            fill: rgba(212,175,55,0.20);
            animation: markerGlow 2.8s ease-in-out infinite;
        }

        .marker-ring {
            fill: none;
            stroke: rgba(255,255,255,0.22);
            stroke-width: 1.4;
            opacity: 0.7;
        }

        .marker-core {
            transition: all 0.3s ease;
        }

        .marker-center {
            fill: #081120;
        }

        .location-label {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            fill: white;
            letter-spacing: 0.01em;
        }

        .location-sublabel {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 400;
            fill: rgba(255,255,255,0.72);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .network-float-card {
            position: absolute;
            min-width: 190px;
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            backdrop-filter: blur(14px);
            box-shadow:
                0 18px 50px rgba(0,0,0,0.28),
                inset 0 1px 0 rgba(255,255,255,0.08);
            z-index: 4;
        }

        .network-float-card h4 {
            margin: 0 0 6px;
            color: white;
            font-size: 0.98rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .network-float-card p {
            margin: 0;
            color: rgba(255,255,255,0.72);
            font-size: 0.84rem;
            line-height: 1.5;
            font-weight: 300;
        }

        .card-hq {
            bottom: 95px;
            left: 50%;
            transform: translateX(-50%);

        }

        .card-sa {
            top: 110px;
            right: 90px;
        }

        .card-ma {
            top: 105px;
            left: 110px;
        }

        .map-orbit {
            position: absolute;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 999px;
            pointer-events: none;
        }

        .orbit-one {
            inset: 95px 180px 140px 180px;
            transform: translateZ(-30px);
        }

        .orbit-two {
            inset: 130px 240px 180px 240px;
            transform: translateZ(-60px);
            opacity: 0.55;
        }

        @keyframes dash {
            to {
                stroke-dashoffset: -180;
            }
        }

        @keyframes markerGlow {
            0%, 100% {
                transform: scale(1);
                opacity: 0.55;
            }
            50% {
                transform: scale(1.22);
                opacity: 0.2;
            }
        }

        @media (max-width: 900px) {
            .map-placeholder {
                min-height: 620px;
                margin: 40px 0 20px;
                border-radius: 24px;
            }

            .map-container {
                min-height: 620px;
                padding: 10px 0 20px;
            }

            .map-stage {
                width: 100%;
                height: 560px;
                transform: rotateX(8deg) rotateY(-5deg) scale(1);
                transform-style: preserve-3d;
            }

            .map-board {
                inset: 70px 18px 60px 18px;
                border-radius: 24px;
            }

            .map-svg {
                inset: 110px 4px 95px 4px;
                width: auto;
                height: auto;
            }

            .network-float-card {
                display: block;
                min-width: 120px;
                max-width: 135px;
                padding: 9px 10px;
                border-radius: 14px;
            }

            .network-float-card h4 {
                font-size: 0.82rem;
                margin-bottom: 4px;
            }

            .network-float-card p {
                font-size: 0.68rem;
                line-height: 1.32;
            }

            .card-ma {
                top: 72px;
                left: 8px;
            }

            .card-sa {
                top: 72px;
                right: 8px;
            }

            .card-hq {
                bottom: 70px;
                left: 50%;
                transform: translateX(-50%);
            }

            .orbit-one {
                display: block;
                inset: 85px 45px 75px 45px;
            }

            .orbit-two {
                display: block;
                inset: 115px 75px 105px 75px;
                opacity: 0.35;
            }
        }


        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .network-card {
            background: linear-gradient(180deg, #ffffff, #f8fafc);
            padding: 50px 40px;
            border-radius: 18px;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #d4af37;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .network-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
        }

        .network-card h3 {
            margin-top: 0;
            font-size: 1.9em;
            color: #1e3a8a;
            margin-bottom: 20px;
        }

        .network-card p {
            color: #475569;
            font-weight: 300;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Contact Page */
        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-wrapper h2 {
            margin-bottom: 20px;
        }

        .contact-subtitle {
            font-size: 1.2em;
            color: #64748b;
            margin-bottom: 80px;
            font-weight: 300;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            text-align: left;
            margin-top: 60px;
        }

        .contact-info-section h3 {
            margin-top: 0;
            font-size: 2em;
        }

        .contact-details {
            margin: 40px 0;
        }

        .contact-item {
            margin-bottom: 32px;
        }

        .contact-item strong {
            display: block;
            font-size: 0.85em;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #94a3b8;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .product-slider {
            position: relative;
            width: 100%;
            height: 230px;
            overflow: hidden;
            border-radius: 12px;
            background: #f4f6f8;
            }

            .product-slider img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #f4f6f8;
            opacity: 0;
            transition: opacity 0.4s ease;
            }

            .product-slider img.active {
            opacity: 1;
            }

            .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.55);
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 18px;
            }

            .slider-btn:hover {
            background: rgba(0,0,0,0.8);
            }

            .slider-btn.prev { left: 10px; }
            .slider-btn.next { right: 10px; }

        .contact-item span {
            font-size: 1.1em;
            color: #1e293b;
            font-weight: 400;
        }

        .contact-form {
            background: #f8fafc;
            padding: 50px;
            border-radius: 2px;
        }

        .contact-form h3 {
            margin-top: 0;
            font-size: 2em;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 24px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 400;
            color: #334155;
            font-size: 0.9em;
            letter-spacing: 0.01em;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid #e2e8f0;
            border-radius: 2px;
            font-size: 1em;
            font-family: 'Inter', sans-serif;
            background: white;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3a8a;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        .map-placeholder-contact {
            background: #e5e7eb;
            height: 350px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .map-placeholder-contact iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }


        /* Footer */
        footer {
            background: #0f172a;
            color: rgba(255, 255, 255, 0.8);
            padding: 100px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
        }

        .footer-section h3 {
            color: white;
            margin-top: 0;
            font-size: 1.5em;
            margin-bottom: 24px;
        }

        .footer-section p {
            line-height: 1.8;
            font-weight: 300;
        }


        .slider-counter {
        position: absolute;
        bottom: 10px;
        right: 14px;
        background: rgba(15, 23, 42, 0.75);
        color: white;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.04em;
        backdrop-filter: blur(6px);
        }

        .product-card.no-media {
    padding-top: 70px;
}

.product-card.no-media::before {
    content: "Custom Processing";
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 18px;
}



        /* Offals slider */
.offals-slider {
  position: relative;
  margin-bottom: 18px;
}

.offals-viewport {
  overflow: hidden;
  width: 100%;
}

.offals-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
  padding: 4px 4px;
}

/* Make each item a fixed card width (so it slides nicely) */
.offals-track .offal-item {
  flex: 0 0 160px;
  border: 1px solid #eef2f7;
}

.offals-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.offals-btn:hover {
  background: rgba(15, 23, 42, 0.9);
}

.offals-btn.prev { left: 6px; }
.offals-btn.next { right: 6px; }

/* Give space so buttons don't cover cards */
.offals-viewport {
  padding: 0 48px;
}

@media (max-width: 768px) {
  .offals-track .offal-item { flex-basis: 140px; }
  .offals-viewport { padding: 0 42px; }
}

.leadership-photo {
    max-width: 420px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    margin-left: auto;
}

.ceo-img {
    width: 100%;
    height: 460px;        /* controls dominance */
    object-fit: cover;
    object-position: center 40%; /* crops legs first */
    border-radius: 2px;
}

.ceo-caption {
    text-align: center;
    margin-top: 14px;
    font-size: 0.95em;
}

.ceo-caption strong {
    color: #0f172a;
    font-weight: 600;
}

.ceo-caption span {
    color: #64748b;
    font-weight: 300;
}


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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 300;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            text-align: center;
            font-weight: 300;
            font-size: 0.9em;
        }



        .hero-title-white {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 5em;
            margin-bottom: 40px;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: white;
        }


        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                padding: 0 40px;
            }

            .hero h2 {
                font-size: 3.5em;
            }

            h2 {
                font-size: 2.8em;
            }

            .authority-block,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .network-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-main .container {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .container {
                padding: 0 24px;
            }

            section {
                padding: 80px 0;
            }

            .hero {
                padding: 120px 0 140px;
                min-height: auto;
            }

            .hero h2 {
                font-size: 2.5em;
            }

            h2 {
                font-size: 2.2em;
            }

            h3 {
                font-size: 1.8em;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .capability-item {
                padding: 50px 0;
            }
            
        }
        nav a.active {
            color: #1f4aa8;
            font-weight: 600;
        }