@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #0b192c;
    --primary-rgb: 11, 25, 44;
    --primary-light: #1e3e62;
    --primary-light-rgb: 30, 62, 98;
    --secondary: #008dda;
    --secondary-rgb: 0, 141, 218;
    --accent: #f59e0b;
    --accent-rgb: 245, 158, 11;
    --white: #ffffff;
    
    /* Light Theme (Default) */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
    --shadow: 0 10px 30px -10px rgba(11, 25, 44, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(11, 25, 44, 0.05);
    
    /* Layout & Utilities */
    --font-sans: 'Outfit', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* Dark Theme Variables */
.dark-theme {
    --bg-main: #060913;
    --bg-card: #0d1527;
    --border-color: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(13, 21, 39, 0.8);
    --glass-border: rgba(30, 41, 59, 0.8);
    --shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Typography & Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 141, 218, 0.4);
}

.btn-primary:hover {
    background-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 141, 218, 0.6);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #152b45;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-normal);
}

header.scrolled .navbar {
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--secondary);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    background-color: var(--border-color);
}

.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.95) 0%, rgba(11, 25, 44, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-graphics {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/10;
    width: 100%;
    max-width: 500px;
}

/* Feature/Stats Section */
.stats {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services section in Home page */
.services-section {
    background-color: var(--bg-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 141, 218, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--secondary);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-us {
    position: relative;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-us-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.why-us-list {
    display: grid;
    gap: 24px;
}

.why-us-item {
    display: flex;
    gap: 20px;
}

.why-us-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-us-item-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-us-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 141, 218, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Footer styling */
footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-info {
    display: grid;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Page Header (General for Inner Pages) */
.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 180px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--primary) 0%, rgba(11, 25, 44, 0.8) 100%);
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: #64748b;
}

/* About Us Inner Page */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.vision-mission {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.vm-card ul {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.vm-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-main);
    font-size: 1rem;
}

.vm-card li i {
    color: var(--accent);
    margin-top: 4px;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 141, 218, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Inner Page */
.service-detail-section {
    border-bottom: 1px solid var(--border-color);
}

.service-detail-section:nth-child(even) {
    background-color: var(--bg-card);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-section:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail-section:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content .lead {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 500;
}

.service-feature-item i {
    color: var(--secondary);
}

/* Portfolio Inner Page */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    color: var(--text-main);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 141, 218, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.portfolio-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Inner Page */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-panel p {
    color: #cbd5e1;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-text p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-form-panel p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 16px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 14px 20px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(0, 141, 218, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.error-text {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

/* Map/Location Section */
.map-section {
    padding-top: 0;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    background-color: var(--primary);
}

.map-placeholder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
}

.map-placeholder-bg i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
    animation: bounce 2s infinite;
}

.map-placeholder-bg h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-placeholder-bg p {
    color: #cbd5e1;
    max-width: 400px;
}

/* Scroll Fade Animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-graphics {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-img {
        max-height: 400px;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-section:nth-child(even) .service-detail-grid {
        direction: ltr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Mobile Menu drawer */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Redesigned Who We Are Section to match reference layout */
.who-we-are-section {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Polygon Overlay */
.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #004b75; /* Teal block top right */
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 75% 100%);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Glow lines styling */
.who-we-are-glow-orange {
    position: absolute;
    width: 2px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    top: -10%;
    left: 20%;
    transform: rotate(25deg);
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
}

.who-we-are-glow-cyan {
    position: absolute;
    width: 1px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    top: -10%;
    left: 45%;
    transform: rotate(25deg);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.who-we-are-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 80px 80px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    z-index: 1;
    pointer-events: none;
}

.who-we-are-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.who-we-are-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.who-we-are-logo-icon {
    width: 68px;
    height: 68px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 4px;
}

.who-we-are-logo-own {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
    line-height: 1;
    margin-top: -2px;
    letter-spacing: 0.05em;
}

.who-we-are-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-we-are-logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.1;
    font-family: var(--font-sans);
}

.who-we-are-logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1px;
    width: 100%;
}

.who-we-are-logo-subtitle::before,
.who-we-are-logo-subtitle::after {
    content: '';
    height: 1px;
    background: #ffffff;
    flex-grow: 1;
}

.who-we-are-title {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1;
    margin: 12px 0 24px 0;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.who-we-are-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who-we-are-paragraphs p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* Smartphone Mockup */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 18.5;
    background: #000000;
    border-radius: 48px;
    border: 12px solid #1f2228;
    box-shadow: 
        0 25px 60px -15px rgba(0, 0, 0, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Side buttons */
.phone-mockup::before {
    /* Volume & Power buttons styling on frame */
    content: '';
    position: absolute;
    width: 3px;
    height: 40px;
    background: #3a3d45;
    left: -15px;
    top: 100px;
    border-radius: 2px 0 0 2px;
    box-shadow: 
        0 50px 0 #3a3d45, /* Vol down */
        0 -35px 0 #3a3d45; /* Ring/silent switcher */
}

.phone-mockup::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 50px;
    background: #3a3d45;
    right: -15px;
    top: 130px;
    border-radius: 0 2px 2px 0;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    background: #050b14;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #000000;
    border-radius: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

/* Camera and sensor details inside notch */
.phone-notch-camera {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #080c1e;
    border: 1px solid #141829;
}

.phone-notch-speaker {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: #111;
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .who-we-are-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    
    .who-we-are-title {
        font-size: 3.5rem;
    }
    
    .phone-mockup {
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .who-we-are-title {
        font-size: 2.8rem;
    }
    
    .who-we-are-section {
        padding: 60px 0;
    }
}

/* Professional Carousel Styles */
.who-we-are-carousel {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.teamSwiper {
    width: 100%;
    height: 400px;
    background: #051329;
}

.teamSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.teamSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevents any cropping whatsoever */
    object-position: center; 
    transition: transform 3s ease;
}

.teamSwiper .swiper-slide-active img {
    transform: scale(1.05); /* Subtle zoom effect during display */
}

/* Custom Navigation Arrows */
.teamSwiper .swiper-button-next,
.teamSwiper .swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 141, 218, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: scale(0.85);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.teamSwiper .swiper-button-next:hover,
.teamSwiper .swiper-button-prev:hover {
    background: rgba(0, 141, 218, 1);
    transform: scale(1);
}

.teamSwiper .swiper-button-next::after,
.teamSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
}

/* Custom Pagination */
.teamSwiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.teamSwiper .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .who-we-are-carousel {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .teamSwiper {
        height: 300px;
    }
}


/* Global SVG Logo branding */
.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-circle {
    width: 48px;
    height: 48px;
    border: 2px solid var(--text-main);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: border-color var(--transition-fast);
}

.logo-group:hover .logo-icon-circle {
    border-color: var(--secondary);
}

footer .logo-icon-circle {
    border-color: var(--white);
}

.logo-icon-own {
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: lowercase;
    line-height: 1;
    margin-top: -2px;
    letter-spacing: 0.05em;
}

footer .logo-icon-own {
    color: var(--white);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-main {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-main);
    line-height: 1.1;
    font-family: var(--font-sans);
}

footer .logo-text-main {
    color: var(--white);
}

.logo-text-sub {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
    width: 100%;
}

footer .logo-text-sub {
    color: rgba(255, 255, 255, 0.6);
}

.logo-text-sub::before,
.logo-text-sub::after {
    content: '';
    height: 1px;
    background: var(--border-color);
    flex-grow: 1;
}

footer .logo-text-sub::before,
footer .logo-text-sub::after {
    background: rgba(255, 255, 255, 0.3);
}

/* Redesigned Experience Section */
.experience-section {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-glow-cyan {
    position: absolute;
    width: 2px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    top: -10%;
    right: 25%;
    transform: rotate(25deg);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.experience-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.experience-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: -8px;
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
}

.experience-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.experience-list-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.experience-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.05);
}

.experience-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 26, 51, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* Responsiveness for Experience */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .experience-image-container {
        height: 350px;
    }
    
    .experience-title {
        font-size: 2.8rem;
    }
}

/* Redesigned Hero Cover Section to match Slide 1 of PDF */
.hero-cover {
    position: relative;
    background: linear-gradient(135deg, #051124 0%, #0b1a2c 100%);
    color: var(--white);
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    z-index: 5;
}

.hero-cover-left {
    position: relative;
    padding: 140px 80px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

/* Diagonal split dividing line with chevron bands on left panel */
.hero-cover-divider-band-1 {
    position: absolute;
    top: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none;
}

.hero-cover-divider-band-2 {
    position: absolute;
    top: 0;
    right: -100px;
    width: 60px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none;
}

.hero-cover-left-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-cover-left-middle {
    margin: auto 0;
    display: flex;
    flex-direction: column;
}

.hero-cover-logo-own {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.1em;
}

.hero-cover-logo-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.1;
    font-family: var(--font-sans);
}

.hero-cover-logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    width: 100%;
}

.hero-cover-logo-subtitle::before,
.hero-cover-logo-subtitle::after {
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    flex-grow: 1;
}

.hero-cover-title-stacked {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin: 0;
}

.hero-cover-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-cover-tagline {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    border-left: 3px solid var(--secondary);
    padding-left: 20px;
    max-width: 550px;
}

.hero-cover-website {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
}

.hero-cover-website i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.hero-cover-right {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Diagonal split using clip path for the image container */
.hero-cover-image-clip {
    position: absolute;
    top: 0;
    left: -150px; /* Offset to overlap the diagonal boundary */
    width: calc(100% + 150px);
    height: 100%;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.hero-cover-image-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay gradient inside the image container to blend dark tones */
.hero-cover-image-clip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 17, 36, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* Chevron/stripe decorations in bottom right corner of right panel */
.hero-cover-right-decorations {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 150px;
    background: transparent;
    z-index: 3;
    pointer-events: none;
    display: flex;
    gap: 16px;
    transform: rotate(-25deg);
}

.hero-cover-decor-bar-1 {
    width: 24px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-cover-decor-bar-2 {
    width: 12px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero-cover {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-cover-left {
        padding: 120px 40px 60px 40px;
        min-height: 80vh;
    }
    
    .hero-cover-title-stacked {
        font-size: 3.8rem;
    }
    
    .hero-cover-tagline {
        font-size: 1.2rem;
    }
    
    .hero-cover-right {
        height: 400px;
    }
    
    .hero-cover-image-clip {
        left: 0;
        width: 100%;
        clip-path: none;
    }
}

@media (max-width: 576px) {
    .hero-cover-left {
        padding: 100px 24px 40px 24px;
        min-height: 70vh;
    }
    
    .hero-cover-title-stacked {
        font-size: 2.8rem;
    }
    
    .hero-cover-tagline {
        font-size: 1rem;
        padding-left: 12px;
    }
    
    .hero-cover-right {
        height: 300px;
    }
}

/* ===================================================================
   WHY CHOOSE US — Matching PDF Slide (Dark navy, engineer left, 3×2 grid)
   =================================================================== */
.why-choose-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 600px;
}

.why-choose-slide .who-we-are-grid-lines {
    z-index: 1;
}

/* Glow lines */
.why-choose-slide .wcs-glow-1 {
    position: absolute;
    width: 2px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(0, 200, 255, 0.5), transparent);
    top: -20%;
    left: 38%;
    transform: rotate(25deg);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.why-choose-slide .wcs-glow-2 {
    position: absolute;
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    top: -20%;
    left: 42%;
    transform: rotate(25deg);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.why-choose-slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    min-height: 600px;
}

/* Left side: engineer image with diagonal clip */
.wcs-image-panel {
    position: relative;
    overflow: hidden;
}

.wcs-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wcs-image-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, #0a1b33, transparent);
    pointer-events: none;
}

/* Diagonal cut overlay on image right edge */
.wcs-image-diagonal {
    position: absolute;
    top: 0;
    right: -1px;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #051329 0%, #0a1b33 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* Right side: title + 3×2 grid */
.wcs-content-panel {
    padding: 60px 60px 60px 40px;
    display: flex;
    flex-direction: column;
}

.wcs-logo-row {
    margin-bottom: 16px;
}

.wcs-title {
    font-size: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 40px;
    font-family: var(--font-sans);
}

/* 3×2 pillar grid */
.wcs-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    flex: 1;
}

.wcs-pillar-item h4 {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    font-style: italic;
    letter-spacing: 0.02em;
}

.wcs-pillar-item p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.wcs-bottom-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wcs-bottom-bar i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===================================================================
   CORE MARINE SERVICES — Matching PDF Slide (Dark navy, 3×2 bordered boxes)
   =================================================================== */
.core-services-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 550px;
}

.core-services-slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    min-height: 550px;
}

/* Left content area */
.css-content-panel {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
}

.css-logo-row {
    margin-bottom: 12px;
}

.css-title {
    font-size: 3.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 50px;
    font-family: var(--font-sans);
}

/* 3×2 service box grid */
.css-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
    align-content: start;
}

