/* SharePoint Compatibility Rules */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* High-resolution display support */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
}

@media (min-width: 1920px) {
    .container { max-width: 1600px; }
}

@media (min-width: 2560px) {
    .container { max-width: 1920px; }
}

/* CRITICAL FIXES FOR HERO SECTION AND LAYOUT */
/* Override conflicting hero rules with clean, focused styling */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    margin-top: -147px; /* Pull up behind fixed header */
    padding-top: 200px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Arial', sans-serif; /* Fallback font */
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.hero p {
    font-family: 'Arial', sans-serif; /* Fallback font */
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #019EBD;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(1, 158, 189, 0.3);
}

.btn-primary:hover {
    background: #07788D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 158, 189, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #019EBD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Content Overlap Section - Critical Layout Fix */
.content-overlap {
    position: relative;
    background: #ffffff;
    padding: 4rem 0;
    margin-top: 0;
    z-index: 2;
}

.content-overlap .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Section Styling */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-content {
    display: contents; /* This allows the grid to work properly */
}

.intro-text h2 {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #3D3D3D;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.intro-text p {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Services Overview Section */
.services-overview {
    padding: 4rem 0;
    background: #f8f9fa;
    margin: 2rem 0;
}

.section-title {
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #3D3D3D;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #019EBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #07788D;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-family: 'Arial', sans-serif;
    color: #3D3D3D;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.service-card p {
    font-family: 'Arial', sans-serif;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-link {
    font-family: 'Arial', sans-serif;
    color: #019EBD;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.service-link:hover {
    color: #07788D;
    transform: translateX(5px);
}

/* Client Logos Section */
.client-logos {
    text-align: center;
    padding: 4rem 0;
    background: #ffffff;
}

.client-logos h3 {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    color: #3D3D3D;
    margin-bottom: 3rem;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.logos-grid img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #019EBD 0%, #07788D 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Footer Styling */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Arial', sans-serif;
    color: #019EBD;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #019EBD;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .intro-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .content-overlap .container {
        padding: 0 1rem;
    }
}

/* Font Face Declarations */
@font-face {
    font-family: 'Microgramma';
    src: url('../fonts/Microgramma D Bold Extended.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FormaDJRMicro';
    src: url('../fonts/FormaDJRMicro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FormaDJRMicro';
    src: url('../fonts/FormaDJRMicro Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Abraj Energy Branding */
:root {
    --primary-blue: #019EBD;
    --dark-blue: #07788D;
    --teal: #004956;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #3D3D3D;
    --light-gray-text: #D1D1D1;
    --font-family-forma: 'FormaDJRMicro', sans-serif;
    --font-family-Zawi-r: 'FormaDJRMicro', sans-serif;
    --font-family-microgramma: 'Microgramma', sans-serif;
    --blue: #019EBD;
    --primary-darkgray: #3D3D3D;
}

/* General Image Styling for Content Areas */
.content-overlap img,
.content-area img,
.main-content img {
    border-bottom: .5rem solid var(--primary-blue);
}

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

body {
    font-family: var(--font-family-forma);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-darkgray);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: 147px; /* Account for fixed top-bar (77px) + header (70px) */
    height: 100%;
    display: flex;
    flex-direction: column;
    font-weight: normal;
}

/* Ensure footer extends to bottom */
footer {
    margin-bottom: 0;
    margin-top: auto;
}

.container {
    max-width: 1443px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-forma);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    font-family: var(--font-family-forma);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
}

/* Ensure all paragraphs use 1.2rem font size */
p, 
.hero p,
.section-header p,
.service-card p,
.about-text p,
.feature p,
.cta-content p,
.equipment-card p,
.safety-card p,
.tech-card p,
.project-card p,
.tech-intro p,
.tech-text p,
.integration-card p,
.innovation-item p,
.efficiency-item p,
.solution-card p,
.capability-item p,
.tech-item p,
.software-card p,
.lab-feature p,
.experience-stats p,
.approach-text p,
.achievement-text p,
.equipment-item p,
.safety-item p,
.tech-innovation-item p,
.management-item p,
.pumping-text p,
.pumping-features p,
.blending-text p,
.blending-features p,
.monitoring-text p,
.monitoring-features p,
.capability-card p,
.support-item p,
.protocols-text p,
.protocols-features p,
.environmental-text p,
.environmental-features p,
.quality-text p,
.quality-features p,
.program-card p,
.environmental-card p,
.certification-item p,
.publication-authors p,
.publication-abstract p,
.publication-details p,
.area-card p,
.presentation-item p,
.award-item p,
.collaboration-text p {
    font-size: 1.3rem !important;
}

/* Top Bar Styles */
.top-bar {
    background: rgba(0, 0, 0, 0.3);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    overflow: visible;
    border-bottom: 1px solid #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-links {
    width: 100%;
    background-color: transparent;
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 17;
    height: 45px;
    box-sizing: border-box;
}

.quick-links a {
    font-family: var(--font-family-forma);
    padding: 0.8rem 1.2rem;
    border-right: 1px solid #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02rem;
    white-space: nowrap;
    font-weight: normal;
}

.quick-links a:hover {
    color: var(--blue);
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.search-icon:hover {
    color: var(--blue);
}

.search-icon i {
    font-size: 0.9rem;
}



/* Header Styles */
#header {
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 77px; /* Position below the quicklinks bar with 2rem padding */
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    border-bottom: 1px solid #828282;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    border-bottom: 1px solid #e0e0e0;
    top: 0;
}

/* Sticky classes for enhanced behavior */
#header.sticky {
    position: fixed !important;
    will-change: transform; /* Optimize for animations */
    transform: translateZ(0); /* Force hardware acceleration */
}

.top-bar.sticky {
    position: fixed !important;
}

.top-bar.scrolled {
    transform: translateY(-100%);
    opacity: 0;
}

/* Force top: 0 when scrolled for immediate sticky behavior */
#header.scrolled {
    top: 0 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#header.sticky.scrolled {
    top: 0 !important;
    position: fixed !important;
}

/* Body padding adjustment when header is scrolled */
body.header-scrolled {
    padding-top: 70px; /* Only account for header height when top bar is hidden */
}

/* Hero section z-index improvements to prevent overlap issues */
.hero {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Ensure navigation links are visible when scrolled */
#header.scrolled .header-nav ul li a {
    color: var(--primary-darkgray) !important;
}

#header.scrolled .header-nav ul li a:hover {
    color: var(--primary-blue) !important;
}

#header.scrolled .mobile-nav-toggle span {
    background-color: var(--primary-darkgray);
}

.header-nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

/* Logo Styles */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
}

/* Ensure logo remains visible when scrolled */
#header.scrolled .header-logo img {
    filter: none;
}



/* Main Navigation Styles */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: right;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header-nav ul li {
    margin: 0;
    padding: 0;
    position: relative;
}

.header-nav ul li a {
    font-family: var(--font-family-forma);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: normal;
}

/* When scrolled, navigation links become dark for visibility */
#header.scrolled .header-nav ul li a {
    color: #333333;
}



.header-nav ul li a:hover {
    color: #00bcd4;
    background-color: rgba(255, 255, 255, 0.1);
}

/* When scrolled, hover state */
#header.scrolled .header-nav ul li a:hover {
    color: #00bcd4;
    background-color: rgba(0, 188, 212, 0.1);
}



/* Active state for Our Operations */
.header-nav ul li a[href="#our-operations"] {
    font-weight: 500;

    border-radius: 4px;
}

.header-nav ul li a i {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dynamic-children:hover .header-nav ul li a i {
    transform: rotate(180deg);
}

/* When scrolled, navigation links become dark */
#header.scrolled .header-nav ul li a {
    color: var(--primary-darkgray);
}

#header.scrolled .header-nav ul li a:hover {
    color: var(--blue);
    background-color: var(--light-gray);
}

.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-nav ul li a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Dynamic Dropdown Styles */
.dynamic-children {
    position: relative;
}

.dynamic {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border-radius: 0;
    display: none;
    margin-top: 0;
}



.dynamic-children:hover .dynamic {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Alternative hover method */
.dynamic-children .dynamic:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Ensure dropdown works properly when scrolled */
#header.scrolled .dynamic {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure dropdown text is visible when scrolled */
#header.scrolled .dynamic a {
    color: #000000 !important;
}



.dynamic li {
    list-style: none;
    display: block;
    width: 100%;
}

.dynamic a {
    color: #000000 !important;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: none;
    position: relative;
    font-weight: 600;
    line-height: 1.4;
}

.dynamic a:hover {
    color: #00bcd4;
    background-color: rgba(0, 188, 212, 0.1);
}



.dynamic a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    transition: all 0.3s ease;
}

.dynamic a:hover::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* When scrolled, mobile toggle becomes dark */
#header.scrolled .mobile-nav-toggle span {
    background-color: var(--primary-darkgray);
}

