/* ============================================================ */
/* === INDEX / HOME PAGE =================================== */
/* ============================================================ */

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

#portfolio-lightbox { display:none; position:fixed; top:0; left:0; width:100%; height:100%; z-index:99999; background:rgba(15,27,61,0.92); backdrop-filter:blur(10px); opacity:0; transition:opacity 0.3s ease; }
        #lightbox-content { max-width:1000px; width:95%; transform:scale(0.92) translateY(20px); transition:transform 0.35s cubic-bezier(0.16,1,0.3,1); }
        #portfolio-lightbox.active { opacity:1; }
        #portfolio-lightbox.active #lightbox-content { transform:scale(1) translateY(0); }
        .lb-detail-item { flex:1; min-width:140px; }
        .lb-detail-label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:1.2px; color:rgba(255,255,255,0.45); margin-bottom:4px; font-weight:600; }
        .lb-detail-value { display:block; font-size:15px; color:#fff; font-weight:500; }
        @media(max-width:768px) {
            #lightbox-content { width:95%; }
            .lb-info-bar { flex-direction:column !important; gap:12px !important; }
        }

/* ============================================================ */
/* === ABOUT PAGE ========================================== */
/* ============================================================ */

/* Hero */
        .about-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .about-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .about-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .about-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            -webkit-text-stroke: 1px #fff;
        }
        .about-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .about-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .about-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .about-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .about-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Section base */
        .about-section {
            padding: 80px 0;
        }
        .about-section.bg-light {
            background: #f5f6fa;
        }
        .about-section.bg-white {
            background: #fff;
        }
        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #3C509B;
            background: rgba(60,80,155,0.08);
            padding: 5px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
        }
        .section-heading {
            font-size: 32px;
            font-weight: 800;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .section-text {
            font-size: 16px;
            color: #757D86;
            line-height: 1.75;
            max-width: 680px;
        }

        /* Two column layout */
        .two-col {
            display: flex;
            gap: 56px;
            align-items: center;
        }
        .two-col .col-content {
            flex: 1;
        }
        .two-col .col-image {
            flex: 1;
        }
        .two-col .col-image img {
            width: 100%;
            border-radius: 12px;
            object-fit: cover;
        }

        /* Check list */
        .check-list {
            list-style: none;
            padding: 0;
            margin: 24px 0 0;
        }
        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: #555d68;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .check-list li i {
            color: #3C509B;
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* Stats strip */
        .stats-strip {
            padding: 60px 0;
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 40%, #2a3f7a 100%);
            position: relative;
            overflow: hidden;
        }
        .stats-strip::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.15;
            pointer-events: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            z-index: 1;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .stat-item:last-child {
            border-right: none;
        }
        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }
        .stat-label {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.45);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* Value cards */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 28px;
        }
        .value-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 28px 24px;
            border-top: 3px solid #3C509B;
        }
        .value-card h5 {
            font-size: 16px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 14px;
        }
        .value-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .value-card ul li {
            font-size: 14px;
            color: #757D86;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .value-card ul li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #3C509B;
            flex-shrink: 0;
        }

        /* Affiliation grid */
        .affiliation-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 28px;
        }
        .affiliation-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.3s ease;
        }
        .affiliation-card:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 6px 24px rgba(28,40,83,0.06);
            transform: translateY(-2px);
        }
        .affiliation-card .af-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }
        .affiliation-card .af-name {
            font-size: 14px;
            font-weight: 700;
            color: #1C2853;
            line-height: 1.3;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .two-col { flex-direction: column; gap: 40px; }
            .two-col.reverse { flex-direction: column-reverse; }
            .value-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
        }
        @media (max-width: 768px) {
            .about-hero { padding: 100px 0 70px; }
            .about-hero h1 { font-size: 36px; }
            .about-section { padding: 60px 0; }
            .affiliation-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 575px) {
            .stats-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
            .stat-item:last-child { border-bottom: none; }
        }

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