.css-box-item {
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 24px 20px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.css-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 141, 218, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.css-box-item:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 141, 218, 0.2);
}

.css-box-item:hover::before {
    opacity: 1;
}

.css-box-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.css-bottom-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.css-bottom-bar i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Right side: diagonal image bleed */
.css-image-panel {
    position: relative;
    overflow: hidden;
}

.css-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.css-image-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #0a1b33, transparent);
    z-index: 2;
    pointer-events: none;
}

/* Diagonal cut on left edge of image panel */
.css-image-diagonal {
    position: absolute;
    top: 0;
    left: -1px;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #051329 0%, #0a1b33 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 3;
}

/* Glow line decorations */
.core-services-slide .css-glow-1 {
    position: absolute;
    width: 2px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(0, 200, 255, 0.4), transparent);
    top: -20%;
    right: 35%;
    transform: rotate(25deg);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* ===================================================================
   SERVICE DETAIL SLIDES — Matching PDF Automation Slide (Dark navy diagonal)
   =================================================================== */
.service-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 480px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    min-height: 480px;
}

/* Image side */
.ss-image-panel {
    position: relative;
    overflow: hidden;
}

.ss-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Diagonal cut on right edge of the image panel */
.ss-image-diagonal {
    position: absolute;
    top: 0;
    right: -1px;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #051329 0%, #0a1b33 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.ss-image-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #0a1b33, transparent);
    z-index: 1;
    pointer-events: none;
}

