/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    z-index: 9999 !important;
    width: 100vw !important;
    height: 60px !important;   /* header itself is 60px tall */
    overflow: visible !important;  /* important: let content overflow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(27, 79, 150, 0.12) !important;
    display: block !important; /* Ensure header always stays visible */
    visibility: visible !important; /* Force visibility */
    transform: none !important; /* Prevent any transforms */
    opacity: 1 !important; /* Ensure full opacity */
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0097b2;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 20% 100%);
    z-index: -1;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;  /* centers logo + nav items */
}

.navbar {
  flex: 1 1 auto;
  height: 60px;   /* matches header height */
  display: flex;
  align-items: center;       /* vertically centers nav links */
  padding-left: 20px;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 30px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: flex-end;
    margin-left: auto;
    padding-left: 20px;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 0px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-complete {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin: 0;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    align-items: center;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10000;
    background-color: transparent;
}

.nav-menu li a {
  display: flex;
  align-items: center;       /* makes sure text inside links is centered */
  height: auto;   /* auto height for compact design */
}

.nav-menu a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    letter-spacing: 0.8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector {
    font-size: 11px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    z-index: 100;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content Wrapper */
.main-content-wrapper {
    flex: 1;
    margin-top: 60px;
    padding-bottom: 0;
    position: relative;
    z-index: auto;
    background: #f8f9fa;
}

/* Hero Section */
.hero {
    min-height: 320px;
    height: auto;
    background: url('picture/Home.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 0 1rem 0;
    z-index: auto;
}

.hero-container {
    position: relative;
    min-height: 320px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-left {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: linear-gradient(
        45deg,
        rgba(27, 79, 150, 0.02) 0%,
        transparent 50%
    );
}

.hero-image {
    position: relative;
    width: 85%;
    height: 75%;
    z-index: 10;
    margin: 5% 0 12.5% 0%;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.industrial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    transform: scale(1.02);
}

.hero-image:hover .industrial-image {
    opacity: 0.95;
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(27, 79, 150, 0.05) 0%,
        rgba(0, 212, 255, 0.02) 20%,
        transparent 85%,
        rgba(248, 249, 250, 0.15) 100%
    );
    pointer-events: none;
    z-index: 3;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(
        to left,
        rgba(248, 249, 250, 0.4) 0%,
        rgba(248, 249, 250, 0.2) 50%,
        transparent 100%
    );
}

@keyframes sparkle {
    0% { transform: translateX(0px) translateY(0px); opacity: 0.3; }
    50% { transform: translateX(10px) translateY(-5px); opacity: 0.7; }
    100% { transform: translateX(0px) translateY(0px); opacity: 0.3; }
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-text-container {
    position: relative;
    z-index: 10;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: none;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title:hover {
    color: #0097b2;
    transform: scale(1.05);
    text-shadow: 0 5px 15px rgba(0, 151, 178, 0.3);
}

.hero-title:active {
    transform: scale(0.98);
    color: #00D4FF;
    transition: all 0.1s ease;
}

/* Individual word animation */
.hero-title span {
    display: inline-block;
    transition: all 0.12s ease;
}

/* Disable transitions during typing animation */
.hero-title.typing span {
    transition: none !important;
    transform: none !important;
    color: inherit !important;
    text-shadow: none !important;
}

.hero-title span:hover {
    color: #00D4FF;
    transform: translateY(-8px);
    text-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

/* Title line indentation */
.title-line-1 {
    text-align: left;
    margin-left: 4rem;
    position: relative;
    z-index: 15;
}

.title-line-2 {
    text-align: right;
    margin-right: 4rem;
    position: relative;
    z-index: 15;
}

/* Subtitle single line indentation */
.subtitle-single-line {
    text-align: center;
    margin-left: 0;
}

/* Hero Subtitle and Description */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 1.5rem 0 1rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    margin-left: 0;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    border-radius: 10px;
}

/* Vision & Mission Section */
.home-intro-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
}

.vision-mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 0 2rem 1px 2rem;
}

.vision-mission-image {
    display: flex;
    justify-content: center;
}

.vision-mission-main-image {
    width: 100%;
    max-width: 600px;
    height: 450px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-mission-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision-text {
    margin-bottom: 2rem;
    margin-right: 2rem;
}

.mission-text {
    margin-bottom: 2rem;
    margin-left: 4rem;
}

.company-description {
    display: flex;
    flex-direction: column;
    padding-right: 3rem;
}

.company-description p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
    text-indent: 2em;
}

.company-description p:last-child {
    margin-bottom: 0;
}

.company-description strong {
    color: #0097b2;
    font-weight: 700;
}

.vision-text h3, .mission-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.vision-text p, .mission-text p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

/* Expertise Section */
.expertise-section {
    padding: 4rem 0 7rem 0;
    background: #f8f9fa;
    position: relative;
}

.expertise-layout {
    text-align: center;
}

.expertise-title-plain {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0097b2;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-new-section .expertise-title-plain {
    color: #0097b2;
}

.expertise-text-section {
    grid-column: 1;
    grid-row: 1;
    padding-right: 2rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 0.95) 25%, 
        rgba(235, 245, 255, 0.9) 50%, 
        rgba(220, 235, 255, 0.85) 75%, 
        rgba(200, 225, 255, 0.8) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    border-radius: 25px;
    padding: 2rem 3rem;
    box-shadow: 
        0 8px 20px rgba(0, 151, 178, 0.15),
        0 4px 10px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-text-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #1B4F96 0%, #00D4FF 50%, #1B4F96 100%);
    border-radius: 28px;
    z-index: -1;
}

.expertise-text-section .section-header-enhanced {
    padding-left: 0;
    position: relative;
    text-align: center;
    margin: 0;
}

.expertise-text-section .section-header-enhanced h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1B4F96;
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.expertise-description-section {
    grid-column: 2;
    grid-row: 1;
    padding-left: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50px;
    padding: 2.5rem;
    border: 1px solid rgba(27, 79, 150, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.expertise-description-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
    font-weight: 400;
    text-align: justify;
}

.expertise-visual-section {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.expertise-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    margin-top: 1rem;
}

.expertise-image-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.expertise-main-image {
    width: 90%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expertise-cards-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.expertise-image-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.expertise-main-image {
    width: 90%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 280px;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.epcc-card {
    top: 10%;
    left: -15%;
}

.pipeline-card {
    top: 10%;
    right: -15%;
}

.odorisation-card {
    bottom: -10%;
    left: 17%;
}

.maintenance-card {
    bottom: -20%;
    right: 18%;
}

.floating-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B4F96;
    margin: 0 0 1rem 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.expertise-right {
    position: relative;
    background: url('picture/Industrial_Pipeline_Welding_Image.png') center center/cover;
}

.expertise-image {
    display: none;
}

.expertise-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
}

.stat-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1B4F96 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0097b2 0%, #00D4FF 100%);
    border-radius: 2px;
}

.credentials-section {
    background: #f8f9fa;
    padding: 6rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.highlight-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
    padding: 3.5rem 3rem;
    border-radius: 16px;
    border: 1px solid rgba(27, 79, 150, 0.12);
    box-shadow: 0 8px 24px rgba(27, 79, 150, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #1B4F96;
}

.highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(27, 79, 150, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
    border-left-color: #2563eb;
    border-color: rgba(37, 99, 235, 0.15);
}


.highlight-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B4F96;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    position: relative;
}

.highlight-item p {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    text-align: justify;
}

/* Call to Action Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 2rem 4rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.cta-primary {
    background: #1B4F96;
    color: white;
    box-shadow: 0 4px 15px rgba(27, 79, 150, 0.3);
}

.cta-primary:hover {
    background: #00D4FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #1B4F96;
    border: 2px solid #1B4F96;
}

.cta-secondary:hover {
    background: #1B4F96;
    color: white;
    transform: translateY(-2px);
}

/* Company Achievements */
.achievements-section {
    margin: 4rem auto;
    max-width: 1200px;
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.achievements-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 79, 150, 0.2);
    border-color: #1B4F96;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.achievement-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project Highlights */
.project-highlights {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 79, 150, 0.2);
    border-color: #1B4F96;
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1B4F96;
}

.project-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-year {
    font-size: 0.8rem;
    color: #1B4F96;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-item p:not(.project-year) {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Technical Capabilities */
.technical-capabilities {
    margin: 4rem auto;
    max-width: 1200px;
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.capabilities-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capabilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.capability-badge {
    background: rgba(27, 79, 150, 0.1);
    color: #1B4F96;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(27, 79, 150, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-badge:hover {
    background: #1B4F96;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 79, 150, 0.3);
}

/* Industry Recognition */
.industry-recognition {
    margin: 4rem auto 2rem auto;
    max-width: 1200px;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.recognition-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recognition-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.recognition-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.recognition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(27, 79, 150, 0.2);
    border-color: #1B4F96;
}

.recognition-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1B4F96;
}

.recognition-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recognition-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Company Credentials */
.credentials-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.credentials-layout + .credentials-layout {
    margin-top: 2rem;
}

.credentials-layout h2 {
    flex-shrink: 0;
    width: 220px;
    margin: 0;
}

.credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 1 calc(25% - 0.75rem);
    min-width: 70px;
    min-height: 110px;
    padding: 0.3rem 0.1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border-left: 3px solid #0097b2;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(0, 151, 178, 0.6), 0 0 40px rgba(0, 151, 178, 0.3);
    transform: scale(1.05);
    border-left: 3px solid #00d4ff;
}

.credential-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credential-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.client-logo {
    height: 65px;
}

.client-logo-gasmy {
    height: 85px;
}

.client-logo-ngc {
    height: 105px;
}

.client-logo-zennex {
    height: 35px;
}

.client-logo-mof {
    height: 45px;
}

.client-logo-hydrospeed {
    height: 85px;
}

.client-logo-sec {
    height: 85px;
}

.credential-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1B4F96;
}

.credential-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 0.3rem;
}

.credential-item strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1B4F96;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.credential-item span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

/* Credentials & Clients - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .credentials-layout {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .credentials-layout h2 {
        width: 100%;
        flex-shrink: 1;
        text-align: center;
    }

    .credentials {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
    }

    .credential-item {
        flex: none;
        width: 100%;
        min-width: 0;
        min-height: 110px;
        margin: 0;
        box-sizing: border-box;
    }

    .credential-logo,
    .client-logo,
    .client-logo-gasmy,
    .client-logo-ngc,
    .client-logo-zennex,
    .client-logo-mof,
    .client-logo-hydrospeed,
    .client-logo-sec {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        max-height: 65px !important;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }
}

/* Credentials & Clients - Mobile */
@media (max-width: 768px) {
    .credentials-layout {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .credentials-layout h2 {
        width: 100%;
        flex-shrink: 1;
        text-align: center;
    }

    .credentials {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .credential-item {
        flex: 1 1 100%;
        width: 100%;
        max-width: 200px;
        min-width: 0;
        min-height: 60px;
        margin: 0 auto;
        padding: 0.3rem;
        box-sizing: border-box;
    }

    .credential-logo,
    .client-logo,
    .client-logo-gasmy,
    .client-logo-ngc,
    .client-logo-zennex,
    .client-logo-mof,
    .client-logo-hydrospeed,
    .client-logo-sec {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        max-height: 45px !important;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .client-logo-ngc,
    .client-logo-sec {
        max-height: 55px !important;
    }
}

/* Simple Dots */
.simple-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
}

.simple-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.simple-dots .dot:first-child {
    background: #1B4F96;
}

.simple-dots .dot:hover {
    transform: scale(1.3);
    background: #00D4FF;
}


/* Decorative Dots */
.decorative-dots-left {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="6" cy="2" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="10" cy="2" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="14" cy="2" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="18" cy="2" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="2" cy="6" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="6" cy="6" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="10" cy="6" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="14" cy="6" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="18" cy="6" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="2" cy="10" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="6" cy="10" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="14" cy="10" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="18" cy="10" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="2" cy="14" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="6" cy="14" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="10" cy="14" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="14" cy="14" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="18" cy="14" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="2" cy="18" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="6" cy="18" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="10" cy="18" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="14" cy="18" r="1" fill="rgba(0,0,0,0.3)"/><circle cx="18" cy="18" r="1" fill="rgba(0,0,0,0.3)"/></svg>') repeat;
    background-size: 20px 20px;
    z-index: 5;
}

.decorative-dots-right {
    position: absolute;
    bottom: 20%;
    right: 30%;
    width: 120px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="6" cy="2" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="10" cy="2" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="14" cy="2" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="18" cy="2" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="2" cy="6" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="6" cy="6" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="10" cy="6" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="14" cy="6" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="18" cy="6" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="2" cy="10" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="6" cy="10" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="14" cy="10" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="18" cy="10" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="2" cy="14" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="6" cy="14" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="10" cy="14" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="14" cy="14" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="18" cy="14" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="2" cy="18" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="6" cy="18" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="10" cy="18" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="14" cy="18" r="1" fill="rgba(0,0,0,0.2)"/><circle cx="18" cy="18" r="1" fill="rgba(0,0,0,0.2)"/></svg>') repeat;
    background-size: 20px 20px;
    z-index: 5;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1B4F96;
    background: linear-gradient(135deg, #00D4FF, #1B4F96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9ff;
    position: relative;
}

.table-of-contents .section-header {
    border-left: 5px solid #1B4F96;
    padding-left: 2rem;
}

.toc-list {
    display: grid;
    gap: 1.5rem;
    margin-left: 6rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.toc-number {
    color: #666;
    font-weight: 500;
    min-width: 3rem;
}

.toc-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc-item a:hover {
    color: #1B4F96;
}

/* Company Overview */
.company-overview {
    background: white;
}

.overview-hero {
    margin-bottom: 3rem;
}

.overview-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1B4F96 0%, #00D4FF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

.overview-details {
    background: rgba(27, 79, 150, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-item, .detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item label, .detail-section label {
    font-weight: 600;
    color: #1B4F96;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.detail-item span {
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.registration-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reg-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(27, 79, 150, 0.1);
}

.reg-label {
    font-weight: 500;
    color: #666;
}

/* About Us Section Styles */
.about-section {
    background: white;
    padding: 0;
    min-height: 100vh;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-overview, .our-values, .organizational-structure, .certificates-policies {
    background: rgba(248, 249, 250, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1B4F96;
}

.company-overview p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.2rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
}

.expertise-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 2rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.expertise-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: #1B4F96;
    font-weight: bold;
    font-size: 1.2rem;
}

.company-overview h3, .our-values h3, .organizational-structure h3, .certificates-policies h3 {
    color: #1B4F96;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.detail-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-row strong {
    color: #1B4F96;
    font-weight: 600;
    min-width: 140px;
    flex-shrink: 0;
}

.detail-row span {
    color: #555;
    line-height: 1.5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 151, 178, 0.15);
    border-color: #1B4F96;
}

.value-item h4 {
    color: #1B4F96;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.team-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.director-profile, .technical-team {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(27, 79, 150, 0.1);
}

.director-profile h4, .technical-team h4 {
    color: #1B4F96;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-profile p, .technical-team p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.credential-detail {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
}

.credential-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 151, 178, 0.15);
    border-color: #1B4F96;
}

.credential-detail h4 {
    color: #1B4F96;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-detail p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Vision Section Styles */
.vision-section {
    background: linear-gradient(135deg, rgba(27, 79, 150, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1B4F96;
    margin-bottom: 2rem;
}

.vision-section h3 {
    color: #1B4F96;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Section Styles */
.mission-section {
    background: rgba(248, 249, 250, 0.7);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00D4FF;
    margin-bottom: 2rem;
}

.mission-section h3 {
    color: #1B4F96;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #1B4F96;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Management Section Styles */
.management-section {
    background: rgba(248, 249, 250, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1B4F96;
    margin-bottom: 2rem;
}

.management-section h3 {
    color: #1B4F96;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.management-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
}

.management-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 151, 178, 0.15);
    border-color: #1B4F96;
}

.management-item h4 {
    color: #1B4F96;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.management-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Organizational Chart Styles */
.org-chart {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

.org-level {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.org-box {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 250px;
}

.org-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 79, 150, 0.2);
}

.org-box.executive {
    border: 3px solid #1B4F96;
    background: linear-gradient(135deg, #1B4F96 0%, #00D4FF 100%);
    color: white;
}

.org-box.management {
    border: 3px solid #00D4FF;
}

.org-box.department {
    border: 2px solid rgba(27, 79, 150, 0.3);
}

.org-box.support {
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.org-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.org-box.executive h4 {
    color: white;
}

.org-box:not(.executive) h4 {
    color: #1B4F96;
}

.org-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.org-box.executive p {
    color: rgba(255, 255, 255, 0.9);
}

.org-box:not(.executive) p {
    color: #666;
}

/* Footer */
.footer {
    background: #0097b2;
    color: #ffffff;
    padding: 0;
    width: 100vw;
    position: static;
    z-index: 0;
    height: auto;
    min-height: auto;
}

.footer-container {
    width: 100vw;
    padding: 0;
    margin: 0;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: auto;
}


.footer-info {
    text-align: left;
    background: #ffffff;
    color: #333;
    padding: 2rem 30px;
}

.footer-summary {
    text-align: left;
    padding: 2rem 30px;
}

.footer-summary h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-links-rows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-links-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links-row a {
    color: #e0f7fa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links-row a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-info h3 {
    margin-bottom: 0.6rem;
    color: #0097b2;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-tagline {
    font-style: normal;
    color: #0097b2;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-certifications {
    color: #0097b2;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.2;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 20px;
        min-height: 45px;
        width: 100%;
    }
    
    .nav-logo {
        flex: 0 0 auto;
    }
    
    .nav-menu {
        gap: 30px;
        font-size: 14px;
    }
    
    .nav-right {
        gap: 35px;
        justify-content: flex-end;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        height: 50vh;
    }
    
    .hero-right {
        height: 50vh;
    }
    
    .hero-image {
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header {
        width: 100% !important;
    }

    .header::after {
        clip-path: none;
        left: 0;
        right: 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .nav-logo {
        flex: 0 0 auto;
        background: #ffffff;
        padding: 6px 14px;
        border-radius: 8px;
    }

    .logo-complete {
        height: 38px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin-left: 0;
        padding-left: 0;
        background: #0097b2;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        box-sizing: border-box;
    }

    .nav-right.active {
        max-height: 320px;
        padding: 16px 24px 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 18px;
        justify-content: flex-start;
        font-size: 16px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        text-align: left;
        padding: 2px 0;
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    .main-content-wrapper {
        margin-top: 80px;
        padding-bottom: 40px;
    }

    .header {
        width: 100% !important;
    }

    .header::after {
        clip-path: none;
        left: 0;
        right: 0;
    }

    .hero {
        min-height: 380px;
        height: auto;
    }

    .hero-container {
        min-height: 380px;
        height: auto;
    }

    .navbar {
        padding: 10px 0;
        min-height: 45px;
    }

    .nav-container {
        padding: 0 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        min-height: auto;
        width: 100%;
        position: relative;
    }

    .nav-logo {
        flex: 0 0 auto;
        background: #ffffff;
        padding: 6px 14px;
        border-radius: 8px;
    }

    .logo-complete {
        height: 38px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin-left: 0;
        padding-left: 0;
        background: #0097b2;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        box-sizing: border-box;
    }

    .nav-right.active {
        max-height: 320px;
        padding: 16px 24px 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 18px;
        justify-content: flex-start;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        text-align: left;
        padding: 2px 0;
        border-radius: 4px;
    }

    .nav-actions {
        align-self: center;
        margin-top: 18px;
        padding: 6px 12px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }



    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-left,
    .hero-right {
        padding: 1rem;
    }
    
    .hero-image {
        border-radius: 20px;
        margin: 1rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .decorative-dots-left,
    .decorative-dots-right {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .toc-list {
        margin-left: 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding-top: 2rem;
        width: 100%;
    }

    .footer-container {
        width: 100%;
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-info {
        text-align: center;
        max-width: 100%;
    }

    .footer-summary {
        text-align: center;
        max-width: 100%;
    }

    .footer-links-rows {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links-row {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 0;
        min-height: 40px;
    }

    .nav-container {
        padding: 0 15px;
        width: 100%;
    }

    .logo-complete {
        height: 34px;
    }

    .nav-menu {
        gap: 0;
        font-size: 13px;
    }
    
    .nav-actions {
        padding: 4px 8px;
    }
    
    .language-selector {
        font-size: 11px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .overview-details {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* About Us Professional Design */
.about-hero {
    background: linear-gradient(135deg, #1B4F96 0%, #00D4FF 50%, #1B4F96 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    padding-top: calc(60px + 2rem);
    animation: slideInFromTop 1s ease-out;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.about-hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.2;
}

.about-main-content {
    background: #f8f9fa;
    position: relative;
}

/* Introduction Section */
.about-intro {
    padding: 3rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    max-width: none;
    margin: 0;
}

.intro-text {
    padding: 0 2rem 0 2rem;
}


.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1B4F96, #00D4FF);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    width: fit-content;
}

.building-text-section h2,
.intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem !important;
    line-height: 1.2;
}

.intro-lead {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-context {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.company-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: fadeInStats 1s ease-out 0.5s both;
}

@keyframes fadeInStats {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 151, 178, 0.05);
    border-radius: 0;
    flex: 1;
    transition: transform 0.3s ease;
}


.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 151, 178, 0.15);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0097b2;
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

/* Introduction Section - Mobile */
@media (max-width: 768px) {
    .home-intro-section {
        padding: 2rem 0;
    }

    .home-intro-section h2 {
        text-align: center;
    }

    .vision-mission-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
        text-align: center;
    }

    .vision-mission-grid::before {
        display: none;
    }

    .vision-mission-image {
        order: -1;
    }

    .vision-mission-main-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .vision-mission-content {
        gap: 1.5rem;
    }

    .company-description {
        padding-right: 0;
        padding-left: 0;
    }

    .company-description p {
        text-align: left;
        text-indent: 0;
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 20px;
    }

    .company-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .stat-item {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

.intro-visual {
    padding-left: 0;
    padding-right: 2rem;
}

.about-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

.about-malaysia-image {
    width: 110%;
    max-width: 750px;
    height: 100%;
    max-height: 800px;
    min-height: 600px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-radius: 0;
    opacity: 0.9;
}

.about-malaysia-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(248, 249, 250, 0.1) 0%, 
        rgba(248, 249, 250, 0.05) 50%, 
        rgba(248, 249, 250, 0.15) 100%);
    border-radius: 0;
    pointer-events: none;
}

.about-malaysia-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 79, 150, 0.2);
}

/* Capabilities Section */
.capabilities-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-enhanced h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.services-section .section-header-enhanced h2 {
    color: #545454;
}

.services-section .section-header-enhanced p {
    color: #545454;
}

.services-section .section-header-enhanced p strong {
    color: #0097b2;
}

.leadership-section .section-header-enhanced {
    text-align: center;
    margin-bottom: 1rem;
}

.leadership-section .section-header-enhanced h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: 'Montserrat', 'Inter', sans-serif;
    background: #1B4F96;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    display: inline-block;
    border: 2px solid #1B4F96;
    box-shadow: 0 2px 8px rgba(0, 151, 178, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.leadership-section .section-header-enhanced h2:hover {
    background: white;
    color: #1B4F96;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 79, 150, 0.25);
}

.section-header-enhanced p {
    font-size: 0.9rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.capability-card {
    background: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(27, 79, 150, 0.2);
    border-color: #1B4F96;
}

.capability-card.primary {
    background: linear-gradient(135deg, #1B4F96 0%, #00D4FF 100%);
    color: white;
}

.capability-card.primary:hover {
    transform: translateY(-8px) scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2.5rem;
    color: #1B4F96;
}

.capability-card.primary .card-icon {
    color: white;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.capability-card.primary .card-header h3 {
    color: white;
}

.capability-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.capability-card.primary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Vision Mission Section */
.home-intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
}

.vision-mission-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #1B4F96 20%, #1B4F96 80%, transparent 100%);
}

.vm-card {
    background: #ffffff;
    border-radius: 0;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 79, 150, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-card {
    animation-delay: 0.2s;
}

.vision-card {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 151, 178, 0.15);
    border-color: #0097b2;
}

.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 151, 178, 0.03) 100%);
    border-top: 4px solid #0097b2;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0097b2 0%, #00D4FF 100%);
}

.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 212, 255, 0.03) 100%);
    border-top: 4px solid #00D4FF;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF 0%, #0097b2 100%);
}

.vm-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 151, 178, 0.1);
}

.vm-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #0097b2, #00D4FF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.3);
    transition: all 0.3s ease;
}

.vm-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 151, 178, 0.4);
}

.vm-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0097b2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.vm-content p strong {
    color: #0097b2;
    font-weight: 600;
}

/* Experiences Section */
.experiences-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#key-personnel-experiences {
    margin-top: 6rem;
}

.experiences-section .section-header-enhanced h2 {
    font-size: 1.7rem;
}

.experiences-image {
    margin-top: 1.5rem;
    text-align: center;
}

.experiences-image img {
    max-width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.experiences-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.experiences-collage img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .experiences-collage {
        grid-template-columns: repeat(2, 1fr);
    }
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-card {
    background: white;
    border-radius: 0;
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 151, 178, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0097b2, #00D4FF);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #00D4FF;
}

.experience-card h3 {
    font-size: 1.0rem;
    font-weight: 600;
    color: #545454;
    width: 100%;
    margin-bottom: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.4;
}

.experience-role {
    color: #545454;
}

.experience-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0097b2;
    margin-bottom: 0.4rem;
    text-align: left;
    width: 100%;
}

.experience-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
}

.experience-list li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.experience-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-top: 1px solid rgba(0, 151, 178, 0.1);
    padding-top: 0.8rem;
    text-align: left;
    width: 100%;
}

.experience-meta span {
    font-size: 0.85rem;
    color: #545454;
}

.experience-meta strong {
    color: #0097b2;
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.point-indicator {
    color: #1B4F96;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Leadership Section */
.leadership-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.building-combined-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 400px;
}

.building-text-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.building-image-section {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.building-combined-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.leadership-content {
    margin-top: 0.5rem;
}

.leadership-combined-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 400px;
}

.leadership-image-section {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.leadership-combined-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.leadership-text-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.leader-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1B4F96, #00D4FF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(27, 79, 150, 0.3);
}

.leader-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.1rem;
    color: #1B4F96;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential-badge {
    background: rgba(27, 79, 150, 0.1);
    color: #1B4F96;
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(27, 79, 150, 0.2);
}

.leader-description p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: white;
}

.team-section .section-header-enhanced {
    margin-bottom: 3rem;
    text-align: center;
}

.team-section .section-header-enhanced h2 {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.team-section .section-header-enhanced h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1B4F96 0%, #00D4FF 100%);
    border-radius: 2px;
}

.team-section .section-header-enhanced p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(27, 79, 150, 0.2);
}

.team-photo {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.photo-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B4F96, #00D4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(27, 79, 150, 0.3);
}

.member-photo + .photo-placeholder {
    display: none;
}

.member-info {
    padding: 2rem 1.5rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.member-position {
    color: #1B4F96;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .team-photo {
        height: 200px;
    }
    
    .member-info {
        padding: 1.5rem 1rem;
    }
    
    .photo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        padding: 3rem 0;
    }
}