#portfolio-lightbox { display:none; position:fixed; top:0; left:0; width:100%; height:100%; z-index:99999; background:rgba(15,27,61,0.92); backdrop-filter:blur(10px); opacity:0; transition:opacity 0.3s ease; }
        #lightbox-content { max-width:1000px; width:95%; transform:scale(0.92) translateY(20px); transition:transform 0.35s cubic-bezier(0.16,1,0.3,1); }
        #portfolio-lightbox.active { opacity:1; }
        #portfolio-lightbox.active #lightbox-content { transform:scale(1) translateY(0); }
        .lb-detail-item { flex:1; min-width:140px; }
        .lb-detail-label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:1.2px; color:rgba(255,255,255,0.45); margin-bottom:4px; font-weight:600; }
        .lb-detail-value { display:block; font-size:15px; color:#fff; font-weight:500; }
        @media(max-width:768px) {
            #lightbox-content { width:95%; }
            .lb-info-bar { flex-direction:column !important; gap:12px !important; }
        }

/* ============================================================ */
/* === CONTACT PAGE ======================================== */
/* ============================================================ */

/* Page hero */
        .contact-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .contact-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .contact-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(255,255,255,0.06) 20px,
                    rgba(255,255,255,0.06) 21px
                ),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .contact-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            -webkit-text-stroke: 1px #fff;
        }
        .contact-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .contact-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .contact-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .contact-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .contact-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Contact content section */
        .contact-section {
            padding: 80px 0 90px;
            background: #fff;
        }
        .contact-layout {
            display: flex;
            gap: 48px;
            align-items: center;
        }
        .contact-form-col {
            flex: 1;
        }
        .contact-info-col {
            flex: 0 0 380px;
        }

        /* Form */
        .contact-form-col h2 {
            font-size: 28px;
            font-weight: 800;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-bottom: 6px;
        }
        .contact-form-col .subtitle {
            color: #757D86;
            font-size: 15px;
            margin-bottom: 32px;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .contact-form .form-row {
            display: flex;
            gap: 16px;
        }
        .contact-form .form-row .form-group {
            flex: 1;
        }
        .contact-form label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #1C2853;
            margin-bottom: 6px;
        }
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 14px 16px;
            background: #f8f9fc;
            border: 1px solid #e0e2ea;
            border-radius: 8px;
            color: #1C2853;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #a0a5b2;
        }
        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: #3C509B;
            background: #fff;
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 140px;
        }
        .contact-form button {
            padding: 16px 36px;
            background: linear-gradient(135deg, #3C509B 0%, #5a6fd6 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .contact-form button:hover {
            background: linear-gradient(135deg, #4a5fb0 0%, #6b7fe0 100%);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(60,80,155,0.3);
        }

        /* Info cards */
        .info-card {
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 28px 24px;
            margin-bottom: 16px;
        }
        .info-card .info-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }
        .info-card .info-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }
        .info-card .info-title {
            font-size: 14px;
            font-weight: 700;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .info-card .info-body p,
        .info-card .info-body a {
            font-size: 15px;
            color: #757D86;
            line-height: 1.7;
            margin: 0;
        }
        .info-card .info-body a {
            transition: color 0.2s;
        }
        .info-card .info-body a:hover {
            color: #3C509B;
        }
        .info-card .hours-grid {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 4px 16px;
        }
        .info-card .hours-grid .day {
            font-size: 14px;
            color: #1C2853;
            font-weight: 600;
        }
        .info-card .hours-grid .time {
            font-size: 14px;
            color: #757D86;
        }

        /* Map section */
        .map-section {
            background: #f5f6fa;
            padding: 0;
        }
        .map-wrapper {
            position: relative;
        }
        .map-wrapper iframe {
            width: 100%;
            height: 420px;
            border: none;
            display: block;
            filter: saturate(0.85) contrast(1.05);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .contact-layout {
                flex-direction: column;
            }
            .contact-info-col {
                flex: 1;
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .contact-hero { padding: 100px 0 70px; }
            .contact-hero h1 { font-size: 36px; }
            .contact-form .form-row {
                flex-direction: column;
                gap: 16px;
            }
        }

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

/* ============================================================ */
/* === PROJECTS PAGE ======================================= */
/* ============================================================ */

/* Hero */
        .projects-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .projects-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .projects-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .projects-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .projects-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            -webkit-text-stroke: 1px #fff;
        }
        .projects-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .projects-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .projects-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .projects-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .projects-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        /* Project card overrides */
        .single-project-style-three {
            clip-path: none !important;
            border-radius: 12px;
            overflow: hidden;
        }
        .single-project-style-three .thumbnail img {
            height: 320px;
            object-fit: cover;
        }
        .single-project-style-three .inner-content {
            position: absolute;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            border-radius: 0 !important;
            padding: 14px 18px !important;
            background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.0) 100%) !important;
            width: 100%;
        }
        .single-project-style-three .inner-content .title {
            color: #fff !important;
            font-size: 17px !important;
            margin-bottom: 2px !important;
        }
        .single-project-style-three .inner-content span {
            color: rgba(255,255,255,0.65);
            font-size: 13px;
        }
        @media (max-width: 768px) {
            .projects-hero { padding: 100px 0 70px; }
            .projects-hero h1 { font-size: 36px; }
        }

        /* Project Detail Modal */
        .project-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 99998;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .project-modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        .project-modal {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            max-height: 90vh;
            display: flex;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
            transform: translateY(30px) scale(0.97);
            transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
            position: relative;
        }
        .project-modal-overlay.active .project-modal {
            transform: translateY(0) scale(1);
        }
        .project-modal-close {
            position: absolute;
            top: 16px; right: 16px;
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.5);
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            line-height: 1;
        }
        .project-modal-close:hover { background: rgba(0,0,0,0.7); }

        /* Image / Slider side */
        .project-modal-image {
            flex: 0 0 50%;
            position: relative;
            background: #0f1b3d;
            min-height: 420px;
            overflow: hidden;
        }
        .project-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            position: absolute;
            top: 0; left: 0;
            opacity: 0;
            transition: opacity 0.45s ease;
        }
        .project-modal-image img.active-slide {
            opacity: 1;
        }
        /* Slider arrows */
        .pm-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px; height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.25);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .pm-slider-arrow:hover { background: rgba(255,255,255,0.35); }
        .pm-slider-arrow.prev { left: 14px; }
        .pm-slider-arrow.next { right: 14px; }
        /* Slider dots */
        .pm-slider-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .pm-slider-dots span {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .pm-slider-dots span.active {
            background: #fff;
            transform: scale(1.25);
        }
        /* Image counter badge */
        .pm-image-counter {
            position: absolute;
            top: 16px; left: 16px;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(6px);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            z-index: 5;
            letter-spacing: 0.03em;
        }

        /* Details side */
        .project-modal-details {
            flex: 1;
            padding: 44px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .project-modal-details .pm-category {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #3C509B;
            background: rgba(60,80,155,0.1);
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .project-modal-details .pm-title {
            font-size: 28px;
            font-weight: 800;
            color: #1C2853;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .project-modal-details .pm-location {
            font-size: 15px;
            color: #757D86;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .project-modal-details .pm-location i { color: #3C509B; font-size: 14px; }
        .project-modal-details .pm-description {
            font-size: 15px;
            line-height: 1.75;
            color: #555;
            margin-bottom: 32px;
        }
        /* Stats grid */
        .pm-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 32px;
            border: 1px solid #e8ecf2;
            border-radius: 12px;
            overflow: hidden;
        }
        .pm-stat {
            padding: 18px 20px;
            border-bottom: 1px solid #e8ecf2;
            border-right: 1px solid #e8ecf2;
        }
        .pm-stat:nth-child(2n) { border-right: none; }
        .pm-stat:nth-last-child(-n+2) { border-bottom: none; }
        .pm-stat-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #9aa3ad;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .pm-stat-value {
            font-size: 16px;
            font-weight: 700;
            color: #1C2853;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .project-modal { flex-direction: column; max-height: 92vh; }
            .project-modal-image { flex: 0 0 260px; min-height: 260px; }
            .project-modal-details { padding: 30px 28px; }
            .project-modal-details .pm-title { font-size: 22px; }
            .pm-stats { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 500px) {
            .project-modal-image { flex: 0 0 200px; min-height: 200px; }
            .project-modal-details { padding: 24px 20px; }
            .pm-stats { grid-template-columns: 1fr; }
            .pm-stat { border-right: none !important; }
            .pm-stat:last-child { border-bottom: none; }
        }

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

/* ============================================================ */
/* === MEET THE TEAM PAGE ================================== */
/* ============================================================ */

/* Page hero */
        .team-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .team-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        /* Noise / grain texture overlay */
        .team-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        /* Diagonal line pattern */
        .team-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(255,255,255,0.06) 20px,
                    rgba(255,255,255,0.06) 21px
                ),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .team-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            -webkit-text-stroke: 1px #fff;
            position: relative;
            z-index: 1;
        }
        .team-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .team-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .team-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .team-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .team-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Department filter tabs */
        .dept-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        .dept-tab {
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #757D86;
            background: #f4f5f8;
            border: 1px solid #e8eaf0;
            cursor: pointer;
            padding: 10px 24px;
            border-radius: 6px;
            transition: all 0.25s ease;
        }
        .dept-tab:hover {
            color: #1C2853;
            border-color: #3C509B;
        }
        .dept-tab.active {
            color: #fff;
            background: #3C509B;
            border-color: #3C509B;
        }

        /* Team grid */
        .team-section {
            padding: 80px 0 100px;
            background: #fff;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        /* Team card — no photo */
        .team-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .team-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3C509B, #5a6fd6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .team-card:hover {
            border-color: rgba(60,80,155,0.25);
            box-shadow: 0 8px 30px rgba(28,40,83,0.08);
            transform: translateY(-2px);
        }
        .team-card:hover::before {
            transform: scaleX(1);
        }

        .team-card .initials {
            width: 56px;
            height: 56px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.05em;
            margin-bottom: 20px;
            flex-shrink: 0;
        }
        .team-card .name {
            font-size: 18px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        .team-card .role {
            font-size: 13px;
            font-weight: 600;
            color: #3C509B;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
        }
        .team-card .divider {
            width: 100%;
            height: 1px;
            background: #e8eaf0;
            margin-bottom: 16px;
        }
        .team-card .detail {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .team-card .detail:last-child {
            margin-bottom: 0;
        }
        .team-card .detail i {
            color: #3C509B;
            font-size: 13px;
            width: 16px;
            text-align: center;
            flex-shrink: 0;
        }
        .team-card .detail span {
            font-size: 14px;
            color: #757D86;
        }
        .team-card .detail a {
            font-size: 14px;
            color: #757D86;
            transition: color 0.2s;
        }
        .team-card .detail a:hover {
            color: #3C509B;
        }
        .team-card .dept-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #3C509B;
            background: rgba(60,80,155,0.08);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .team-hero { padding: 100px 0 70px; }
            .team-hero h1 { font-size: 36px; }
            .team-grid { grid-template-columns: 1fr; }
        }

.contact-cta {
            background: #f5f6fa;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }
        .contact-cta::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(60,80,155,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .contact-cta::after {
            content: '';
            position: absolute;
            bottom: -30%; left: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(28,40,83,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .contact-cta-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 48px;
        }
        .contact-cta-text {
            flex: 1;
        }
        .contact-cta-text .label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #3C509B;
            margin-bottom: 16px;
        }
        .contact-cta-text h2 {
            color: #1C2853;
            font-size: 38px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .contact-cta-text h2 span {
            color: #3C509B;
        }
        .contact-cta-text p {
            color: #757D86;
            font-size: 16px;
            line-height: 1.6;
            max-width: 440px;
        }
        .contact-cta-text .cta-contact-info {
            display: flex;
            gap: 28px;
            margin-top: 28px;
            flex-wrap: wrap;
        }
        .contact-cta-text .cta-contact-info a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #757D86;
            font-size: 14px;
            transition: color 0.2s;
        }
        .contact-cta-text .cta-contact-info a:hover {
            color: #1C2853;
        }
        .contact-cta-text .cta-contact-info i {
            color: #3C509B;
            font-size: 13px;
        }
        .contact-cta-form {
            flex: 1;
            max-width: 480px;
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 16px;
            padding: 40px 36px;
            box-shadow: 0 8px 40px rgba(28,40,83,0.07);
        }
        .contact-cta-form input,
        .contact-cta-form textarea {
            width: 100%;
            padding: 14px 16px;
            background: #f8f9fc;
            border: 1px solid #e0e2ea;
            border-radius: 8px;
            color: #1C2853;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            margin-bottom: 14px;
        }
        .contact-cta-form input::placeholder,
        .contact-cta-form textarea::placeholder {
            color: #a0a5b2;
        }
        .contact-cta-form input:focus,
        .contact-cta-form textarea:focus {
            border-color: #3C509B;
            background: #fff;
        }
        .contact-cta-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .contact-cta-form .form-row {
            display: flex;
            gap: 14px;
        }
        .contact-cta-form .form-row input {
            flex: 1;
        }
        .contact-cta-form button {
            width: 100%;
            padding: 15px 24px;
            background: linear-gradient(135deg, #3C509B 0%, #5a6fd6 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 4px;
        }
        .contact-cta-form button:hover {
            background: linear-gradient(135deg, #4a5fb0 0%, #6b7fe0 100%);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(60,80,155,0.35);
        }
        @media (max-width: 991px) {
            .contact-cta-inner {
                flex-direction: column;
                text-align: center;
            }
            .contact-cta-text p {
                max-width: 100%;
                margin: 0 auto;
            }
            .contact-cta-text .cta-contact-info {
                justify-content: center;
            }
            .contact-cta-form {
                max-width: 100%;
                width: 100%;
            }
        }
        @media (max-width: 575px) {
            .contact-cta { padding: 60px 0; }
            .contact-cta-text h2 { font-size: 28px; }
            .contact-cta-form { padding: 28px 22px; }
            .contact-cta-form .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

/* ============================================================ */
/* === SAFETY PAGE ========================================= */
/* ============================================================ */

/* Hero */
        .safety-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .safety-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .safety-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .safety-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .safety-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            -webkit-text-stroke: 1px #fff;
        }
        .safety-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .safety-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .safety-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .safety-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .safety-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Section base */
        .safety-section {
            padding: 80px 0;
        }
        .safety-section.bg-light {
            background: #f5f6fa;
        }
        .safety-section.bg-white {
            background: #fff;
        }
        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #3C509B;
            background: rgba(60,80,155,0.08);
            padding: 5px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
        }
        .section-heading {
            font-size: 32px;
            font-weight: 800;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .section-text {
            font-size: 16px;
            color: #757D86;
            line-height: 1.75;
            max-width: 680px;
        }

        /* Two column layout */
        .two-col {
            display: flex;
            gap: 56px;
            align-items: center;
        }
        .two-col .col-content {
            flex: 1;
        }
        .two-col .col-image {
            flex: 1;
        }
        .two-col .col-image .img-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            background: #e8eaf0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a0a5b2;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border: 2px dashed #d0d3dd;
        }

        /* Check list */
        .check-list {
            list-style: none;
            padding: 0;
            margin: 24px 0 0;
        }
        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: #555d68;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .check-list li i {
            color: #3C509B;
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* EMR highlight */
        .emr-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 40%, #2a3f7a 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .emr-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.15;
            pointer-events: none;
        }
        .emr-section .emr-inner {
            position: relative;
            z-index: 1;
        }
        .emr-number {
            font-size: 120px;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 8px;
            -webkit-text-stroke: 2px #fff;
        }
        .emr-label {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255,255,255,0.5);
            margin-bottom: 20px;
        }
        .emr-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.55);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Certifications grid */
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 28px;
        }
        .cert-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 24px 20px;
        }
        .cert-card .cert-title {
            font-size: 13px;
            font-weight: 700;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cert-card .cert-title i {
            color: #3C509B;
            font-size: 15px;
        }
        .cert-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cert-card ul li {
            font-size: 14px;
            color: #757D86;
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cert-card ul li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #3C509B;
            flex-shrink: 0;
        }

        /* Safety letter section */
        .letter-section {
            padding: 80px 0;
            background: #fff;
        }
        .letter-layout {
            display: flex;
            gap: 48px;
            align-items: center;
        }
        .letter-content {
            flex: 1;
        }
        .letter-preview {
            flex: 0 0 340px;
        }
        .letter-card {
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px;
            text-align: center;
        }
        .letter-card .pdf-icon {
            width: 72px;
            height: 72px;
            border-radius: 14px;
            background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #fff;
            font-size: 30px;
        }
        .letter-card .pdf-title {
            font-size: 16px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 6px;
        }
        .letter-card .pdf-size {
            font-size: 13px;
            color: #a0a5b2;
            margin-bottom: 24px;
        }
        .letter-card .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #3C509B 0%, #5a6fd6 100%);
            color: #fff;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .letter-card .download-btn:hover {
            background: linear-gradient(135deg, #4a5fb0 0%, #6b7fe0 100%);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(60,80,155,0.3);
            color: #fff;
        }
        .letter-card .view-btn {
            display: block;
            margin-top: 12px;
            font-size: 13px;
            color: #757D86;
            transition: color 0.2s;
        }
        .letter-card .view-btn:hover {
            color: #3C509B;
        }

        /* Highlights strip */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .highlight-item {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 24px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .highlight-item:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 6px 24px rgba(28,40,83,0.06);
            transform: translateY(-2px);
        }
        .highlight-item .hl-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            margin: 0 auto 14px;
        }
        .highlight-item .hl-title {
            font-size: 13px;
            font-weight: 700;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            line-height: 1.4;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .two-col { flex-direction: column; gap: 40px; }
            .two-col.reverse { flex-direction: column-reverse; }
            .letter-layout { flex-direction: column; }
            .letter-preview { flex: 1; width: 100%; max-width: 380px; }
            .highlights-grid { grid-template-columns: repeat(2, 1fr); }
            .cert-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .safety-hero { padding: 100px 0 70px; }
            .safety-hero h1 { font-size: 36px; }
            .safety-section { padding: 60px 0; }
            .emr-number { font-size: 80px; }
            .highlights-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 575px) {
            .highlights-grid { grid-template-columns: 1fr; }
        }

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