/* Content side */
.ss-content-panel {
    padding: 60px 60px 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ss-logo-row {
    margin-bottom: 16px;
}

.ss-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 28px;
    font-family: var(--font-sans);
}

.ss-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.ss-description .highlight {
    color: var(--accent);
    font-weight: 600;
}

.ss-bottom-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    padding-top: 24px;
}

.ss-bottom-bar i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Reversed layout for even services (text left, image right) */
.service-slide-reversed .service-slide-inner {
    grid-template-columns: 1fr 0.45fr;
}

.service-slide-reversed .ss-content-panel {
    order: 1;
    padding: 60px 50px 60px 60px;
}

.service-slide-reversed .ss-image-panel {
    order: 2;
}

.service-slide-reversed .ss-image-diagonal {
    right: auto;
    left: -1px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.service-slide-reversed .ss-image-panel::after {
    right: auto;
    left: 0;
    background: linear-gradient(to right, #0a1b33, transparent);
}

/* Glow lines for services */
.service-slide .ss-glow-line {
    position: absolute;
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(0, 200, 255, 0.4), transparent);
    top: -20%;
    left: 50%;
    transform: rotate(25deg);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

/* Grid lines reusable */
.slide-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 80px 80px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    z-index: 1;
    pointer-events: none;
}

/* ===================================================================
   VESSEL TYPES — Matching PDF Slide (Two-panel split)
   =================================================================== */
.vessel-types-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.vessel-type-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 48px;
    min-height: 500px;
}