/* Organizational Structure */
.org-structure-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.org-structure-section .section-header-enhanced {
    margin-bottom: 1rem !important;
}

.org-structure-section .section-header-enhanced h2 {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.org-structure-section .section-header-enhanced h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1B4F96 0%, #00D4FF 100%);
    border-radius: 2px;
}

.org-structure-section .section-header-enhanced p {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    color: #1B4F96 !important;
    font-weight: 600 !important;
}

.org-chart-modern {
    margin: 0;
    padding: 0.5rem 0;
    position: relative;
}

.org-tier {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    position: relative;
}

.org-tier:first-child {
    margin-top: 0;
}

.org-tier.tier-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    justify-items: center;
    align-items: start;
    position: relative;
    margin: 1.5rem 0;
}


.org-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(27, 79, 150, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    position: relative;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.org-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(27, 79, 150, 0.2), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.executive-level {
    background: linear-gradient(145deg, #1B4F96 0%, #0f3460 50%, #1B4F96 100%);
    color: white;
    border: none;
    box-shadow: 0 16px 48px rgba(27, 79, 150, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.executive-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s;
}

.executive-level:hover::before {
    left: 100%;
}

.management-level {
    background: white;
    border: 1px solid #e9ecef;
    border-left: 4px solid #1B4F96;
}

.department-level {
    background: linear-gradient(145deg, #ffffff 0%, #f0fdff 100%);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00D4FF;
    position: relative;
}

.department-level::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.1), transparent);
}

.support-level {
    background: white;
    border: 1px solid #e9ecef;
    border-left: 4px solid #6c757d;
}

.org-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1B4F96;
    background: linear-gradient(145deg, rgba(27, 79, 150, 0.08), rgba(0, 212, 255, 0.05));
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    box-shadow: 0 4px 16px rgba(27, 79, 150, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(27, 79, 150, 0.1);
    transition: all 0.3s ease;
}

.org-card:hover .org-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.15);
}