/* ============================================================ */
/* === SERVICES PAGE ======================================= */
/* ============================================================ */

/* Hero */
        .services-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .services-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .services-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .services-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .services-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            -webkit-text-stroke: 1px #fff;
        }
        .services-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .services-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .services-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .services-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .services-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Section base */
        .svc-section {
            padding: 80px 0;
        }
        .svc-section.bg-light {
            background: #f5f6fa;
        }
        .svc-section.bg-white {
            background: #fff;
        }
        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #3C509B;
            background: rgba(60,80,155,0.08);
            padding: 5px 14px;
            border-radius: 4px;
            margin-bottom: 16px;
        }
        .section-heading {
            font-size: 32px;
            font-weight: 800;
            color: #1C2853;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .section-text {
            font-size: 16px;
            color: #757D86;
            line-height: 1.75;
            max-width: 680px;
        }

        /* Service cards grid */
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .svc-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .svc-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3C509B 0%, #5a6fd6 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .svc-card:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 8px 30px rgba(28,40,83,0.08);
            transform: translateY(-3px);
        }
        .svc-card:hover::before {
            transform: scaleX(1);
        }
        .svc-card .svc-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            margin-bottom: 20px;
        }
        .svc-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 12px;
        }
        .svc-card p {
            font-size: 15px;
            color: #757D86;
            line-height: 1.7;
            margin: 0;
        }

        /* Two column layout */
        .two-col {
            display: flex;
            gap: 56px;
            align-items: center;
        }
        .two-col .col-content {
            flex: 1;
        }
        .two-col .col-image {
            flex: 1;
        }
        .two-col .col-image .img-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            background: #e8eaf0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a0a5b2;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border: 2px dashed #d0d3dd;
        }

        /* Check list */
        .check-list {
            list-style: none;
            padding: 0;
            margin: 24px 0 0;
        }
        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: #555d68;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .check-list li i {
            color: #3C509B;
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* CTA banner */
        .cta-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 40%, #2a3f7a 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.15;
            pointer-events: none;
        }
        .cta-banner .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-banner h2 {
            font-size: 40px;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 14px;
        }
        .cta-banner p {
            font-size: 17px;
            color: rgba(255,255,255,0.55);
            max-width: 520px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        /* Expertise area (from template) */
        .expertise-section {
            padding: 80px 0;
            background: #fff;
        }

        /* Core values cards */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .value-card {
            background: #f8f9fb;
            border-radius: 10px;
            padding: 28px 24px;
            border-top: 3px solid #3C509B;
        }
        .value-card h5 {
            font-size: 17px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 16px;
        }
        .value-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .value-card ul li {
            color: #757D86;
            font-size: 14px;
            margin-bottom: 8px;
            text-align: center;
        }
        .value-card ul li:last-child {
            margin-bottom: 0;
        }

        /* Compact tabs for 4 items */
        .svc-tabs-compact .nav-link {
            margin-bottom: 12px !important;
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s, border-color 0.3s, box-shadow 0.3s !important;
        }
        .svc-tabs-compact .nav-link.slide-in {
            opacity: 1;
            transform: translateX(0);
        }
        .svc-tabs-compact .nav-link:nth-child(1) { transition-delay: 0s, 0s, 0s, 0s, 0s !important; }
        .svc-tabs-compact .nav-link:nth-child(2) { transition-delay: 0.15s, 0.15s, 0s, 0s, 0s !important; }
        .svc-tabs-compact .nav-link:nth-child(3) { transition-delay: 0.3s, 0.3s, 0s, 0s, 0s !important; }
        .svc-tabs-compact .nav-link:nth-child(4) { transition-delay: 0.45s, 0.45s, 0s, 0s, 0s !important; }
        .svc-tabs-compact .nav-link:last-child {
            margin-bottom: 0 !important;
        }
        .svc-tabs-compact .business-goal-main-wrapper-6 {
            padding: 18px 20px !important;
            gap: 16px !important;
        }
        .svc-tabs-compact .business-goal-main-wrapper-6 .left-icon-number {
            height: 42px !important;
            min-width: 42px !important;
            font-size: 20px !important;
        }
        .svc-tabs-compact .business-goal-main-wrapper-6 .inner-content .title {
            font-size: 15px !important;
            margin-bottom: 3px !important;
        }
        .svc-tabs-compact .business-goal-main-wrapper-6 .inner-content .disc {
            font-size: 13px !important;
            line-height: 1.4 !important;
            margin-bottom: 0 !important;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .svc-grid { grid-template-columns: repeat(2, 1fr); }
            .two-col { flex-direction: column; gap: 40px; }
            .two-col.reverse { flex-direction: column-reverse; }
            .values-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .services-hero { padding: 100px 0 70px; }
            .services-hero h1 { font-size: 36px; }
            .svc-section { padding: 60px 0; }
            .svc-grid { grid-template-columns: 1fr; }
            .cta-banner h2 { font-size: 28px; }
        }

#contactModal input:focus, #contactModal textarea:focus { border-color: #3C509B; }
        @media (min-width: 768px) { #modalImageSide { display: block !important; } }
        @media (max-width: 767px) { #contactModal > div > div:last-child { display: none !important; } }

/* ============================================================ */
/* === COMPANY OVERVIEW PAGE ================================= */
/* ============================================================ */

/* Hero */
        .overview-hero {
            background: linear-gradient(135deg, #0f1b3d 0%, #1C2853 30%, #2a3f7a 60%, #1a3a6e 100%);
            padding: 100px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .overview-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(60,80,155,0.25) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 20%, rgba(42,63,122,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .overview-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }
        .overview-hero .hero-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.06) 20px, rgba(255,255,255,0.06) 21px),
                radial-gradient(circle 1px, rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: auto, 28px 28px;
            pointer-events: none;
            z-index: 0;
        }
        .overview-hero h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            -webkit-text-stroke: 1px #fff;
        }
        .overview-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .overview-hero .breadcrumb-nav {
            position: relative;
            margin-bottom: 20px;
            z-index: 1;
        }
        .overview-hero .breadcrumb-nav a {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        .overview-hero .breadcrumb-nav span {
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            margin: 0 8px;
        }
        .overview-hero .breadcrumb-nav .current {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        /* Section base */
        .overview-section {
            padding: 80px 0;
        }
        .overview-section.bg-light {
            background: #f5f6fa;
        }
        .overview-section.bg-white {
            background: #fff;
        }

        /* Service model section texture */
        .ov-svc-section {
            position: relative;
            overflow: hidden;
        }
        .ov-svc-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image:
                repeating-linear-gradient(0deg, rgba(28,40,83,0.07) 0px, rgba(28,40,83,0.07) 1px, transparent 1px, transparent 60px),
                repeating-linear-gradient(90deg, rgba(28,40,83,0.07) 0px, rgba(28,40,83,0.07) 1px, transparent 1px, transparent 60px);
            pointer-events: none;
            z-index: 0;
        }
        .ov-svc-section > .container {
            position: relative;
            z-index: 1;
        }

        /* Service model grid */
        .ov-svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .ov-svc-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .ov-svc-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 3px;
            background: linear-gradient(90deg, #3C509B 0%, #5a6fd6 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .ov-svc-card:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 8px 30px rgba(28,40,83,0.08);
            transform: translateY(-3px);
        }
        .ov-svc-card:hover::before {
            transform: scaleX(1);
        }
        .ov-svc-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            margin-bottom: 20px;
        }
        .ov-svc-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 10px;
        }
        .ov-svc-card p {
            font-size: 14px;
            color: #757D86;
            line-height: 1.65;
            margin: 0;
        }

        /* Capabilities grid */
        .ov-cap-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .ov-cap-card {
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 28px 24px;
            transition: all 0.3s ease;
        }
        .ov-cap-card:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 6px 24px rgba(28,40,83,0.06);
        }
        .ov-cap-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }
        .ov-cap-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }
        .ov-cap-header h5 {
            font-size: 15px;
            font-weight: 700;
            color: #1C2853;
            margin: 0;
        }
        .ov-cap-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ov-cap-card ul li {
            font-size: 14px;
            color: #757D86;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.5;
        }
        .ov-cap-card ul li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #3C509B;
            flex-shrink: 0;
        }

        /* Workforce grid */
        .ov-workforce-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 28px;
        }
        .ov-workforce-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 20px;
        }
        .ov-wf-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            flex-shrink: 0;
        }
        .ov-workforce-item h6 {
            font-size: 15px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 4px;
        }
        .ov-workforce-item p {
            font-size: 14px;
            color: #757D86;
            line-height: 1.6;
            margin: 0;
        }

        /* Mini cards (hiring/training) */
        .ov-mini-card {
            flex: 1;
            min-width: 240px;
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 24px 20px;
        }
        .ov-mini-card h6 {
            font-size: 14px;
            font-weight: 700;
            color: #1C2853;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ov-mini-card h6 i {
            color: #3C509B;
            font-size: 14px;
        }

        /* Compliance cards */
        .ov-compliance-card {
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px 28px;
            height: 100%;
        }
        .ov-compliance-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }
        .ov-compliance-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }
        .ov-compliance-header h5 {
            font-size: 18px;
            font-weight: 700;
            color: #1C2853;
            margin: 0;
        }
        .ov-compliance-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ov-compliance-card ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: #555d68;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .ov-compliance-card ul li:last-child {
            margin-bottom: 0;
        }
        .ov-compliance-card ul li i {
            color: #3C509B;
            font-size: 13px;
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* Organization grid */
        .ov-org-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .ov-org-card {
            background: #fff;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .ov-org-card:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 8px 30px rgba(28,40,83,0.08);
            transform: translateY(-3px);
        }
        .ov-org-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            margin: 0 auto 16px;
        }
        .ov-org-card h5 {
            font-size: 16px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 8px;
        }
        .ov-org-card p {
            font-size: 14px;
            color: #757D86;
            line-height: 1.6;
            margin: 0;
        }

        /* Strength items */
        .ov-strength-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 8px;
            padding: 14px 16px;
        }
        .ov-strength-item i {
            color: #3C509B;
            font-size: 15px;
            flex-shrink: 0;
        }
        .ov-strength-item span {
            font-size: 14px;
            font-weight: 600;
            color: #1C2853;
        }

        /* Operational Strength image slider */
        .ov-strength-slider-wrap {
            border-radius: 12px;
            overflow: hidden;
            min-height: 400px;
        }
        .ov-strength-swiper {
            width: 100%;
            height: 100%;
        }
        .ov-strength-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .ov-strength-swiper .swiper-slide {
            height: auto;
        }

        /* Design & Coordination slider */
        .ov-coord-swiper .service-single-main-wrapper-five {
            height: 100%;
        }
        .ov-coord-swiper .swiper-slide {
            height: auto;
        }
        .ov-coord-next,
        .ov-coord-prev {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #e2e6ed;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #1C2853;
            font-size: 16px;
        }
        .ov-coord-next:hover,
        .ov-coord-prev:hover {
            background: #3C509B;
            border-color: #3C509B;
            color: #fff;
        }

        /* Affiliation grid (full-width module) */
        .ov-affiliation-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }
        .ov-affiliation-card {
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .ov-affiliation-card:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 8px 30px rgba(28,40,83,0.08);
            transform: translateY(-3px);
        }
        .ov-af-icon-lg {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            margin: 0 auto 16px;
        }
        .ov-affiliation-card h5 {
            font-size: 15px;
            font-weight: 700;
            color: #1C2853;
            margin-bottom: 8px;
        }
        .ov-affiliation-card p {
            font-size: 13px;
            color: #757D86;
            line-height: 1.6;
            margin: 0;
        }

        /* Affiliation list (legacy) */
        .ov-affiliation-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .ov-affiliation-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 10px;
            padding: 18px 20px;
            transition: all 0.3s ease;
        }
        .ov-affiliation-item:hover {
            border-color: rgba(60,80,155,0.2);
            box-shadow: 0 4px 16px rgba(28,40,83,0.06);
        }
        .ov-af-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: linear-gradient(135deg, #1C2853 0%, #3C509B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            flex-shrink: 0;
        }
        .ov-affiliation-item span {
            font-size: 15px;
            font-weight: 600;
            color: #1C2853;
        }

        /* Corporate info card */
        .ov-corp-card {
            background: #f8f9fc;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 28px 24px;
        }
        .ov-corp-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #e8eaf0;
        }
        .ov-corp-item:first-child {
            padding-top: 0;
        }
        .ov-corp-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .ov-corp-item > i {
            color: #3C509B;
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }
        .ov-corp-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #9aa3ad;
            margin-bottom: 3px;
        }
        .ov-corp-value {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: #1C2853;
        }
        a.ov-corp-value {
            transition: color 0.2s;
        }
        a.ov-corp-value:hover {
            color: #3C509B;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .ov-svc-grid { grid-template-columns: repeat(2, 1fr); }
            .ov-cap-grid { grid-template-columns: 1fr; }
            .ov-org-grid { grid-template-columns: repeat(2, 1fr); }

            .ov-affiliation-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .overview-hero { padding: 100px 0 70px; }
            .overview-hero h1 { font-size: 36px; }
            .overview-section { padding: 60px 0; }
            .ov-svc-grid { grid-template-columns: 1fr; }
            .ov-affiliation-grid { grid-template-columns: repeat(2, 1fr); }
            .ov-org-grid { grid-template-columns: 1fr; }

            .ov-mini-card { min-width: 100%; }
        }
        @media (max-width: 575px) {

            .ov-affiliation-grid { grid-template-columns: 1fr; }
        }