.vessel-type-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.vessel-type-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 19, 41, 0.3) 0%, rgba(5, 19, 41, 0.85) 100%);
    z-index: 2;
}

.vessel-type-content {
    position: relative;
    z-index: 3;
}

.vessel-type-accent {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 20px;
}

.vessel-type-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: var(--font-sans);
}

.vessel-type-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-style: italic;
}

/* Diagonal cyan accent lines */
.vessel-type-panel .vt-glow {
    position: absolute;
    width: 2px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, rgba(0, 200, 255, 0.5), transparent);
    top: -10%;
    right: 20%;
    transform: rotate(25deg);
    opacity: 0.35;
    z-index: 2;
    pointer-events: none;
}

.vessel-type-panel:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Divider between two panels */
.vessel-types-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 4;
}

/* OWN logo in vessel types top-left */
.vt-logo-row {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 5;
}

/* ===================================================================
   RESPONSIVE — New slide sections
   =================================================================== */
@media (max-width: 1024px) {
    .why-choose-slide-inner {
        grid-template-columns: 1fr;
    }

    .wcs-image-panel {
        height: 350px;
    }

    .wcs-image-diagonal {
        display: none;
    }

    .wcs-content-panel {
        padding: 40px 32px;
    }

    .wcs-title {
        font-size: 2.8rem;
    }

    .wcs-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .core-services-slide-inner {
        grid-template-columns: 1fr;
    }

    .css-image-panel {
        height: 300px;
        order: -1;
    }

    .css-image-diagonal {
        display: none;
    }

    .css-content-panel {
        padding: 40px 32px;
    }

    .css-title {
        font-size: 2.8rem;
    }

    .service-slide-inner,
    .service-slide-reversed .service-slide-inner {
        grid-template-columns: 1fr;
    }

    .ss-image-panel {
        height: 300px;
    }

    .ss-image-diagonal {
        display: none;
    }

    .ss-content-panel,
    .service-slide-reversed .ss-content-panel {
        padding: 40px 32px;
        order: 2;
    }

    .service-slide-reversed .ss-image-panel {
        order: 1;
    }

    .ss-title {
        font-size: 2.5rem;
    }

    .vessel-types-section {
        grid-template-columns: 1fr;
    }

    .vessel-type-panel {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .wcs-title,
    .css-title {
        font-size: 2.2rem;
    }

    .wcs-pillars-grid {
        grid-template-columns: 1fr;
    }

    .css-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-title {
        font-size: 2rem;
    }

    .vessel-type-panel {
        min-height: 350px;
        padding: 32px 28px;
    }

    .vessel-type-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .css-boxes-grid {
        grid-template-columns: 1fr;
    }

    .wcs-content-panel,
    .css-content-panel,
    .ss-content-panel {
        padding: 32px 20px;
    }
}

/* ===================================================================
   PAIRED SERVICES (SERVICES PAGE) — Matching Slides 1-5
   =================================================================== */

.paired-service-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Common Header for Paired Slides */
.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.ps-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 10;
}