.executive-level .org-icon {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.executive-level .org-icon {
    color: white;
}

.org-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
}

.org-card h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(27, 79, 150, 0.3), transparent);
}

.executive-level h4 {
    color: white;
}

.org-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #64748b;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.executive-level p {
    color: rgba(255, 255, 255, 0.9);
}


/* Commitment Section */
.commitment-section {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.commitment-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    align-items: center;
}

.commitment-text-section {
    grid-column: 1;
    grid-row: 1;
    padding-right: 2rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 0.95) 25%, 
        rgba(235, 245, 255, 0.9) 50%, 
        rgba(220, 235, 255, 0.85) 75%, 
        rgba(200, 225, 255, 0.8) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    border-radius: 25px;
    padding: 2rem 3rem;
    box-shadow: 
        0 8px 20px rgba(0, 151, 178, 0.15),
        0 4px 10px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-text-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #1B4F96 0%, #00D4FF 50%, #1B4F96 100%);
    border-radius: 28px;
    z-index: -1;
}



.commitment-text-section .section-header-enhanced {
    padding-left: 0;
    position: relative;
    text-align: center;
    margin: 0;
}

.commitment-text-section .section-header-enhanced h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1B4F96;
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}




.commitment-description-section {
    grid-column: 2;
    grid-row: 1;
    padding-left: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50px;
    padding: 2.5rem;
    border: 1px solid rgba(27, 79, 150, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


.commitment-description-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
    font-weight: 400;
    text-align: justify;
}

.commitment-visual-section {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.commitment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    margin-top: 0;
}

.commitment-image-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.commitment-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 280px;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.safety-card {
    top: 10%;
    left: -15%;
    z-index: 3;
}

.quality-card {
    top: 20%;
    right: -15%;
    z-index: 3;
}

.efficiency-card {
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.card-icon {
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 2rem;
    color: #0097b2;
    background: rgba(0, 151, 178, 0.12);
    padding: 0.8rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 151, 178, 0.15);
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #545454;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-align: center;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
    text-align: center;
}

/* Responsive Design for Floating Cards */
@media (max-width: 1200px) {
    .floating-card {
        max-width: 240px;
        padding: 1.2rem;
    }
    
    .safety-card {
        left: -10%;
    }
    
    .quality-card {
        right: -10%;
    }
}

@media (max-width: 968px) {
    .commitment-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }
    
    .commitment-text-section {
        grid-column: 1;
        grid-row: 1;
        padding-right: 0;
        text-align: center;
    }
    
    .commitment-description-section {
        grid-column: 1;
        grid-row: 2;
        padding-left: 0;
        text-align: center;
    }
    
    .commitment-visual-section {
        grid-column: 1;
        grid-row: 3;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .commitment-container {
        min-height: auto;
        flex-direction: column;
    }
    
    .commitment-image-wrapper {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .floating-card {
        position: static;
        transform: none !important;
        margin: 1rem auto;
        max-width: 300px;
    }
    
    .safety-card,
    .quality-card,
    .efficiency-card {
        position: static;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

.pillar h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-text, .intro-visual {
        padding: 0;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-mission-grid::before {
        display: none;
    }

    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .org-tier.tier-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .leader-credentials {
        justify-content: center;
    }
    
    .commitment-pillars {
        flex-direction: row;
        justify-content: center;
    }
    
    .pillar {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .about-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .section-header-enhanced h2 {
        font-size: 2rem;
    }
    
    .vm-card, .leader-profile, .commitment-content {
        padding: 1.5rem;
    }
    
    .building-combined-box {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .building-text-section {
        padding: 2rem;
    }
    
    .leadership-combined-box {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .leadership-text-section {
        padding: 2rem;
    }
    
    
    .org-chart-modern {
        padding: 1rem;
    }
    
    .org-card {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .commitment-pillars {
        flex-direction: column;
    }
}

/* Services Section - 4 Big Boxes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 2rem;
}

.service-box {
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-box:hover {
    border-color: #00D4FF;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-box:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0097b2;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.service-description {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: justify;
}

.team-experience {
    border-top: 2px solid #00D4FF;
    padding-top: 1rem;
}

.team-experience h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0097b2;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.team-experience p {
    color: #444;
    line-height: 1.6;
    font-size: 0.9rem;
}

.team-experience strong {
    color: #0097b2;
    font-weight: 700;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        margin: 0 0.5rem;
        gap: 1rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .team-experience h4 {
        font-size: 0.95rem;
    }
    
    .team-experience p {
        font-size: 0.85rem;
    }
}

/* New Area of Expertise Section - 6th Section */
.expertise-new-section {
    padding: 4rem 0;
    position: relative;
    background: url('picture/Nex-1.jpg') center center/cover no-repeat;
}

.expertise-new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.expertise-new-section > .container {
    position: relative;
    z-index: 2;
}

.expertise-new-section > .container {
    border-radius: 0;
    margin: 0 2rem;
    position: relative;
}

.expertise-new-section > .container {
    position: relative;
    z-index: 2;
}

.expertise-new-section > .container > * {
    position: relative;
    z-index: 2;
}

.expertise-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-new-card {
    background: white;
    border-radius: 0;
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 151, 178, 0.1);
    position: relative;
    overflow: hidden;
}

.expertise-new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0097b2, #00D4FF);
}

.expertise-new-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #00D4FF;
}

.expertise-new-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 151, 178, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 151, 178, 0.15);
    transition: all 0.3s ease;
}

.expertise-new-card:hover .expertise-new-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.25);
}

.expertise-new-icon i {
    font-size: 1.5rem;
    color: #0097b2;
}

.expertise-new-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #545454;
    margin-bottom: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-transform: uppercase;
}