/* ============================================================ */
/* === GLOBAL REVISIONS & MOBILE OPTIMIZATIONS ================ */
/* ============================================================ */


/* Footer: Center copyright and privacy policy on mobile */
@media (max-width: 768px) {
    .footer-bottom-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .footer-bottom-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

/* Home: Hero H1 fluid scaling */
#home h1 {
    font-size: clamp(42px, 8vw, 72px) !important;
    line-height: 1.1 !important;
}
#home h2 {
    font-size: clamp(14px, 2.8vw, 26px) !important;
}

/* Home: SECON Values - "30+ Years Experience" badge mobile positioning */
@media (max-width: 991px) {
    .thumbnail-accountent-why-choose {
        position: relative !important;
    }
    .thumbnail-accountent-why-choose .counter-about-area {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        border-radius: 0 0 14px 14px !important;
        background: linear-gradient(to top, rgba(28,40,83,0.95) 0%, rgba(28,40,83,0.85) 50%, rgba(28,40,83,0.0) 100%) !important;
        padding: 40px 20px 16px !important;
        text-align: center !important;
        width: 100% !important;
        transform: none !important;
    }
}

/* Home & About: Portfolio slider - prevent overflow on mobile */
@media (max-width: 991px) {
    .flowating-right {
        width: 100% !important;
        overflow: hidden !important;
        margin-right: 0 !important;
    }
    .case-studies-wrapper-main-5 {
        overflow: hidden !important;
    }
    .single-case-studies-four {
        height: 350px !important;
    }
    .single-case-studies-four .thumbnail img {
        width: 100% !important;
        max-width: 100% !important;
    }
    .rts-business-case-area .tite-between-area-8 .mb--30 {
        margin-bottom: 10px !important;
    }
}
@media (max-width: 575px) {
    .single-case-studies-four {
        height: 280px !important;
    }
}