.ps-footer i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Slide 1: HVAC vs ELECTRICAL Text Split */
.ps-text-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 600px;
    padding: 120px 40px 80px 40px;
    position: relative;
    z-index: 2;
}

.ps-text-split-container::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.ps-text-col {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ps-text-col h2 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 30px;
    font-family: var(--font-sans);
}

.ps-text-col p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.ps-text-col .highlight-cyan {
    color: var(--secondary);
    font-weight: 500;
}

.ps-text-col .highlight-gold {
    color: #facc15;
    font-weight: 500;
}

/* Slide 2 & 3: HVAC Gallery */
.ps-gallery-container {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    min-height: 600px;
    padding: 120px 40px 80px 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.ps-gallery-title h2 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-sans);
}

/* Slide 2: Large Units */
.ps-large-units {
    position: relative;
    height: 500px;
    width: 100%;
}

.ps-large-units img {
    position: absolute;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.ps-large-units img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.ps-large-unit-1 {
    width: 45%;
    top: 50px;
    left: 0;
    z-index: 2;
}

.ps-large-unit-2 {
    width: 40%;
    top: -20px;
    right: 5%;
    z-index: 1;
}

.ps-large-unit-3 {
    width: 55%;
    bottom: -20px;
    right: 15%;
    z-index: 3;
}

/* Slide 3: Image Grid */
.ps-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    padding-left: 20px;
}

.ps-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.ps-image-grid img:hover {
    transform: translateY(-5px) scale(1.02);
}

.ps-grid-item-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.ps-grid-item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.ps-grid-item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.ps-grid-item-4 { grid-column: 4 / 5; grid-row: 1 / 2; }
.ps-grid-item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.ps-grid-item-6 { grid-column: 3 / 4; grid-row: 2 / 3; }
.ps-grid-item-7 { grid-column: 4 / 5; grid-row: 2 / 3; }