/* Touch-friendly mobile navigation */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .header-nav ul li a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dynamic li a {
        padding: 1rem 2rem;
        min-height: 44px;
    }
}

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

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

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   UNIFIED MOBILE NAVIGATION SYSTEM
   Mobile-first responsive navigation for all resolutions 1080px and below
   ======================================== */

@media (max-width: 1080px) {
    /* Reset body positioning */
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Hide top bar completely in mobile view */
    .top-bar {
        display: none !important;
    }
    
    /* Fixed header with mobile layout */
    #header {
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    
    /* Mobile header layout */
    .header-nav-main {
        flex-direction: row;
        height: 70px;
        padding: 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo positioning */
    .header-logo {
        margin-bottom: 0;
    }
    
    .header-logo img {
        max-height: 45px;
    }
    
    /* Navigation container */
    .header-nav {
        width: auto;
        justify-content: flex-end;
    }
    
    /* Hidden navigation menu by default */
    .header-nav ul {
        display: none;
        width: calc(100% - 2rem);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 8px 1rem 0 1rem;
        flex-direction: column;
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Show navigation when active */
    .header-nav ul.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Navigation links styling */
    .header-nav ul li a {
        padding: 1.2rem 1.5rem;
        color: #333333 !important;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-weight: 500;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Animated background on hover */
    .header-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, #019EBD, #006D8E);
        transition: width 0.3s ease;
        z-index: -1;
    }
    
    .header-nav ul li a:hover::before {
        width: 100%;
    }
    
    .header-nav ul li a:hover {
        background: transparent !important;
        color: #ffffff !important;
        transform: translateX(8px);
    }
    
    /* First and last item border radius */
    .header-nav ul li:first-child a {
        border-radius: 12px 12px 0 0;
    }
    
    .header-nav ul li:last-child a {
        border-radius: 0 0 12px 12px;
        border-bottom: none;
    }
    
    /* Mobile toggle button - enhanced styling */
    .mobile-nav-toggle {
        display: flex !important;
        background: #019EBD !important;
        border: none;
        border-radius: 8px;
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(1, 158, 189, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        z-index: 1005;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-nav-toggle:hover {
        background: #006D8E !important;
        transform: scale(1.05);
    }
    
    .mobile-nav-toggle span {
        background-color: #ffffff !important;
        width: 22px;
        height: 2px;
        margin: 2px 0;
        border-radius: 1px;
        transition: all 0.3s ease;
        display: block;
    }
    
    /* Header actions container */
    .header-actions {
        position: relative;
        top: auto;
        right: auto;
        display: flex !important;
        align-items: center;
    }
    
    /* Ensure mobile toggle visibility with multiple selectors */
    .header-nav-main .header-actions .mobile-nav-toggle,
    .header-actions .mobile-nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Dropdown menus in mobile view */
    .dynamic {
        position: static !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        display: none !important;
        flex-direction: column;
        box-shadow: none;
        border-radius: 0;
        transform: none !important;
        width: 100%;
        background: #f5f5f5 !important;
    }
    
    /* open state controlled by JS on mobile */
    .dynamic.open { display: block !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }
    
    .dynamic li a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 0.95rem;
        color: #666666 !important;
        min-height: 44px;
    }
    
    .dynamic li a:hover {
        background: rgba(1, 158, 189, 0.1) !important;
        color: #019EBD !important;
        transform: translateX(5px);
    }
    
    /* Hero section adjustments for mobile header */
    .hero {
        margin-top: 0 !important;
        padding-top: 2rem !important;
        min-height: 80vh !important;
    }
    
    .hero-video-bg {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        padding-top: 2rem;
    }
}

/* ========================================
   TABLET-SPECIFIC OPTIMIZATIONS
   Additional optimizations for larger tablets above 1080px
   ======================================== */

/* Tablet Portrait (1081px - 1200px) */
@media (min-width: 1081px) and (max-width: 1200px) {
    .top-bar {
        padding: 0.3rem 0;
        height: 40px;
    }
    
    #header {
        margin-top: 40px;
    }
    
    .header-nav ul li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Large Tablet and Small Desktop (1201px - 1400px) */
@media (min-width: 1201px) and (max-width: 1400px) {
    .header-nav-main {
        padding: 0 2rem;
    }
    
    .header-nav ul {
        gap: 0.5rem;
    }
    
    .header-nav ul li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-nav-toggle {
        display: none;
    }
}

/* ========================================
   COMPREHENSIVE TABLET NAVIGATION STYLES
   Additional tablet-specific optimizations from individual pages
   ======================================== */

/* iPad Pro and larger tablets (1081px - 1366px) */
@media (min-width: 1081px) and (max-width: 1366px) {
    .header-nav ul li a {
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
    }
}

/* Tablet Portrait Optimization (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Ensure mobile toggle is hidden on larger tablets */
    .mobile-nav-toggle {
        display: none !important;
    }
    
    /* Touch-friendly navigation */
    .header-nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Hero section adjustment for tablet header */
    .hero {
        margin-top: -105px !important; /* Adjust for tablet header height (65px + 40px top bar) */
        padding-top: 150px !important; /* Ensure content is below header */
        min-height: 70vh !important;
    }
}

/* Tablet Portrait with Horizontal Scroll (768px - 1024px portrait) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .header-nav ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .header-nav ul::-webkit-scrollbar {
        display: none;
    }
    
    .header-nav ul li {
        flex-shrink: 0;
    }
    
    /* Ensure proper header positioning */
    #header {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}

/* Desktop - Hide Mobile Toggle (Above 1080px) */
@media (min-width: 1081px) {
    .mobile-nav-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Tablet Landscape Specific (768px - 1024px landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .header-nav-main {
        height: 60px;
        padding: 0.5rem 1rem;
    }
    
    .header-logo img {
        max-height: 40px;
    }
    
    .mobile-nav-toggle {
        display: flex !important;
        background: var(--primary-blue);
        border-radius: 6px;
        padding: 8px;
        width: 36px;
        height: 36px;
    }
    
    .mobile-nav-toggle span {
        background-color: var(--white);
        width: 20px;
        height: 2px;
        margin: 1.5px 0;
    }
    
    .header-nav ul {
        display: none;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 5px;
        flex-direction: column;
    }
    
    .header-nav ul.active {
        display: flex;
    }
    
    .header-nav ul li a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--light-gray);
        color: var(--primary-darkgray);
        background: var(--white);
        transition: all 0.3s ease;
    }
    
    .header-nav ul li a:hover {
        background-color: var(--light-gray);
        color: var(--primary-blue);
    }
    
    .header-nav ul li:last-child a {
        border-bottom: none;
        border-radius: 0 0 8px 8px;
    }
}

/* ========================================
   MOBILE-FIRST CONTENT LAYOUT SYSTEM
   Image-on-top, text-below for resolutions below 1080px
   ======================================== */

@media (max-width: 1080px) {
    /* Content Section Layout - Force vertical stacking */
    .content-section,
    .content-section:nth-child(even),
    .content-section.force-left,
    .content-section.force-right {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    /* Images always appear first (top) on mobile */
    .section-images {
        order: -1 !important;
        width: 100% !important;
        flex: none !important;
        min-height: 200px;
        margin-bottom: 1rem;
    }
    
    /* Text content appears second (bottom) on mobile */
    .section-content {
        order: 1 !important;
        width: 100% !important;
        flex: none !important;
        padding: 1rem 1.5rem 1.5rem 1.5rem !important;
    }
    
    /* Equipment and Software Items */
    .equipment-item .content-section,
    .software-item .content-section {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .equipment-item .section-images,
    .software-item .section-images {
        order: -1 !important;
        margin-bottom: 1rem;
    }
    
    .equipment-item .section-content,
    .software-item .section-content {
        order: 1 !important;
    }
    
    /* Technology Grid Items (frac-fluid-technologies) */
    .technology-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .technology-item {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .technology-item img {
        order: -1 !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 1rem !important;
    }
    
    .technology-item .content {
        order: 1 !important;
        width: 100% !important;
    }
    
    /* Capability Items (hydraulic-fracturing-capabilities) */
    .capability-item {
        display: flex !important;
        flex-direction: column !important;
        padding: 1rem !important;
    }
    
    .capability-item img {
        order: -1 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
        object-fit: cover !important;
        margin-bottom: 1rem !important;
    }
    
    .capability-item .content,
    .capability-item .capability-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    /* Ensure all image containers are responsive */
    .section-images img,
    .technology-item img,
    .capability-item img,
    .equipment-item img,
    .software-item img {
        width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
        object-fit: cover !important;
        border-radius: 8px;
    }
    
    /* Typography adjustments for mobile */
    .section-content h3,
    .technology-item h3,
    .capability-item h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .section-content p,
    .technology-item p,
    .capability-item p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1rem !important;
    }
    
    .section-content ul li,
    .technology-item ul li,
    .capability-item ul li {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.8rem !important;
    }
}

/* Tablet-specific adjustments (768px - 1080px) */
@media (min-width: 768px) and (max-width: 1080px) {
    .section-images {
        min-height: 250px;
    }
    
    .section-images img,
    .technology-item img,
    .capability-item img {
        max-height: 350px !important;
    }
    
    .section-content {
        padding: 1.5rem 2rem 2rem 2rem !important;
    }
    
    .section-content h3 {
        font-size: 2rem !important;
    }
    
    .section-content p {
        font-size: 1.1rem !important;
    }
}

/* Small mobile devices (below 480px) */
@media (max-width: 480px) {
    .section-images {
        min-height: 180px;
        margin-bottom: 0.5rem;
    }
    
    .section-images img,
    .technology-item img,
    .capability-item img {
        max-height: 220px !important;
    }
    
    .section-content {
        padding: 0.75rem 1rem 1rem 1rem !important;
    }
    
    .section-content h3 {
        font-size: 1.6rem !important;
    }
    
    .section-content p {
        font-size: 0.95rem !important;
    }
    
    .section-content ul li {
        font-size: 0.9rem !important;
    }
}

/* ========================================
   SINGLE-COLUMN LAYOUT SYSTEM
   For hydraulic-fracturing-performance.aspx and our-experience-powers-your-success.aspx
   Single column layout for resolutions 1080px and below
   ======================================== */

@media (max-width: 1080px) {
    /* Performance Grid (hydraulic-fracturing-performance.aspx) */
    .performance-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 2rem 0 !important;
    }
    
    .performance-item {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
    
    .performance-image {
        width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
        object-fit: cover !important;
    }
    
    .performance-content {
        padding: 1.5rem !important;
    }
    
    .performance-content h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .performance-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Experience Grid (our-experience-powers-your-success.aspx) */
    .experience-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 2rem 0 !important;
    }
    
    .experience-item {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
    
    .experience-header {
        padding: 1.5rem !important;
    }
    
    .experience-header h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .experience-content {
        padding: 1.5rem !important;
    }
    
    .experience-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1rem !important;
    }
    
    .experience-content ul li {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Experience logo adjustments */
    .experience-logo {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 1rem !important;
    }
}

/* Tablet-specific adjustments (768px - 1080px) */
@media (min-width: 768px) and (max-width: 1080px) {
    .performance-item,
    .experience-item {
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    
    .performance-content,
    .experience-header,
    .experience-content {
        padding: 2rem !important;
    }
    
    .performance-content h3,
    .experience-header h3 {
        font-size: 2rem !important;
    }
    
    .performance-content p,
    .experience-content p {
        font-size: 1.1rem !important;
    }
    
    .experience-logo {
        width: 90px !important;
        height: 90px !important;
    }
}

/* Small mobile devices (below 480px) */
@media (max-width: 480px) {
    .performance-grid,
    .experience-grid {
        gap: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .performance-content,
    .experience-header,
    .experience-content {
        padding: 1rem !important;
    }
    
    .performance-content h3,
    .experience-header h3 {
        font-size: 1.6rem !important;
    }
    
    .performance-content p,
    .experience-content p {
        font-size: 0.95rem !important;
    }
    
    .performance-content ul li,
    .experience-content ul li {
        font-size: 0.9rem !important;
    }
    
    .experience-logo {
        width: 60px !important;
        height: 60px !important;
    }
    
    .performance-image {
        max-height: 220px !important;
    }
}

/* Search Styles */
.header-nav-main .search.searchMobile {
    position: relative;
}

.header-nav-main .search.searchMobile input {
    font-family: var(--font-family-forma);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: normal;
}

.header-nav-main .search.searchMobile input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.header-nav-main .search.searchMobile input:focus {
    border-color: var(--white);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* When scrolled, search input becomes dark */
#header.scrolled .header-nav-main .search.searchMobile input {
    border: 1px solid var(--light-gray-text);
    background: var(--white);
    color: var(--primary-darkgray);
}

#header.scrolled .header-nav-main .search.searchMobile input::placeholder {
    color: var(--light-gray-text);
}

#header.scrolled .header-nav-main .search.searchMobile input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(1, 158, 189, 0.2);
}

/* Hero Section - Updated for Navigation Overlap */
.hero {
    color: var(--white);
    padding: 200px 0 80px; /* Increased top padding to account for header overlay */
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: -147px; /* Negative margin to pull hero up behind fixed header */
    border-bottom: 1em solid #12788c; /* Added bottom border similar to parent website */
    overflow: hidden; /* Ensure video doesn't overflow */
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Fallback for browsers that don't support video */
    background: url('https://abrajenergy.com/abraj-fracturing/PublishingImages/Picture3_Abraj.jpg') center center/cover no-repeat;
}

/* Fallback for browsers that don't support video */
@supports not (object-fit: cover) {
    .hero-video-bg {
        display: none;
    }
    
    .hero {
        background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%), url('https://abrajenergy.com/abraj-fracturing/PublishingImages/Picture3_Abraj.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Video loading and transition effects */
.hero-video-bg {
    transition: opacity 0.5s ease-in-out;
}

/* Ensure smooth video playback */
.hero-video-bg::-webkit-media-controls {
    display: none !important;
}

.hero-video-bg::-webkit-media-controls-panel {
    display: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%);
    z-index: 2;
    opacity: 1;
}

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

.hero h1 {
    font-family: var(--font-family-microgramma);
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
}

.hero h2 {
    font-family: var(--font-family-forma);
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-family: var(--font-family-forma);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: normal;
}

/* Buttons */
.btn {
    font-family: var(--font-family-forma);
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--teal);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-header p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    opacity: 0.8;
    font-size: 1.2rem;
    font-weight: normal;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-weight: normal;
    font-size: 1.2rem;
}

.service-link {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-blue);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: normal;
    font-size: 1.2rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature h3 {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    opacity: 0.8;
    font-weight: normal;
    font-size: 1.2rem;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-family-forma);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-content p {
    font-family: var(--font-family-forma);
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Call to Action Section */
.cta-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Related Services Section */
.related-services {
    padding: 2rem 0;
    background: var(--white);
}

.related-services .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-darkgray);
    margin-bottom: 2rem;
    margin-top: .5rem;
    font-family: var(--font-family-forma);
}

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

.related-service-card {
    position: relative;
    display: block;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
    border-bottom: 3px solid #008080;
}

.related-service-card:hover {
    transform: translateY(-5px);
}

.related-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.related-service-content {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.related-service-card h3 { 
    color: var(--white); 
    margin: 0 0 0.25rem; 
    font-size: 1.25rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.related-service-card .subtitle { 
    color: rgba(255,255,255,0.9); 
    font-size: 0.95rem; 
    margin: 0; 
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    line-height: 1.4;
    display: none;
}

.related-service-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    text-align: center;
    transform: translateY(20px);
}

.related-service-hover h3 {
    color: var(--white);
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    transform: translateY(0);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.related-service-hover .subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    margin: 0;
    opacity: 0;
    line-height: 1.6;
    max-width: 90%;
    display: none;
}

.related-service-card:hover .related-service-content {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.related-service-card:hover .related-service-hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.related-service-card:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.75) 100%);
}

/* Responsive adjustments for related services */
@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-services .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Footer - Updated to match parent website exactly */
.footer {
    background: #015E70 !important;
    color: var(--white);
    padding: 3rem 0 0 0;
    margin-bottom: 0;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.footer-background {
    background: linear-gradient(135deg, #015E70 0%, var(--teal) 100%);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-family: var(--font-family-forma);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section h4 {
    font-family: var(--font-family-forma);
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #90ae69;
}

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

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.footer-logo-text {
    font-family: var(--font-family-forma);
    color: #00bcd4;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.tagline {
    font-family: var(--font-family-forma);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: normal;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00bcd4;
    transform: translateY(-2px);
}

.footer-section p {
    font-family: var(--font-family-forma);
    color: #E9E9E9;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    font-family: var(--font-family-forma);
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: normal;
}

.footer-section ul li a:hover {
    color: #FFF;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    width: 20px;
    color: var(--primary-blue);
}

.footer-bottom {
    background: #004956 !important;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100vw;
    margin: 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.copyright p {
    color: #E9E9E9;
    margin: 0;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 1.5rem;
    }
    
    /* Fix header responsiveness */
    .header-nav-main {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-nav ul {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .header-nav ul li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Fix banner responsiveness */
    .hero {
        padding: 3rem 0;
        margin-top: 147px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-family: var(--font-family-microgramma);
        font-size: 3rem;
        font-weight: bold;
        letter-spacing: 0.02em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    /* Make header background white on mobile */
    #header {
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    
    .quick-links {
        gap: 1rem;
        font-size: 0.7rem;
    }
    
    .header-nav-main {
        flex-direction: row;
        height: 70px;
        padding: 1rem 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-logo {
        margin-bottom: 0;
    }
    
    .header-nav {
        width: auto;
        justify-content: flex-end;
    }
    
    .header-nav ul {
        display: none;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        z-index: 1000;
        border: 1px solid var(--light-gray);
        margin-top: 5px;
    }
    
    .header-nav ul.active {
        display: flex;
    }
    
    .header-nav ul li a {
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid var(--light-gray);
        color: var(--primary-darkgray);
        background: var(--white);
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .header-nav ul li a:hover {
        background-color: var(--light-gray);
        color: var(--primary-blue);
    }
    
    .header-nav ul li:last-child a {
        border-bottom: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .header-actions {
        position: relative;
        top: auto;
        right: auto;
        display: flex;
        align-items: center;
    }
    
    /* Enhanced Mobile Navigation Design */
    .mobile-nav-toggle {
        display: flex !important;
        background: var(--primary-blue);
        border-radius: 8px;
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 8px rgba(1, 158, 189, 0.3);
        transition: all 0.3s ease;
    }
    
    .mobile-nav-toggle:hover {
        background: var(--dark-blue);
        transform: scale(1.05);
    }
    
    .mobile-nav-toggle span {
        background-color: var(--white);
        width: 22px;
        height: 2px;
        margin: 2px 0;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .header-nav ul li a {
        color: var(--primary-darkgray);
    }
    
    /* Mobile Navigation Menu Styling */
    .header-nav ul {
        background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        border: 1px solid var(--light-gray);
        border-radius: 12px;
        margin-top: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .header-nav ul li a {
        color: var(--primary-darkgray);
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .header-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
        transition: width 0.3s ease;
        z-index: -1;
    }
    
    .header-nav ul li a:hover::before {
        width: 100%;
    }
    
    .header-nav ul li a:hover {
        background: transparent;
        color: var(--white);
        transform: translateX(8px);
    }
    
    /* Mobile Navigation Icons */
    .header-nav ul li a i {
        margin-left: auto;
        color: var(--primary-blue);
        transition: all 0.3s ease;
    }
    
    .header-nav ul li a:hover i {
        color: var(--white);
        transform: rotate(180deg);
    }
    
    /* Mobile Navigation Active States */
    .header-nav ul li a.active {
        background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
        color: var(--white);
    }
    
    .header-nav ul li a.active i {
        color: var(--white);
    }
    
    /* Mobile Navigation Submenu Styling */
    .dynamic {
        background: rgba(1, 158, 189, 0.05) !important;
        border-left: 3px solid var(--primary-blue);
        margin-left: 1rem;
        border-radius: 0 8px 8px 0;
    }
    
    .dynamic li a {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        color: var(--dark-gray);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dynamic li a:hover {
        background: rgba(1, 158, 189, 0.1);
        color: var(--primary-blue);
        transform: translateX(5px);
    }
    
    .dynamic {
        position: static !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        display: none !important;
        flex-direction: column;
        box-shadow: none;
        border-radius: 0;
        transform: none !important;
        width: 100%;
        background: var(--light-gray) !important;
    }
    
    .dynamic-children:hover .dynamic {
        display: block !important;
        transform: none !important;
    }
    
    .dynamic li a {
        padding-left: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Fix large gap after banner - adjust for hidden top bar */
    .hero {
        margin-top: 0;
        padding: 2rem 0;
        min-height: 500px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Mobile Video Background */
    .hero-video-bg {
        object-fit: cover;
        z-index: 1;
        /* Optimize for mobile performance */
        will-change: transform;
    }
    
    /* Reduce video quality on mobile for better performance */
    @media (max-width: 768px) {
        .hero-video-bg {
            object-position: center center;
        }
    }
    
    /* Add mobile-specific overlay enhancements */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 73, 86, 0.3) 0%, rgba(7, 120, 141, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* Enhanced mobile overlay effects */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
        z-index: 1;
        pointer-events: none;
    }
    
    /* Ensure text readability on mobile */
    .hero h1, .hero h2, .hero p {
        position: relative;
        z-index: 3;
    }
    
    /* Adjust body padding for mobile when top bar is hidden */
    body {
        padding-top: 70px; /* Only header height, no top bar */
    }
    
    .hero h1 {
        font-family: var(--font-family-microgramma);
        font-size: 2.5rem;
        font-weight: bold;
        letter-spacing: 0.02em;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        margin-bottom: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }
    
    .hero p {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        margin-bottom: 2rem;
        opacity: 0.9;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .btn {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .hero .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    /* Fix achievements section spacing */
    .achievements-section {
        padding: 2rem 0;
        margin-top: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-family: var(--font-family-microgramma);
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.02em;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero h2 {
        font-size: 1.2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    .hero p {
        font-size: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    /* Enhanced mobile overlay for small screens */
    .hero {
        min-height: 450px;
        padding: 1.5rem 0;
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(0, 73, 86, 0.4) 0%, rgba(7, 120, 141, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    }
    
    .service-card,
    .feature {
        padding: 1.5rem;
    }
    
    /* Fix achievements for very small screens */
    .achievements-row-first,
    .achievements-row-second {
        gap: 1rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
    }
    
    .achievement-icon i {
        font-size: 1.2rem;
    }
    
    /* Fix header for very small screens */
    .header-nav-main {
        padding: 0 1rem;
    }
    
    .header-logo img {
        max-width: 120px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

    /* Mobile-specific improvements */
    @media (max-width: 768px) {
        /* Improve touch targets */
        .btn {
            min-height: 44px;
            padding: 1rem 1.5rem;
        }
        
        /* Better spacing for mobile */
        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
        }
        
        /* Fix container padding for mobile */
        .container {
            padding: 0 1rem;
        }
        
        /* Enhanced mobile navigation */
        .header-nav ul {
            border-radius: 12px;
            margin: 8px 1rem 0 1rem;
            width: calc(100% - 2rem);
            left: 0;
            right: 0;
        }
        
        .header-nav ul li a {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding: 1.2rem 1.5rem;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .header-nav ul li:first-child a {
            border-radius: 12px 12px 0 0;
        }
        
        .header-nav ul li:last-child a {
            border-radius: 0 0 12px 12px;
            border-bottom: none;
        }
        
        /* Better mobile achievements layout */
        .achievements-section {
            padding: 2rem 1rem;
        }
        
        .achievements-header h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        /* Mobile navigation animations */
        .header-nav ul {
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .header-nav ul.active {
            transform: translateY(0);
            opacity: 1;
        }
    }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Header */
.page-header {
    margin-top: -147px; /* Negative margin to pull banner up behind fixed header */
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%), url('https://abrajenergy.com/abraj-fracturing/PublishingImages/Picture3_Abraj.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 200px 0 100px; /* Adjusted bottom padding for reduced overlap */
    text-align: center;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
}

/* Special page header for Integrated Fracturing Solutions */
        .page-header.fracturing-solutions {
            background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%), url('https://abrajenergy.com/abraj-fracturing/blockimages/Frac Plus - 127.JPG');
        }

        .page-header.frac-fluid-technologies {
            background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%), url('https://abrajenergy.com/abraj-fracturing/fracfluidimages/Crosslinked Sample_Page7_V4.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .page-header.page-header-spe {
            background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%), url('https://abrajenergy.com/abraj-fracturing/blockimages/Read our work featured in SPE.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.page-header-content h1,
.page-header h1 {
    font-family: var(--font-family-microgramma);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.page-header-content p,
.page-header p {
    font-family: var(--font-family-forma);
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: normal;
}

/* Content Area Overlap - Creates the white box overlapping the banner */
.content-overlap {
    background: var(--white);
    margin-top: -50px; /* Moderate overlap for clear visibility */
    position: relative;
    z-index: 3;
    border-radius: 12px 12px 0 0; /* Clean rounded top corners */
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow for definition */
    padding: 2rem 0 4rem; /* Increased bottom padding to contain all content */
    border: 3px solid #e0e0e0; /* Clear light gray border */
    max-width: 70% !important; /* Unified width across all inner pages - force override */
    width: 70% !important; /* Force width override */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: calc(100vh - 200px); /* Ensure it covers most of the viewport */
    /* Force box-sizing to ensure width calculations are correct */
    box-sizing: border-box !important;
}

/* Enhanced border definition */
.content-overlap::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    height: 6px;
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    border-radius: 12px 12px 0 0;
    z-index: -1;
}

/* Inner content container for better spacing */
.content-overlap .container {
    max-width: none !important; /* Override global container constraint */
    width: 100% !important;
    margin: 0 auto;
    padding: 0 3rem; /* Increased padding for better content spacing */
}

/* Additional specificity to override global container rules */
body .content-overlap .container,
html .content-overlap .container,
.content-overlap > .container {
    max-width: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Additional visual definition for the bounding box */
.content-overlap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d0d0d0 20%, #d0d0d0 80%, transparent 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-overlap {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .content-overlap .container {
        padding: 0 1rem;
    }

    /* Mobile Typography Standards */
    h1 {
        font-size: 2rem !important;
    }
    
    h2, .content-overlap h2, .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    h3, .content-overlap h3, .software-content h3, .solution-item h4, .feature-item h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem;
    }
    
    h4, .content-overlap h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem;
    }
    
    h5, .content-overlap h5 {
        font-size: 1rem !important;
        margin-bottom: 0.6rem;
    }
    
    h6, .content-overlap h6 {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem;
    }
    
    p, .content-overlap p, .software-content p, .solution-item p, .feature-item p, 
    .service-detail-content p, .about-text p, .hero p, .section-header p {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    ul, ol, .content-overlap ul, .content-overlap ol {
        font-size: 1rem !important;
        line-height: 1.5;
    }
    
    li, .content-overlap li, .software-features li, .solution-item li, .feature-item li {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .software-features ul ul li {
        font-size: 0.95rem !important;
    }
    
    /* Specific component adjustments */
    .solutions-table-header h3 {
        font-size: 1.4rem !important;
    }
    
    .solutions-table-header p {
        font-size: 0.95rem !important;
    }
    
    .achievement-metric .metric-number {
        font-size: 1.8rem !important;
    }
    
    .achievement-metric .metric-label {
        font-size: 0.9rem !important;
    }
    
    .achievement-item h4 {
        font-size: 1rem !important;
    }
    
    .achievement-item p {
        font-size: 0.9rem !important;
    }
    
    .cta-content h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
    }
    
    .footer-section h3 {
        font-size: 1.2rem !important;
    }
    
    .footer-section p, .footer-section li {
        font-size: 0.9rem !important;
    }
    
    /* Hero section mobile typography */
    .hero h1 {
        font-size: 2.4rem !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero h2 {
        font-size: 1.6rem !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .hero p {
        font-size: 1.1rem !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    /* Page header mobile typography */
    .page-header h1 {
        font-size: 2.2rem !important;
    }
    
    .page-header p {
        font-size: 1.1rem !important;
    }
    
    /* Button text mobile typography */
    .btn {
        font-size: 1rem !important;
        padding: 0.9rem 1.6rem !important;
    }
}

/* Override global container media queries for content-overlap */
@media (max-width: 1200px) {
    .content-overlap .container {
        max-width: none !important;
        width: 100% !important;
    }
}

/* Additional Mobile Typography for Smaller Screens */
@media (max-width: 480px) {
    /* Mobile responsive adjustments for page-header and content-overlap */
    .page-header {
        min-height: 350px !important; /* Even shorter banner on small mobile */
        padding: 100px 0 50px !important; /* Further reduced padding */
        margin-top: -80px !important; /* Further reduced negative margin */
    }
    
    .page-header h1 {
        font-size: 1.8rem !important; /* Even smaller title */
        margin-bottom: 0.8rem !important;
    }
    
    .page-header p {
        font-size: 0.9rem !important; /* Even smaller description */
        max-width: 95% !important;
    }
    
    .content-overlap {
        max-width: 98% !important; /* Almost full width on small mobile */
        width: 98% !important;
        margin-top: -20px !important; /* Minimal overlap on small mobile */
        padding: 1rem 0 2rem !important; /* Minimal padding */
        border-radius: 6px 6px 0 0 !important; /* Minimal border radius */
    }
    
    .content-overlap .section-header {
        margin-bottom: 1.5rem !important;
        padding-bottom: 0.8rem !important;
    }
    
    .content-overlap h2 {
        font-size: 1.6rem !important; /* Even smaller section headers */
        margin-bottom: 0.8rem !important;
    }
    
    .content-overlap p {
        font-size: 0.95rem !important; /* Even smaller paragraph text */
        max-width: 100% !important;
    }
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2, .content-overlap h2, .section-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem;
    }
    
    h3, .content-overlap h3, .software-content h3, .solution-item h4, .feature-item h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.7rem;
    }
    
    h4, .content-overlap h4 {
        font-size: 1rem !important;
        margin-bottom: 0.7rem;
    }
    
    h5, .content-overlap h5 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem;
    }
    
    h6, .content-overlap h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem;
    }
    
    p, .content-overlap p, .software-content p, .solution-item p, .feature-item p, 
    .service-detail-content p, .about-text p, .hero p, .section-header p {
        font-size: 0.95rem !important;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    ul, ol, .content-overlap ul, .content-overlap ol {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    li, .content-overlap li, .software-features li, .solution-item li, .feature-item li {
        font-size: 0.95rem !important;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }
    
    .software-features ul ul li {
        font-size: 0.9rem !important;
    }
    
    /* Specific component adjustments for small screens */
    .solutions-table-header h3 {
        font-size: 1.3rem !important;
    }
    
    .solutions-table-header p {
        font-size: 0.9rem !important;
    }
    
    .achievement-metric .metric-number {
        font-size: 1.6rem !important;
    }
    
    .achievement-metric .metric-label {
        font-size: 1.1rem !important;
    }
    
    .achievement-item h4 {
        font-size: 0.95rem !important;
    }
    
    .achievement-item p {
        font-size: 1.1rem !important;
    }
    
    .cta-content h2 {
        font-size: 1.6rem !important;
    }
    
    .cta-content p {
        font-size: 0.95rem !important;
    }
    
    .footer-section h3 {
        font-size: 1.1rem !important;
    }
    
    .footer-section p, .footer-section li {
        font-size: 1.1rem !important;
    }
    
    /* Additional mobile responsive rules for all inner pages */
    .page-header.fracturing-solutions,
    .page-header.frac-fluid-technologies,
    .page-header.page-header-spe {
        background-size: cover !important;
        background-position: center !important;
    }
    
    /* Ensure all content sections are mobile optimized */
    .section-header {
        margin-bottom: 1.5rem !important;
        padding-bottom: 0.8rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }
    
    /* Hero section mobile typography */
    .hero h1 {
        font-size: 2.2rem !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero h2 {
        font-size: 1.4rem !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    .hero p {
        font-size: 1rem !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    /* Page header mobile typography */
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .page-header p {
        font-size: 1rem !important;
    }
    
    /* Button text mobile typography */
    .btn {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* Ultra-small screen optimizations */
@media (max-width: 360px) {
    /* Mobile responsive adjustments for page-header and content-overlap */
    .page-header {
        min-height: 300px !important; /* Minimal banner height on ultra-small screens */
        padding: 80px 0 40px !important; /* Minimal padding */
        margin-top: -60px !important; /* Minimal negative margin */
    }
    
    .page-header h1 {
        font-size: 1.5rem !important; /* Minimal title size */
        margin-bottom: 0.6rem !important;
    }
    
    .page-header p {
        font-size: 0.8rem !important; /* Minimal description size */
        max-width: 98% !important;
    }
    
    .content-overlap {
        max-width: 99% !important; /* Almost full width on ultra-small screens */
        width: 99% !important;
        margin-top: -15px !important; /* Minimal overlap */
        padding: 0.8rem 0 1.5rem !important; /* Minimal padding */
        border-radius: 4px 4px 0 0 !important; /* Minimal border radius */
    }
    
    .content-overlap .section-header {
        margin-bottom: 1.2rem !important;
        padding-bottom: 0.6rem !important;
    }
    
    .content-overlap h2 {
        font-size: 1.4rem !important; /* Minimal section header size */
        margin-bottom: 0.6rem !important;
    }
    
    .content-overlap p {
        font-size: 0.85rem !important; /* Minimal paragraph text size */
        max-width: 100% !important;
    }
    
    /* Additional mobile responsive rules for all inner pages */
    .page-header.fracturing-solutions,
    .page-header.frac-fluid-technologies,
    .page-header.page-header-spe {
        background-size: cover !important;
        background-position: center !important;
    }
    
    /* Ensure all content sections are mobile optimized */
    .section-header {
        margin-bottom: 1.2rem !important;
        padding-bottom: 0.6rem !important;
    }
    
    .section-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .section-header p {
        font-size: 0.85rem !important;
        max-width: 100% !important;
    }
    
    h1 {
        font-size: 1.6rem !important;
    }
    
    h2, .content-overlap h2, .section-header h2 {
        font-size: 1.3rem !important;
    }
    
    h3, .content-overlap h3, .software-content h3, .solution-item h4, .feature-item h4 {
        font-size: 1rem !important;
    }
    
    p, .content-overlap p, .software-content p, .solution-item p, .feature-item p, 
    .service-detail-content p, .about-text p, .hero p, .section-header p {
        font-size: 0.9rem !important;
    }
    
    li, .content-overlap li, .software-features li, .solution-item li, .feature-item li {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .content-overlap .container {
        max-width: none !important;
        width: 100% !important;
    }
    
    /* Mobile responsive adjustments for page-header and content-overlap */
    .page-header {
        min-height: 400px !important; /* Much shorter banner on mobile */
        padding: 120px 0 60px !important; /* Reduced padding */
        margin-top: -100px !important; /* Reduced negative margin */
    }
    
    .page-header h1 {
        font-size: 2.2rem !important; /* Smaller title on mobile */
        margin-bottom: 1rem !important;
    }
    
    .page-header p {
        font-size: 1rem !important; /* Smaller description on mobile */
        max-width: 90% !important;
    }
    
    .content-overlap {
        max-width: 95% !important; /* Cover almost full width on mobile */
        width: 95% !important;
        margin-top: -30px !important; /* Reduced overlap on mobile */
        padding: 1.5rem 0 3rem !important; /* Reduced padding */
        border-radius: 8px 8px 0 0 !important; /* Smaller border radius */
    }
    
    .content-overlap .section-header {
        margin-bottom: 2rem !important;
        padding-bottom: 1rem !important;
    }
    
    .content-overlap h2 {
        font-size: 1.8rem !important; /* Smaller section headers */
        margin-bottom: 1rem !important;
    }
    
    .content-overlap p {
        font-size: 1rem !important; /* Smaller paragraph text */
        max-width: 100% !important; /* Full width text on mobile */
    }
    
    /* Additional mobile responsive rules for all inner pages */
    .page-header.fracturing-solutions,
    .page-header.frac-fluid-technologies,
    .page-header.page-header-spe {
        background-size: cover !important;
        background-position: center !important;
    }
    
    /* Ensure all content sections are mobile optimized */
    .section-header {
        margin-bottom: 2rem !important;
        padding-bottom: 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
}

.content-overlap .container {
    position: relative;
    z-index: 3;
    max-width: none !important; /* Ensure override of global container */
    width: 100% !important;
}

/* First content section styling */
.content-overlap .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    padding-top: 2.5rem;
    border-bottom: 2px solid #f0f0f0; /* Subtle separator line */
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.content-overlap h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-overlap h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.content-overlap p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
}

/* Services Detailed */
.services-detailed {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-image {
    height: 400px;
    overflow: hidden;
}

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

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 3rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-detail-content h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.service-detail-content p {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.service-features ul li i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Why Choose Services */
.why-choose-services {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.advantage {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.advantage h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage p {
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design for Services */
@media (max-width: 992px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-detail-card.reverse {
        direction: ltr;
    }
    
    .service-detail-content {
        padding: 2rem;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-family: var(--font-family-microgramma);
        font-size: 2.5rem;
        font-weight: bold;
        letter-spacing: 0.02em;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-family: var(--font-family-microgramma);
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.02em;
    }
    
    .service-detail-content {
        padding: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
} 

/* Equipment & Technology Section */
.equipment-technology {
    padding: 6rem 0;
    background: var(--white);
}

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

.equipment-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.equipment-icon i {
    font-size: 2rem;
    color: var(--white);
}

.equipment-card h3 {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.equipment-card p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: normal;
}

.equipment-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.equipment-card ul li {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.equipment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.equipment-card .btn {
    width: 100%;
    text-align: center;
}

/* Safety & Environmental Section */
.safety-environmental {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.safety-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.safety-icon i {
    font-size: 2rem;
    color: var(--white);
}

.safety-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.safety-card p {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.safety-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.safety-card ul li {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.safety-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Technology & Innovation Section */
.technology-innovation {
    padding: 6rem 0;
    background: var(--white);
}

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

.tech-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.tech-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.tech-card p {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.tech-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.tech-link:hover {
    color: var(--dark-blue);
}

/* Project Management Section */
.project-management {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.project-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.project-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.project-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .safety-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .tech-grid,
    .project-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .equipment-grid,
    .safety-grid,
    .tech-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-card,
    .safety-card {
        padding: 2rem;
    }
    
    .tech-card,
    .project-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .equipment-card,
    .safety-card {
        padding: 1.5rem;
    }
    
    .equipment-icon,
    .safety-icon {
        width: 60px;
        height: 60px;
    }
    
    .equipment-icon i,
    .safety-icon i {
        font-size: 1.5rem;
    }
}

/* Technology Page Styles */
.technology-overview {
    padding: 4rem 0;
    background: var(--white);
}

.tech-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-intro h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.tech-intro p {
    color: var(--dark-gray);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Technology Sections */
.tech-section {
    padding: 6rem 0;
    background: var(--white);
}

.tech-section:nth-child(even) {
    background: var(--light-gray);
}

.tech-section.reverse {
    background: var(--light-gray);
}

.tech-section.reverse:nth-child(even) {
    background: var(--white);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text {
    padding: 2rem;
}

.tech-icon-large {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.tech-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.tech-text h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.tech-text p {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tech-features {
    margin-bottom: 2rem;
}

.tech-features h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-features ul {
    list-style: none;
}

.tech-features ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.tech-features ul li i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.tech-benefits {
    margin-bottom: 2rem;
}

.tech-benefits h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-benefits ul {
    list-style: none;
}

.tech-benefits ul li {
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.tech-image {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.tech-image:hover img {
    transform: scale(1.05);
}

/* Technology Integration */
.tech-integration {
    padding: 6rem 0;
    background: var(--white);
}

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

.integration-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.integration-icon i {
    font-size: 2rem;
    color: var(--white);
}

.integration-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.integration-card p {
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Innovation Pipeline */
.innovation-pipeline {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.innovation-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.innovation-item h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.innovation-item p {
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Responsive Design for Technology Page */
@media (max-width: 992px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-section.reverse .tech-content {
        direction: ltr;
    }
    
    .tech-text {
        padding: 1rem;
    }
    
    .tech-image {
        height: 300px;
    }
    
    .integration-grid,
    .innovation-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .tech-text h2 {
        font-size: 2rem;
    }
    
    .tech-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .tech-icon-large i {
        font-size: 2.5rem;
    }
    
    .integration-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-card,
    .innovation-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .tech-text {
        padding: 0.5rem;
    }
    
    .tech-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon-large i {
        font-size: 2rem;
    }
    
    .integration-card,
    .innovation-item {
        padding: 1.5rem;
    }
} 

/* Efficiency Section */
.efficiency-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.efficiency-content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.efficiency-text-content {
    flex: 1;
    max-width: 65%;
}

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

.efficiency-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.efficiency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.efficiency-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.efficiency-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Efficiency Image */
.efficiency-image {
    flex-shrink: 0;
    width: 35%;
    text-align: center;
}

.efficiency-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.efficiency-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose {
    padding: 4rem 0;
    background: var(--white);
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Integrated Solutions Section */
.integrated-solutions {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.solution-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--dark-blue);
}

/* Capabilities Section */
.capabilities {
    padding: 4rem 0;
    background: var(--white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.capability-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.capability-item.primary {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--light-gray), #f8f9fa);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(1, 158, 189, 0.1);
}

.capability-item.secondary {
    grid-column: span 1;
    background: linear-gradient(135deg, #f8f9fa, var(--light-gray));
    border-color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(0, 32, 96, 0.1);
}

.capability-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.capability-item.primary:hover {
    box-shadow: 0 8px 25px rgba(1, 158, 189, 0.2);
}

.capability-item.secondary:hover {
    box-shadow: 0 8px 25px rgba(0, 32, 96, 0.2);
}

.capability-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.capability-item.secondary h3 {
    color: var(--dark-blue);
}

.capability-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Advanced Technology Section */
.advanced-technology {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.tech-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.tech-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.tech-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Software Section */
.software-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.software-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.software-card:hover {
    transform: translateY(-5px);
}

.software-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.software-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.software-card li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.software-card li:before {
    content: "➢";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Laboratory Section */
.laboratory-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.lab-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.lab-feature:hover {
    transform: translateY(-5px);
}

.lab-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lab-feature h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.lab-feature p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.experience-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.experience-stats p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.experience-stats strong {
    color: var(--primary-blue);
}

/* SPE Publications Section */
.spe-publications {
    padding: 4rem 0;
    background: var(--light-gray);
}

.publications-cta {
    text-align: center;
    margin-top: 3rem;
}

/* SPE Publications button styling - override secondary button for visibility */
.spe-publications .btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.spe-publications .btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Updated Equipment & Technology Section */
.equipment-technology {
    padding: 4rem 0;
    background: var(--white);
}

/* Abraj Approach to Fracturing Section */
.abraj-approach {
    padding: 4rem 0;
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 0;
}

.approach-text {
    padding-right: 2rem;
}

.approach-text h2 {
    color: var(--dark-gray);

    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.approach-text h3 {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.approach-text .lead-text {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.approach-text p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.9;
}

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

/* Image Container Styles */
.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.approach-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: all 0.3s ease;
    /* Ensure proper image loading */
    background: var(--light-gray);
    /* Add loading state */
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Loading state for image */
.approach-image-content:not([src]) {
    opacity: 0.7;
}

/* Ensure image maintains aspect ratio on all devices */
.approach-image-content {
    object-position: center center;
}

/* Add subtle loading animation */
@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.approach-image-content[src] {
    animation: imageFadeIn 0.5s ease-out;
}

.approach-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.approach-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}



.approach-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Video Controls Styling */
.approach-video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 15px 15px;
}

.approach-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
}

.approach-video::-webkit-media-controls-play-button {
    background: var(--primary-blue);
    border-radius: 50%;
}

/* Ensure video maintains aspect ratio */
.approach-video {
    background: var(--dark-gray);
}

/* Responsive Design for Abraj Approach Section */
@media (max-width: 992px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-text {
        padding-right: 0;
        text-align: center;
    }
    
    .approach-text h2 {
        font-size: 1rem;
    }
    
    .approach-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .abraj-approach {
        padding: 3rem 0;
    }
    
    .approach-text h2 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .image-container {
        height: 300px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .approach-image-content {
        object-position: center;
    }
    
    .approach-text h3 {
        font-size: 1.2rem;
    }
    
    .approach-text .lead-text {
        font-size: 1.2rem;
    }
    
    .approach-text p {
        font-size: 1rem;
    }
    
    .video-container {
        height: 300px;
    }
    

}

@media (max-width: 480px) {
    .abraj-approach {
        padding: 2.5rem 0;
    }
    
    .approach-text h2 {
        font-size: 1rem;
    }
    
    .approach-text h3 {
        font-size: 1rem;
    }
    
    .approach-text .lead-text {
        font-size: 1.1rem;
    }
    
    .image-container {
        height: 250px;
    }
    
    .approach-image {
        margin-top: 2rem;
    }
    
    .video-container {
        height: 250px;
        border-radius: 10px;
    }
    

}

.why-choose-alt {
    padding: 2.5rem 0 1rem;
    background: var(--light-gray);
    text-align: center;
}

.why-choose-alt h2 {
    margin-bottom: 1rem;
}

.why-choose-alt-cta {
    margin-top: 0.5rem;
}

/* Hydraulic Fracturing Achievements Section */
.achievements-section {
    padding: 1rem 0 4rem 0;
    background: var(--light-gray);
}

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

.achievements-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Achievements Grid - Metrics */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.achievement-metric {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}



.achievement-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.achievement-metric:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.achievement-metric:hover::before {
    transform: scaleX(1);
}

.metric-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metric-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.metric-symbol {
    width: 3rem;
    height: 3rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.achievement-metric:hover .metric-symbol {
    transform: scale(1.1);
}

.achievement-metric:hover .metric-icon i {
    transform: scale(1.1);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.achievement-metric:hover .metric-number {
    color: var(--dark-blue);
    transform: scale(1.05);
}

.metric-label {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.9;
}

/* Client List Styling */
.client-list {
    margin-top: 1rem;
    text-align: center;
}

.client-item {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Achievements List */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

/* First Row: 3 cards in a row */
.achievements-row-first {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Second Row: 2 cards centered */
.achievements-row-second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Ensure achievement items are responsive */
.achievement-item {
    width: 100%;
    box-sizing: border-box;
}

.achievement-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(1, 158, 189, 0.3);
    transition: all 0.3s ease;
    margin-right: 0;
}

.achievement-icon svg {
    display: block;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(1, 158, 189, 0.4);
}

/* Enhanced hover effects for achievement items */
.achievement-item:hover .achievement-text p {
    color: var(--primary-blue);
    opacity: 1;
}

/* Pulse animation for metric icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.achievement-metric:hover .metric-symbol {
    animation: pulse 1s infinite;
}

.achievement-metric:hover .metric-icon i {
    animation: pulse 1s infinite;
}



.achievement-symbol {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--white);
}

.achievement-text {
    flex: 1;
}

.achievement-text p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    margin: 0;
    opacity: 0.9;
}

/* Animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-number.animated {
    animation: countUp 0.8s ease-out;
}

/* Responsive Design for Achievements Section */
@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Fix achievements list responsiveness */
    .achievements-row-first {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .achievements-row-second {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 3rem 0;
    }
    
    .achievements-header h2 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .achievement-metric {
        padding: 2rem 1.5rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
    
    .metric-symbol {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Fix achievements list responsiveness for mobile */
    .achievements-row-first {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-row-second {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0;
    }
    
    .achievement-item {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .achievements-section {
        padding: 2.5rem 0;
    }
    
    .achievements-header h2 {
        font-size: 1.8rem;
    }
    
    .achievement-metric {
        padding: 1.5rem 1rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .metric-symbol {
        width: 2rem;
        height: 2rem;
    }
    
    .achievement-item {
        padding: 1.25rem;
        flex-direction: row;
        text-align: left;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .achievement-icon {
        width: 45px;
        height: 45px;
    }
    
    .achievement-symbol {
        width: 1.3rem;
        height: 1.3rem;
    }
}

/* Ultra-small screen adjustments for achievement items */
@media (max-width: 360px) {
    .achievement-item {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
    }
    
    .achievement-icon i {
        font-size: 1.2rem;
    }
    
    .achievement-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

.explore-grid-advanced { 
    padding: 2rem 0; 
    background: var(--white); 
}

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

.explore-card {
    position: relative;
    display: block;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
    border-bottom: 3px solid #008080;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.explore-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.explore-card h3 { 
    color: var(--white); 
    margin: 0; 
    font-size: 1.25rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    position: relative;
    top: 0;
    text-align: left;
}

.explore-card .subtitle { 
    color: rgba(255,255,255,0.9); 
    font-size: 0.95rem; 
    margin: 0; 
    opacity: 1;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    line-height: 1.4;
}

.explore-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    text-align: center;
}

.explore-card-hover h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    transform: translateY(0);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    top: 0;
    text-align: center;
}

.explore-card-hover .subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    margin: 0;
    opacity: 1;
    line-height: 1.6;
    max-width: 90%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    font-weight: 400;
}

/* Hover Effects - Show overlay and move title to center */
.explore-card:hover .explore-card-content {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.explore-card:hover .explore-card-hover { 
    opacity: 1; 
    transform: translateY(0);
    pointer-events: auto;
}

.explore-card:hover::after { 
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.75) 100%);
}

/* Initial state for hover content */
.explore-card-hover {
    transform: translateY(20px);
}

/* Smooth transitions for all elements */
.explore-card * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-block {
    padding: 2.5rem 0;
    background: var(--light-gray);
}

.highlight-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

@media (max-width: 992px) { 
    .tiles-advanced-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.25rem;
    }
    
    .explore-card {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .tiles-advanced-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem;
    }
    
    .explore-card {
        min-height: 240px;
    }
    
    .explore-card-content,
    .explore-card-hover {
        padding: 1rem;
    }
    
    .explore-card h3 {
        font-size: 1.1rem;
    }
    
    .explore-card .subtitle {
        font-size: 0.9rem;
    }
    
    .explore-card-hover h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .explore-card-hover .subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) { 
    .tiles-advanced-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem;
    } 
    
    .explore-card { 
        min-height: 220px; 
    }
    
    .explore-card-content,
    .explore-card-hover {
        padding: 0.875rem;
    }
    
    .explore-card h3 {
        font-size: 1rem;
    }
    
    .explore-card .subtitle {
        font-size: 0.85rem;
    }
    
    .explore-card-hover h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .explore-card-hover .subtitle {
        font-size: 0.85rem;
    }
}

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

.equipment-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.equipment-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.equipment-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Updated Safety & Environmental Section */
.safety-environmental {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.safety-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.safety-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Updated Technology & Innovation Section */
.technology-innovation {
    padding: 4rem 0;
    background: var(--white);
}

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

.tech-innovation-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-innovation-item:hover {
    transform: translateY(-5px);
}

.tech-innovation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-innovation-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-innovation-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Updated Project Management Section */
.project-management {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.management-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.management-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.management-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.management-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Updated About Section */
.about {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Updated Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

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

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main CTA Section - Teal Background */
.cta-section {
    background: #018faf;
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
    margin: 0;
    width: 100%;
}

.cta-section .cta-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-section .cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-section .btn-cta {
    background: #005656;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-section .btn-cta:hover {
    background: #003d3d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}



/* Responsive Design Updates */
@media (max-width: 768px) {
    .efficiency-grid,
    .features-grid,
    .solutions-grid,
    .capabilities-grid,
    .tech-grid,
    .software-grid,
    .lab-features,
    .experience-grid,
    .equipment-grid,
    .safety-grid,
    .tech-innovation-grid,
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .efficiency-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .efficiency-text-content {
        max-width: 100%;
    }
    
    .efficiency-image {
        width: 100%;
        margin: 2rem 0;
    }
    
    .efficiency-hero-image {
        border-radius: 10px;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .capability-item {
        padding: 2rem 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .capability-item {
        padding: 1.5rem 1rem;
    }
    
    .efficiency-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .efficiency-text-content {
        max-width: 100%;
    }
    
    .efficiency-image {
        width: 100%;
        margin: 1.5rem 0;
    }
    
    .efficiency-hero-image {
        border-radius: 8px;
    }
} 

/* Equipment Page Styles */
.page-header {
    margin-top: -147px; /* Negative margin to pull banner up behind fixed header */
    padding: 200px 0 80px;
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.44) 35%, rgba(0, 0, 0, 0.75) 79%), url('https://abrajenergy.com/abraj-fracturing/PublishingImages/Picture3_Abraj.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

/* These styles are now handled by the unified .page-header h1 and .page-header p above */

/* Equipment Overview */
.equipment-overview {
    padding: 4rem 0;
    background: var(--white);
}

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

.equipment-stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.equipment-stat:hover {
    transform: translateY(-5px);
}

.equipment-stat .stat-number {
    font-family: var(--font-family-forma);
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.equipment-stat .stat-label {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: normal;
}

/* Pumping Systems */
.pumping-systems {
    padding: 4rem 0;
    background: var(--light-gray);
}

.pumping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pumping-text h3 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.pumping-text p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: normal;
}

.pumping-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pumping-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pumping-text li:last-child {
    border-bottom: none;
}

.pumping-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pumping-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pumping-features .feature {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pumping-features h4 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.pumping-features p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    font-weight: normal;
}

.pumping-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Blending Systems */
.blending-systems {
    padding: 4rem 0;
    background: var(--white);
}

.blending-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.blending-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blending-text h3 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.blending-text p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: normal;
}

.blending-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.blending-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.blending-text li:last-child {
    border-bottom: none;
}

.blending-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.blending-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.blending-features .feature {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blending-features h4 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.blending-features p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    font-weight: normal;
}

/* Monitoring Systems */
.monitoring-systems {
    padding: 4rem 0;
    background: var(--light-gray);
}

.monitoring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.monitoring-text h3 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.monitoring-text p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: normal;
}

.monitoring-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.monitoring-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.monitoring-text li:last-child {
    border-bottom: none;
}

.monitoring-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.monitoring-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.monitoring-features .feature {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.monitoring-features h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.monitoring-features p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.monitoring-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Equipment Capabilities */
.equipment-capabilities {
    padding: 4rem 0;
    background: var(--white);
}

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

.capability-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.capability-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Maintenance & Support */
.maintenance-support {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.support-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-item h3 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.support-item p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    line-height: 1.6;
    font-weight: normal;
}

/* Responsive Design for Equipment Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-family: var(--font-family-microgramma);
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.02em;
    }

    .pumping-content,
    .blending-content,
    .monitoring-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pumping-features,
    .blending-features,
    .monitoring-features {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .pumping-image img,
    .blending-image img,
    .monitoring-image img {
        height: 250px;
    }
} 

/* Safety Page Styles */
.safety-overview {
    padding: 4rem 0;
    background: var(--white);
}

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

.safety-stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.safety-stat:hover {
    transform: translateY(-5px);
}

.safety-stat .stat-number {
    font-family: var(--font-family-forma);
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.safety-stat .stat-label {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: normal;
}

/* Safety Protocols */
.safety-protocols {
    padding: 4rem 0;
    background: var(--light-gray);
}

.protocols-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.protocols-text h3 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.protocols-text p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: normal;
}

.protocols-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.protocols-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.protocols-text li:last-child {
    border-bottom: none;
}

.protocols-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.protocols-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.protocols-features .feature {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.protocols-features h4 {
    font-family: var(--font-family-forma);
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.protocols-features p {
    font-family: var(--font-family-forma);
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    font-weight: normal;
}

.protocols-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Environmental Protection */
.environmental-protection {
    padding: 4rem 0;
    background: var(--white);
}

.environmental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.environmental-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.environmental-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.environmental-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.environmental-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.environmental-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.environmental-text li:last-child {
    border-bottom: none;
}

.environmental-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.environmental-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.environmental-features .feature {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.environmental-features h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.environmental-features p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Quality Assurance */
.quality-assurance {
    padding: 4rem 0;
    background: var(--light-gray);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.quality-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.quality-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quality-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.quality-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.quality-text li:last-child {
    border-bottom: none;
}

.quality-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quality-features .feature {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quality-features h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.quality-features p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.quality-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Safety Programs */
.safety-programs {
    padding: 4rem 0;
    background: var(--white);
}

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

.program-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.program-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.program-card li {
    color: var(--dark-gray);
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.program-card li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Environmental Programs */
.environmental-programs {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.environmental-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.environmental-card:hover {
    transform: translateY(-5px);
}

.environmental-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.environmental-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.environmental-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.environmental-card li {
    color: var(--dark-gray);
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.environmental-card li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    background: var(--white);
}

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

.certification-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.certification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.certification-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.certification-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design for Safety Page */
@media (max-width: 768px) {
    .protocols-content,
    .environmental-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .protocols-features,
    .environmental-features,
    .quality-features {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .environmental-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .protocols-image img,
    .environmental-image img,
    .quality-image img {
        height: 250px;
    }
} 

/* Publications Page Styles */
.publications-overview {
    padding: 4rem 0;
    background: var(--white);
}

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

.publication-stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.publication-stat:hover {
    transform: translateY(-5px);
}

.publication-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.publication-stat .stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Featured Publications */
.featured-publications {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.publication-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-5px);
}

.publication-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.publication-header h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.publication-year {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.publication-authors {
    margin-bottom: 1rem;
}

.publication-authors p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.publication-abstract {
    margin-bottom: 1.5rem;
}

.publication-abstract p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.publication-details {
    margin-bottom: 1.5rem;
}

.publication-details p {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0.3rem 0;
}

.publication-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.publication-link:hover {
    color: var(--dark-blue);
}

/* Technical Areas */
.technical-areas {
    padding: 4rem 0;
    background: var(--white);
}

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

.area-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.area-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.area-card li {
    color: var(--dark-gray);
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.area-card li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Conference Presentations */
.conference-presentations {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.presentation-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.presentation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.presentation-header h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.presentation-year {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.presentation-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Awards & Recognition */
.awards-recognition {
    padding: 4rem 0;
    background: var(--white);
}

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

.award-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.award-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Research Collaboration */
.research-collaboration {
    padding: 4rem 0;
    background: var(--light-gray);
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.collaboration-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.collaboration-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.collaboration-text ul {
    list-style: none;
    padding: 0;
}

.collaboration-text li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.collaboration-text li:last-child {
    border-bottom: none;
}

.collaboration-text li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.collaboration-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Publications Page */
@media (max-width: 768px) {
    .publications-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .publication-header,
    .presentation-header {
        flex-direction: column;
        gap: 1rem;
    }

    .publication-header h3,
    .presentation-header h3 {
        margin-right: 0;
    }
}

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

    .collaboration-image img {
        height: 250px;
    }
}

/* Explore Grid Advanced Styles */
.explore-grid-advanced {
    padding: 4rem 0;
    background: var(--white);
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE SUMMARY
   ========================================
   This section ensures all inner pages benefit from mobile optimization
*/

/* Global Mobile Responsive Rules for All Inner Pages */
@media (max-width: 768px) {
    /* Ensure all page headers are mobile optimized */
    .page-header,
    .page-header.fracturing-solutions,
    .page-header.frac-fluid-technologies,
    .page-header.page-header-spe {
        min-height: 400px !important;
        padding: 120px 0 60px !important;
        margin-top: -100px !important;
    }
    
    /* Ensure all content areas cover full width on mobile */
    .content-overlap {
        max-width: 95% !important;
        width: 95% !important;
        margin-top: -30px !important;
        padding: 1.5rem 0 3rem !important;
        border-radius: 8px 8px 0 0 !important;
    }
    
    /* Ensure all section headers are mobile optimized */
    .section-header {
        margin-bottom: 2rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* Ensure all text elements are mobile optimized */
    .content-overlap h2,
    .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .content-overlap p,
    .section-header p {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Further optimization for small mobile devices */
    .page-header,
    .page-header.fracturing-solutions,
    .page-header.frac-fluid-technologies {
        min-height: 550px !important;
        padding: 100px 0 10px !important;
        margin-top: -80px !important;
    }
    
    .content-overlap {
        max-width: 98% !important;
        width: 98% !important;
        margin-top: -20px !important;
        padding: 1rem 0 2rem !important;
        border-radius: 6px 6px 0 0 !important;
    }
    
    .section-header {
        margin-bottom: 1.5rem !important;
        padding-bottom: 0.8rem !important;
    }
    
    .content-overlap h2,
    .section-header h2 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .content-overlap p,
    .section-header p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }
}

@media (max-width: 360px) {
    /* Ultra-small screen optimization */
    .page-header,
    .page-header.fracturing-solutions,
    .page-header.frac-fluid-technologies {
        min-height: 300px !important;
        padding: 80px 0 40px !important;
        margin-top: -60px !important;
    }
    
    .content-overlap {
        max-width: 99% !important;
        width: 99% !important;
        margin-top: -15px !important;
        padding: 0.8rem 0 1.5rem !important;
        border-radius: 4px 4px 0 0 !important;
    }
    
    .section-header {
        margin-bottom: 1.2rem !important;
        padding-bottom: 0.6rem !important;
    }
    
    .content-overlap h2,
    .section-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .content-overlap p,
    .section-header p {
        font-size: 0.85rem !important;
        max-width: 100% !important;
    }
}

/* CTA Section Mobile Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .cta-section .cta-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-section .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .cta-content p {
        font-size: 1rem;
    }
    
    .cta-section .btn-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
} 