/* Safety: Cert cards full-width on mobile */
@media (max-width: 991px) {
    .cert-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    .cert-card {
        padding: 20px 18px !important;
        width: 100% !important;
    }
    /* Let the cert grid column stretch full width */
    .two-col .col-content:has(.cert-grid) {
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }
}

/* Projects: Category tabs - mobile friendly horizontal scroll */
@media (max-width: 768px) {
    .nav-project-tab {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 8px !important;
        padding-bottom: 4px;
        justify-content: stretch;
        border-bottom: none !important;
    }
    .nav-project-tab .nav-item {
        flex: 1 1 0 !important;
        min-width: 0;
    }
    .nav-project-tab .nav-link {
        white-space: nowrap !important;
        text-align: center !important;
        width: 100% !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }
}

/* Projects: Popup - mobile scroll and visibility fix */
@media (max-width: 900px) {
    .project-modal {
        flex-direction: column !important;
        max-height: 92vh !important;
        overflow-y: auto !important;
    }
    .project-modal-image {
        flex: 0 0 220px !important;
        min-height: 220px !important;
    }
    .project-modal-details {
        overflow-y: visible !important;
        flex: 1 1 auto !important;
        padding: 28px 24px !important;
    }
    .project-modal-close {
        top: 12px !important;
        right: 12px !important;
        z-index: 20 !important;
    }
}
@media (max-width: 500px) {
    .project-modal-image {
        flex: 0 0 180px !important;
        min-height: 180px !important;
    }
    .project-modal-details {
        padding: 22px 18px !important;
    }
    .project-modal-details .pm-title {
        font-size: 20px !important;
    }
    .project-modal-details .pm-description {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
}

/* Services: Reduce margin between "Why Clients Choose Us" headline and content */
.our-experties-area .title-style-one.eight.center {
    margin-bottom: 10px !important;
}

/* Services: Ensure CTA button is centered */
.cta-banner .cta-inner {
    text-align: center;
}
.cta-banner .cta-inner .rts-btn {
    margin: 0 auto;
}

/* About dropdown: ensure proper positioning for desktop nav */
.nav-area ul li.has-dropdown {
    position: relative !important;
}
.nav-area ul li.has-dropdown::after {
    right: -14px;
    font-size: 12px;
}