/* Slide 4 & 5: Top Half Image, Bottom Half Split Text */
.ps-half-split-container {
    display: flex;
    flex-direction: column;
    min-height: 800px;
    position: relative;
    z-index: 2;
}

.ps-top-image {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.ps-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* For Slide 5: diagonal cut on the image */
.ps-top-image-diagonal img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
}

.ps-bottom-text {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 60px 80px 100px 80px;
    gap: 60px;
    background: linear-gradient(135deg, #051329 0%, #0a1b33 100%);
    position: relative;
}

.ps-bottom-text::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.ps-bottom-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.015) 75%, rgba(255, 255, 255, 0.015)), linear-gradient(45deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.015) 75%, rgba(255, 255, 255, 0.015));
    z-index: 0;
    pointer-events: none;
}

.ps-bottom-col {
    position: relative;
    z-index: 1;
}

.ps-bottom-col h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.ps-bottom-col p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

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

.ps-bullet-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.ps-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Corner brackets (Slide 1 style) */
.ps-bracket-tl, .ps-bracket-br {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--secondary);
    z-index: 5;
    pointer-events: none;
}
.ps-bracket-tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.ps-bracket-br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

/* Diagonal cut corner brackets (Slide 1 right corner style) */
.ps-corner-tr {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    z-index: 5;
    pointer-events: none;
}

.ps-corner-tr::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.ps-corner-tr::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 60px;
    background: var(--secondary);
}

.ps-corner-tr .diag {
    position: absolute;
    top: 15px;
    right: -10px;
    width: 60px;
    height: 2px;
    background: var(--secondary);
    transform: rotate(45deg);
}

.ps-corner-bl {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    z-index: 5;
    pointer-events: none;
}
.ps-corner-bl::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}
.ps-corner-bl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 60px;
    background: var(--secondary);
}
.ps-corner-bl .diag {
    position: absolute;
    bottom: 15px;
    left: -10px;
    width: 60px;
    height: 2px;
    background: var(--secondary);
    transform: rotate(45deg);
}

/* Responsive Paired Services */
@media (max-width: 1024px) {
    .ps-text-split-container,
    .ps-bottom-text {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ps-text-split-container::after,
    .ps-bottom-text::after {
        display: none;
    }
    .ps-gallery-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ps-large-units {
        height: 400px;
    }
    .ps-image-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    .ps-grid-item-7 { display: none; }
}

@media (max-width: 768px) {
    .ps-text-col h2,
    .ps-gallery-title h2,
    .ps-bottom-col h2 {
        font-size: 2.8rem;
    }
    .ps-text-col {
        padding: 0 10px;
    }
    .ps-top-image {
        height: 250px;
    }
    .ps-bottom-text {
        padding: 40px 20px 80px 20px;
    }
}

/* ===================================================================
   TECHNICAL CAPABILITY (ABOUT PAGE) — Matching Slide 1
   =================================================================== */
.tech-cap-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-cap-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(25deg) scale(1.5);
}

.tech-cap-glow-cyan {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 240, 255, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

.tech-cap-glow-orange {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

.tech-cap-inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

.tech-cap-content {
    padding: 150px 80px 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-cap-logo-row {
    margin-bottom: 40px;
}

.tech-cap-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.tech-cap-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 90%;
}

.tech-cap-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.tech-cap-col h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tech-cap-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.tech-cap-image-panel {
    position: relative;
    height: 100%;
}

.tech-cap-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.tech-cap-image-diagonal {
    position: absolute;
    top: 0;
    left: -2px;
    width: 120px;
    height: 100%;
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
    z-index: 2;
}

.tech-cap-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    z-index: 10;
}

/* Accent Lines */
.tech-cap-accent-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}
.tech-cap-accent-lines::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 4px;
    height: 200px;
    background: var(--secondary);
    transform: rotate(35deg);
}
.tech-cap-accent-lines::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 2px;
    height: 150px;
    background: rgba(255,255,255,0.3);
    transform: rotate(35deg);
}