.expertise-new-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.expertise-new-highlight {
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.expertise-new-highlight span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0097b2;
}

.expertise-new-card:hover .expertise-new-highlight {
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.2), rgba(0, 212, 255, 0.2));
    border-color: #00D4FF;
}

/* Responsive Design for New Expertise */
@media (max-width: 1024px) {
    .expertise-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-new-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-new-icon {
        width: 70px;
        height: 70px;
    }
    
    .expertise-new-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .expertise-new-section {
        padding: 3rem 0;
    }
    
    .expertise-new-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-new-card {
        padding: 1.5rem;
    }
    
    .expertise-new-card h3 {
        font-size: 1.2rem;
    }
    
    .expertise-new-card p {
        font-size: 0.9rem;
    }
    
    .expertise-new-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-new-icon i {
        font-size: 1.5rem;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Contact Us Section */
.contact-section {
    padding: 1.5rem 0 5rem;
}

.contact-section .section-header {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-section .section-header h2 {
    font-size: 1.8rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.contact-content .contact-info {
    flex: 1 1 calc(40% - 1.5rem);
}

.contact-map {
    flex: 1 1 calc(60% - 1.5rem);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.contact-content .contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-content .contact-info p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0097b2;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.contact-form-placeholder {
    width: 100%;
}

.contact-form-placeholder h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a202c;
}

.form-group input,
.form-group textarea {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0097b2;
    box-shadow: 0 0 0 2px rgba(0, 151, 178, 0.15);
}

.contact-submit-btn {
    align-self: flex-start;
    background: #0097b2;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-submit-btn:hover {
    background: #1B4F96;
}

@media (max-width: 768px) {
    .contact-top {
        flex-direction: column;
    }

    .contact-content .contact-info,
    .contact-map {
        flex: 1 1 100%;
    }

    .contact-content .contact-info {
        padding: 0 10px;
    }

    .contact-map {
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-logo {
    width: 160px;
    height: auto;
}

.loading-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0097b2;
}

.loading-bar {
    width: 200px;
    height: 6px;
    background: #e6e6e6;
    border-radius: 3px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: #0097b2;
    border-radius: 3px;
    transition: width 0.2s ease;
}