@media (max-width: 1024px) {
    .tech-cap-inner {
        grid-template-columns: 1fr;
    }
    .tech-cap-image-diagonal {
        display: none;
    }
    .tech-cap-image-panel {
        height: 400px;
        order: -1;
    }
    .tech-cap-content {
        padding: 60px 40px;
    }
    .tech-cap-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tech-cap-bottom-bar {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 40px;
    }
}

/* ===================================================================
   PORTFOLIO COMPANIES (PORTFOLIO PAGE) — Matching Slide 2
   =================================================================== */
.portfolio-companies-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pc-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.pc-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pc-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    font-weight: 600;
}

.pc-white-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.pc-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
    align-items: center;
    justify-items: center;
}

.pc-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0a1b33;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
    width: 100%;
    transition: transform 0.3s;
}

.pc-logo-item:hover {
    transform: translateY(-5px);
}

.pc-logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.pc-logo-sub {
    font-size: 0.65rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Distinctive logo colors based on slide */
.pc-logo-hlm .pc-logo-icon { color: #008060; }
.pc-logo-smoe .pc-logo-icon { color: #004d40; }
.pc-logo-seatrium { color: #00529b; }
.pc-logo-paxocean { color: #005b96; }
.pc-logo-nms .pc-logo-icon { color: #1a237e; }
.pc-logo-tanto .pc-logo-icon { color: #b71c1c; }
.pc-logo-lumoso { color: #0d47a1; border-top: 4px solid #b71c1c; border-bottom: 4px solid #b71c1c; padding: 15px 0; }
.pc-logo-blt .pc-logo-icon { color: #ff3d00; }
.pc-logo-samudera { color: #d32f2f; font-size: 3.5rem; font-family: serif; }
.pc-logo-marco .pc-logo-icon { color: #b71c1c; }
.pc-logo-asl { color: #1a237e; }
.pc-logo-soechi { color: #0d47a1; }
.pc-logo-sillo .pc-logo-icon { color: #fbc02d; }
.pc-logo-wintermar { color: #1a237e; }

.pc-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .pc-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .pc-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pc-title {
        font-size: 2.5rem;
    }
    .pc-white-box {
        padding: 30px 20px;
    }
}

/* ===================================================================
   CONTACT SPLIT SLIDE (CONTACT PAGE) — Matching Slide 3
   =================================================================== */
.contact-split-slide {
    background: linear-gradient(135deg, #051329 0%, #0a1b33 50%, #0f2847 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.css-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 800px;
}

.css-left-panel {
    padding: 100px 60px 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.css-logo-row {
    margin-bottom: 50px;
}

.css-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.css-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.css-contact-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.css-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.css-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.css-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 5px;
}

.css-contact-details p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.css-right-panel {
    position: relative;
    height: 100%;
}

.css-right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

/* Diagonal shape matching the slide */
.css-diagonal-shape {
    position: absolute;
    top: 0;
    left: -1px;
    width: 180px;
    height: 100%;
    background: var(--bg-main); /* Deep navy to match left side */
    clip-path: polygon(0 0, 100% 0, 40% 50%, 100% 100%, 0 100%);
    z-index: 2;
}

.css-diagonal-accent-1 {
    position: absolute;
    top: 0;
    left: 179px;
    width: 100px;
    height: 100%;
    background: rgba(255,255,255,0.1);
    clip-path: polygon(0 0, 20% 0, 0 50%, 20% 100%, 0 100%, -20% 50%);
    z-index: 3;
}
.css-diagonal-accent-2 {
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 150px;
    height: 150px;
    background: transparent;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: 10;
}
.css-diagonal-accent-3 {
    position: absolute;
    bottom: -80px;
    right: 80px;
    width: 200px;
    height: 200px;
    background: transparent;
    border: 4px solid var(--secondary);
    border-radius: 30px;
    transform: rotate(45deg);
    z-index: 9;
}

@media (max-width: 1024px) {
    .css-inner {
        grid-template-columns: 1fr;
    }
    .css-diagonal-shape, .css-diagonal-accent-1 {
        display: none;
    }
    .css-right-panel {
        height: 400px;
        order: -1;
    }
    .css-left-panel {
        padding: 60px 40px;
    }
    .css-title {
        font-size: 3.5rem;
    }
}

/* ===================================================================
   COMPREHENSIVE MOBILE STYLES FOR NEW SECTIONS (Max 768px & Max 480px)
   =================================================================== */

@media (max-width: 768px) {
    /* 1. Technical Capability Slide (About) */
    .tech-cap-title {
        font-size: 2.8rem;
    }
    .tech-cap-intro {
        font-size: 1.05rem;
        max-width: 100%;
    }
    .tech-cap-col h3 {
        font-size: 1.5rem;
    }
    .tech-cap-col p {
        font-size: 0.95rem;
    }
    .tech-cap-image-panel {
        height: 300px;
    }
    .tech-cap-content {
        padding: 40px 20px;
    }
    .tech-cap-bottom-bar {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

    /* 2. Portfolio Companies Slide */
    .pc-title {
        font-size: 2.2rem;
    }
    .pc-subtitle {
        font-size: 1.05rem;
    }
    .pc-white-box {
        padding: 30px 15px;
    }
    .pc-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .pc-logo-item {
        font-size: 1rem;
    }
    .pc-logo-icon {
        font-size: 2rem;
    }

    /* 3. Contact Split Slide */
    .css-left-panel {
        padding: 40px 20px;
    }
    .css-title {
        font-size: 2.8rem;
    }
    .css-right-panel {
        height: 300px;
    }
    .css-contact-item {
        margin-bottom: 25px;
    }

    /* 4. Paired Service Slide (Services) */
    .ps-text-split-container {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }
    .ps-text-col h2 {
        font-size: 2.5rem;
    }
    .ps-text-col p {
        font-size: 1.05rem;
    }
    .ps-gallery-container {
        display: flex;
        flex-direction: column;
        padding: 60px 20px 40px 20px;
    }
    .ps-gallery-title h2 {
        font-size: 3rem;
        margin-bottom: 30px;
        text-align: center;
    }
    .ps-large-units {
        height: 350px;
    }
    .ps-large-units img:hover {
        transform: none;
    }
    .ps-image-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
    }
    /* Reset grid span on mobile for the HVAC gallery */
    .ps-grid-item-1 { grid-column: auto; grid-row: auto; }
    .ps-grid-item-2 { grid-column: auto; grid-row: auto; }
    .ps-grid-item-3 { grid-column: auto; grid-row: auto; }
    .ps-grid-item-4 { grid-column: auto; grid-row: auto; }
    .ps-grid-item-5 { grid-column: auto; grid-row: auto; }
    .ps-grid-item-6 { grid-column: auto; grid-row: auto; }
    .ps-grid-item-7 { grid-column: auto; grid-row: auto; }

    .ps-half-split-container {
        min-height: auto;
    }
    .ps-top-image {
        height: 300px;
    }
    .ps-top-image-diagonal img {
        clip-path: none;
    }
    .ps-bottom-text {
        grid-template-columns: 1fr;
        padding: 40px 20px 60px 20px;
        gap: 40px;
    }
    .ps-bottom-text::after {
        display: none;
    }
    .ps-bottom-col h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* Extreme Mobile Adjustments */
    .tech-cap-title {
        font-size: 2.2rem;
    }
    .pc-logos-grid {
        grid-template-columns: 1fr;
    }
    .css-title {
        font-size: 2.2rem;
    }
    .ps-image-grid {
        grid-template-columns: 1fr;
    }
    .ps-large-units {
        height: 250px;
    }
    .ps-large-unit-1, .ps-large-unit-2, .ps-large-unit-3 {
        position: relative;
        top: 0 !important; right: 0 !important; left: 0 !important; bottom: 0 !important;
        width: 100% !important;
        margin-bottom: 20px;
    }
    .ps-large-units {
        display: flex;
        flex-direction: column;
        height: auto;
    }
}

/* ==========================================================================
   LEADERSHIP SECTION
   ========================================================================== */
.leadership-section {
    background-color: var(--primary);
    position: relative;
}

.leadership-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.leadership-image {
    flex-shrink: 0;
    width: 250px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.2);
}

.leadership-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.leadership-content {
    flex: 1;
}

.leadership-role {
    color: var(--highlight-cyan);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.leadership-name {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.leadership-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .leadership-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .leadership-name {
        font-size: 2rem;
    }
}
