/* Sri Rangaa VMC Tech - Main Stylesheet */
/* Bright Industrial Theme: Yellow + Black + Metallic Gray */

/* CURSOR STANDARDS - Override all previous cursor styles */
/* Default arrow cursor for everything */
* {
    cursor: default !important;
}

/* Pointer cursor only for interactive elements */
a, 
button, 
input[type="button"], 
input[type="submit"], 
input[type="reset"], 
input[type="checkbox"], 
input[type="radio"], 
select, 
option,
[role="button"],
[onclick],
.clickable {
    cursor: pointer !important;
}

/* Text cursor for input fields */
input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="number"], 
input[type="tel"], 
input[type="url"], 
input[type="search"], 
textarea {
    cursor: text !important;
}

/* Professional Animations */
/* Removed duplicate keyframes - using the ones defined later in the file */

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Not-allowed cursor for disabled elements */
[disabled], 
.disabled, 
button:disabled, 
input:disabled {
    cursor: not-allowed !important;
}

/* CSS Variables for Theme */
:root {
    --primary-yellow: #FFEB3B;
    --bright-yellow: #FFFF00;
    --dark-yellow: #FFA500;
    --primary-blue: #2C3E50;
    --secondary-blue: #34495E;
    --light-blue: #3498DB;
    --dark-blue: #1B2631;
    --metallic-gray: #5D6D7E;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --black: #000000;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-blue: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-light: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    --gradient-rainbow: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    --gradient-sunset: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-fire: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    --gradient-forest: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-blue: 0 10px 30px rgba(44, 62, 80, 0.2);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --nav-height: 80px;
}

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

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

.welcome-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23CCCCCC" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.product-placeholder span {
    position: relative;
    z-index: 2;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Vision & Mission Section */
.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.vision-item {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-yellow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, #FFA500 100%);
    transition: width 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.vision-item:hover::before {
    width: 8px;
}

.vision-item h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.vision-item h3 .emoji {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.vision-item p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .vision-item {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .vision-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .vision-item p {
        font-size: 1rem;
    }
}

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

/* Force no word breaks in all text elements */
p, span, div, h1, h2, h3, h4, h5, h6 {
    word-break: keep-all !important;
    hyphens: none !important;
}

/* Specific fix for service cards to prevent any word breaking */
.service-card * {
    word-break: keep-all !important;
    hyphens: none !important;
    overflow-wrap: normal !important;
}

/* Extra specific rule for service card text */
.service-card p, .service-card h3, .service-card div {
    word-break: keep-all !important;
    hyphens: none !important;
    white-space: normal !important;
}

/* Ultra-specific fix for LPDC Moulds and all service descriptions */
.service-card {
    word-break: keep-all !important;
    hyphens: none !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
}

.service-card p {
    word-break: keep-all !important;
    hyphens: none !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    white-space: normal !important;
    line-break: auto !important;
}

/* Fix scrolling issues */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Fix container overflow */
.container {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix section overflow */
.section {
    overflow-x: hidden;
    position: relative;
}

/* Fix hero overflow */
.hero {
    overflow-x: hidden;
    position: relative;
}

/* Fix navigation overflow */
.nav-container {
    overflow: hidden;
    max-width: 100%;
}

/* Fix header scrolling */
.header {
    overflow: hidden;
    position: relative;
}

/* Fix nav menu scrolling */
.nav-menu {
    overflow: hidden;
    white-space: nowrap;
}

/* Fix navigation links */
.nav-menu li {
    overflow: hidden;
}

.nav-menu li a {
    overflow: hidden;
    white-space: nowrap;
}

/* Fix any element that might cause horizontal scroll */
* {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix hero content scrolling issues */
.hero-content {
    overflow: hidden;
    position: relative;
}

.hero-content h1 {
    overflow: hidden;
    white-space: nowrap;
}

/* Fix typewriter effect scrolling */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
}

/* Fix all text elements in hero */
.hero h1,
.hero .tagline,
.hero .typewriter,
.hero p {
    overflow: hidden;
    word-wrap: break-word;
    max-width: 100%;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure no white space below footer */
.footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove any potential white space from all elements */
* {
    margin-bottom: 0 !important;
}

.footer * {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--gradient-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Main content area starts below the fixed header */

/* Home page distinct background */
/* (reverted home page special background) */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Top Header Bar */
.top-header {
    background: #2C3E50;
    color: var(--white);
    padding: 0.3rem 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    font-weight: 500;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.iso-certification {
    font-weight: 600;
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0.3rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-yellow);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    font-weight: 500;
}

.employee-login {
    color: var(--white);
    text-decoration: none;
    background: transparent;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.employee-login:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Main Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 4rem;
}

/* STANDARDIZED HEADER - Logo + ISO Badge Only */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: visible;
    padding-right: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: visible;
    padding: 0.2rem;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: block;
    max-width: 100px;
    background: none;
    padding: 0;
}

/* Show logo text across all pages */
.logo-text {
    display: block !important;
    visibility: visible !important;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-left: 0.8rem;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 235, 59, 0.5);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4));
    overflow: visible;
    text-overflow: unset;
    padding-right: 0.5rem;
    margin-right: 0.5rem;
}

.logo:hover {
    text-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.logo:hover .logo-img {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* ISO Badge */
/* STANDARDIZED ISO BADGE - Consistent across all pages */
.iso-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.iso-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, #FFA500 100%);
    border-radius: 6px 6px 0 0;
}

.iso-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

/* STANDARDIZED ISO TEXT STYLING */
.iso-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    letter-spacing: 0.5px;
    display: block;
}

.iso-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    color: #6c757d;
    line-height: 1;
    letter-spacing: 0.8px;
    margin-top: 0.1rem;
}

.iso-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.iso-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.iso-badge-final {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding: 0.05rem 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    font-size: 0.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.1px;
}

.iso-badge-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.iso-badge-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.iso-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #6c757d;
    line-height: 1;
    letter-spacing: 0.5px;
    margin-top: 0.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--primary-blue);
    background: rgba(102, 126, 234, 0.1);
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.nav-menu li a.active {
    color: white;
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.nav-menu li a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-menu li a.active:hover::before {
    left: 100%;
}

.nav-menu li a.active::after {
    display: none;
}

.nav-menu li a::after {
    display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
    opacity: 1;
    visibility: visible;
}

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

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

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
        cursor: pointer !important;
        padding: 8px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: none !important;
        flex-shrink: 0 !important;
    }
    
    .nav-toggle .bar {
        width: 100% !important;
        height: 3px !important;
        background: var(--primary-blue) !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 3px !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 1rem !important;
        overflow: visible !important;
    }
    
    .navbar {
        overflow: visible !important;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        flex-direction: column !important;
        background-color: white !important;
        width: 100% !important;
        text-align: left !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 20px 0 !important;
        z-index: 1002 !important;
        height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        overflow-x: visible !important;
        display: flex !important;
        white-space: normal !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        overflow: visible !important;
        white-space: normal !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        list-style: none !important;
        padding: 0 !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 1.2rem 2rem !important;
        font-size: 1.1rem !important;
        color: #1e40af !important;
        overflow: visible !important;
        white-space: normal !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
    }
    
    .nav-menu a:hover {
        background: rgba(251, 191, 36, 0.1) !important;
        color: #1e40af !important;
    }
}

.page-header {
    background: linear-gradient(135deg, #FFE259 0%, #FFD700 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #333;
    padding: 4rem 0 3rem;
    text-align: center;
    margin-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    animation: float 8s ease-in-out infinite reverse;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--nav-height));
    max-height: calc(100vh - var(--nav-height));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('Images/hero-background.jpeg') center/cover no-repeat;
}

/* Remove hero background image from all pages except home page */
body:not(.home-page) .hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background,
.hero-overlay,
.hero-pattern {
    display: none !important;
    background-image: none !important;
}

/* Remove any grid background patterns */
.hero * {
    background-image: none !important;
}

.hero::before,
.hero::after {
    display: none !important;
    background-image: none !important;
    content: none !important;
}

.hero-content,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-buttons,
.hero-stats {
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 700;
    color: var(--primary-yellow) !important;
    -webkit-text-fill-color: var(--primary-yellow) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    display: block !important;
    visibility: visible !important;
}

.hero-background {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-pattern {
    display: none;
}

.hero::after {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FFD700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 100%);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-stats {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    z-index: 3;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
    white-space: normal;
    word-break: break-word;
    display: block;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
    width: 100%;
    min-width: fit-content;
}

.stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: gradientShift 3s ease infinite;
    background-size: 400% 400%;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.owner-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.image-overlay span {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-overlay small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.image-placeholder:hover .owner-photo {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.typewriter {
    color: var(--primary-yellow);
    font-weight: 500;
    min-height: 2rem;
    display: block;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.25);
    margin: 0 auto 1.2rem auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #fff8cc;
    color: #222;
    border: 2px solid #FFB000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 176, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 176, 0, 0.6);
    background: linear-gradient(135deg, #FFFF66 0%, #FFC107 100%);
    color: #000;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: var(--white);
    border-top: 1px solid var(--medium-gray);
}

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

.section:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Ensure no white space between content and footer */
.section + .footer {
    margin-top: 0;
}

/* Remove any potential white space */
* {
    margin-bottom: 0;
}

.section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* First section after hero gets special styling */
.section:first-of-type {
    border-top: none;
    background: var(--white);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Vision & Mission Cards */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix vision mission card scrolling */
.vision-mission .card {
    overflow: hidden !important;
}

.vision-mission .card * {
    overflow: hidden !important;
}

/* Remove scrolling from all cards and sections */
.feature-card,
.service-card,
.strength-card,
.stat-item,
.about-content,
.hero-content,
.hero h1,
.hero .tagline,
.hero .typewriter,
.hero p {
    overflow: hidden !important;
}

/* Remove scrolling from statistics cards */
.stats-container .stat-item,
.facility-stats .stat-item,
.customer-stats .stat-item,
.coverage-stats .stat-item {
    overflow: visible !important;
}

/* Remove scrolling from all grid items */
.grid-item,
.grid-card {
    overflow: hidden !important;
}

/* Hide internal scrollbars but allow main page scrolling */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Hide scrollbars from internal elements */
*:not(html):not(body) {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* Hide webkit scrollbars from internal elements only */
*:not(html):not(body)::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Specific fixes for problematic elements */
.stat-item,
.about-stats,
.stats-container .stat-item,
.facility-stats .stat-item,
.customer-stats .stat-item,
.coverage-stats .stat-item,
.service-card,
.feature-card,
.quality-control-card {
    overflow: hidden !important;
    max-height: fit-content !important;
    height: auto !important;
}

.card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-yellow);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    word-break: keep-all;
    hyphens: none;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--bright-yellow);
}

.card h3 {
    color: var(--metallic-gray);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
    word-break: keep-all;
    hyphens: none;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    position: relative;
    border-left: 4px solid var(--primary-yellow);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-yellow);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

/* Expertise Chart */
.expertise-chart {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.chart-item {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.chart-label {
    font-weight: 600;
    color: var(--metallic-gray);
    font-size: 1.1rem;
    min-width: 280px;
    text-align: right;
}

.chart-bar {
    flex: 1;
    height: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    width: 0;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.chart-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .chart-label {
        min-width: auto;
        text-align: center;
    }
    
    .chart-bar {
        width: 100%;
        max-width: 300px;
    }
    
    .expertise-chart {
        padding: 1.5rem;
    }
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    outline: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Ensure gallery images display properly and override placeholder styles */
.gallery-item .gallery-image {
    background: transparent !important;
    padding: 0 !important;
    min-height: auto !important;
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    text-align: unset !important;
    color: unset !important;
    border: none !important;
    box-shadow: none !important;
}

.gallery-item .gallery-image .image-placeholder {
    display: none !important;
}

.gallery-item .gallery-image .placeholder-content {
    display: none !important;
}

.product-name {
    padding: 1.2rem;
    text-align: center;
    background: white;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    border-top: 2px solid var(--primary-yellow);
    letter-spacing: 0.5px;
    word-break: keep-all;
    hyphens: none;
    line-height: 1.4;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    color: white;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 1rem;
    word-break: keep-all;
    hyphens: none;
    max-width: 280px;
}

/* Ensure consistent styling for all gallery items */
.gallery-item[data-category="jigs"],
.gallery-item[data-category="fixtures"] {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item[data-category="jigs"]:hover,
.gallery-item[data-category="fixtures"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-yellow);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--metallic-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 30%, #475569 60%, #1e293b 100%);
    color: var(--white);
    padding: 2rem 0 0;
    text-align: center;
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
    margin-top: 25rem;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    word-break: keep-all;
    hyphens: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1) 0%, rgba(59, 130, 246, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    animation: pulse 3s ease-in-out infinite;
}

/* ISO Certificate Footer Styling */
.iso-certificate {
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 180px;
}

.iso-certificate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.iso-badge-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.iso-text-footer {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
}

.iso-label-footer {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--primary-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.iso-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.footer-section p,
.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    word-break: keep-all;
    hyphens: none;
}

.contact-item {
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.contact-item:hover {
    transform: translateX(5px);
    color: var(--primary-yellow);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

/* Special styling for GST number */
.footer-section p[data-gst] {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    color: white;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    background: red;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Better mobile navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-container {
        gap: 0.5rem;
        overflow: visible;
        padding-right: 0.5rem;
    }
    
    .logo-text {
        font-size: 0.9rem !important;
        max-width: 150px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .logo-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .iso-badge {
        padding: 0.4rem 0.6rem;
        min-width: 75px;
    }
    
    .iso-text {
        font-size: 0.6rem;
    }
    
    .iso-label {
        font-size: 0.5rem;
    }

    .top-header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Mobile menu toggle CSS removed - using modern implementation above */

    /* Hero adjustments */
    .hero {
        height: 75vh;
        padding-top: 80px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .tagline {
        font-size: 1.3rem;
    }

    .typewriter {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Section spacing */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Cards */
    .card {
        padding: 2rem 1.5rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 3rem 0 2rem !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
    }
    
    .page-header p {
        font-size: 1.1rem !important;
    }
    
    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    /* Text improvements */
    p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .founder-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Founder Card */
    .founder-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Feature Grid */
    .features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .feature {
        padding: 1rem !important;
    }
    
    .feature-icon {
        font-size: 1.5rem !important;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem;
        padding-right: 0;
    }

    .timeline-content::before {
        left: -10px !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid var(--primary-yellow);
        border-right: none;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Services & Features - single column on mobile */
    .services-grid,
    .features-grid,
    .strengths-grid,
    .machinery-grid,
    .projects-grid,
    .recognition-grid,
    .values-grid,
    .certifications-grid,
    .industries-grid,
    .testimonials-grid,
    .sister-concerns-grid,
    .service-centers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Achievements - keep desktop-like grid on mobile */
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .achievement-item {
        padding: 1.5rem !important;
    }
    
    .achievement-number {
        font-size: 2.5rem !important;
    }
    
    .achievement-label {
        font-size: 1rem !important;
    }

    /* Better touch targets */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    /* Additional responsive styles */
    .about-content,
    .story-content,
    .vision-content,
    .technology-content,
    .quality-content,
    .partnership-content,
    .network-content,
    .branch-content,
    .facility-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .overview-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        display: block !important;
        line-height: 1.3;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .overview-content * {
        text-align: center !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats-container,
    .facility-stats,
    .customer-stats,
    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .story-item {
        grid-template-columns: 1fr;
    }

    .timeline-container {
        min-width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-line {
        display: none;
    }

    .milestone-item {
        margin-bottom: 2rem;
    }

    .milestone-content {
        margin-top: 0;
    }

    .milestone-content::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
        gap: 0.3rem;
        flex-wrap: nowrap;
    }
    
    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
        max-width: none;
    }
    
    .logo-img {
        height: 40px;
        max-width: 60px;
        flex-shrink: 0;
    }

    .hero {
        height: 70vh;
    }

    /* Force hero text to wrap properly on mobile */
    .hero h1,
    .hero-content h1 {
        font-size: 1.4rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
    }

    .hero .tagline {
        font-size: 0.95rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
    }

    .hero .typewriter,
    .typewriter {
        font-size: 0.9rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: 100% !important;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .stats-container,
    .facility-stats,
    .customer-stats,
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible !important;
    }

    .stat-number {
        font-size: 1.8rem;
        white-space: normal;
        word-break: break-word;
        overflow: visible !important;
    }

    .stat-label {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible !important;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
    }

    /* Form improvements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

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

    /* Improved carousel on small screens */
    .carousel-track img,
    .carousel-track picture img {
        width: 90px;
        margin: 0 10px;
    }

    .carousel-track {
        animation-duration: 30s;
    }
}

/* Extra mobile responsiveness */
@media (max-width: 600px) {
    /* Touch-friendly spacing */
    * {
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    }

    .hero { 
        height: auto;
        min-height: 80vh;
        padding: calc(var(--nav-height) + 20px) 1rem 3rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero h1 { 
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero .tagline { 
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .typewriter { 
        font-size: 1.1rem;
        min-height: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Better button sizing */
    .cta-button {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }

    /* Horizontal timeline → vertical stack on small screens */
    .timeline-container { 
        flex-direction: column;
        align-items: stretch;
        min-width: 100%;
        padding: 1rem 0;
    }
    
    .timeline-line { display: none; }
    
    .milestone-item { 
        width: 100%;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .milestone-content { 
        margin: 0.75rem 0 0;
        min-height: unset;
        padding: 1.5rem;
    }
    
    .milestone-year { margin: 0 auto 0.75rem; }

    /* Customers carousel smaller logos */
    .carousel-track { animation-duration: 35s; }
    .carousel-track img, .carousel-track picture img { 
        width: 80px;
        margin: 0 8px;
    }

    /* Better card spacing */
    .card,
    .service-card,
    .feature-card,
    .strength-card {
        padding: 1.5rem;
    }

    /* Icon sizing */
    .service-icon,
    .feature-icon,
    .strength-icon {
        font-size: 2.5rem;
    }

    /* Map responsive */
    .map-container iframe {
        height: 300px;
    }

    /* Better FAQ layout */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.5rem;
    }

    /* Process steps */
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Skill bars */
    .skill-item {
        margin-bottom: 1.5rem;
    }

    /* General paddings */
    .section { 
        padding: 2.5rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container { 
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    /* Hours grid single column */
    .hours-grid {
        grid-template-columns: 1fr;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }

    /* Better image placeholders on mobile */
    .image-placeholder {
        min-height: 200px;
        padding: 2rem 1rem;
    }

    /* Better mobile cards */
    .service-card,
    .value-card,
    .strength-card,
    .feature-card,
    .cert-item,
    .recognition-item,
    .industry-card,
    .concern-card {
        padding: 1.5rem;
    }

    /* Improved stat items */
    .stat-item h3,
    .achievement-number {
        font-size: 2.5rem;
    }

    /* Better testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    /* Improved machine cards */
    .machinery-grid {
        grid-template-columns: 1fr;
    }

    /* Better project cards */
    .project-card,
    .machine-card {
        margin-bottom: 1rem;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .machine-info {
        padding: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .machine-info h3 {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .machine-info p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Improved story items */
    .story-item {
        padding: 1.5rem;
    }

    /* Team members */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Better feature items in sections */
    .facility-features {
        grid-template-columns: 1fr;
    }

    /* Smoother animations on mobile */
    .fade-in {
        transition: all 0.4s ease;
    }
}

/* Global horizontal scroll prevention */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent any element from causing horizontal scroll */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Ensure tables don't overflow */
table {
    width: 100%;
    table-layout: fixed;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

/* Ensure all grids and flex containers don't overflow */
.grid,
.flex,
[class*="grid"],
[class*="flex"] {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent text from causing overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Ensure no element exceeds viewport width */
body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Additional Styles for Home Page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--metallic-gray);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    overflow: visible;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
    white-space: normal;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow: visible;
}

.stat-item p {
    color: var(--metallic-gray);
    font-weight: 600;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    word-break: keep-all;
    hyphens: none;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
    word-break: keep-all;
    hyphens: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

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

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

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    word-break: keep-all !important;
    hyphens: none !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    word-break: keep-all;
    hyphens: none;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: visible;
    min-height: 300px;
    word-break: keep-all;
    hyphens: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-yellow);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.3));
}

.feature-item h3 {
    color: var(--metallic-gray);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
    flex-grow: 1;
    word-break: keep-all !important;
    hyphens: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, #FFE259 0%, #FFA751 100%);
    color: var(--black);
    margin-bottom: 4rem !important;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 8rem;
    word-break: keep-all;
    hyphens: none;
}

.cta-content h2 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
    word-break: keep-all;
    hyphens: none;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #3b3b3b;
    word-break: keep-all;
    hyphens: none;
}

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

.cta-button.secondary {
    background: #fff8cc;
    color: #222;
    border: 2px solid #FFB000;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #FFFF66 0%, #FFC107 100%);
    color: #000;
}

/* MODERN OUR STORY SECTION - Professional Corporate Design */
.story-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 0 2rem;
}

.story-text {
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-yellow);
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.story-text p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
    word-break: keep-all;
    hyphens: none;
    margin-bottom: 1.5rem;
}

.story-text p:first-child {
    text-indent: 0;
    font-weight: 500;
    color: #1f2937;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f59e0b 100%);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    color: #92400e;
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.15);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 400px;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 28px;
}

.image-placeholder:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 80px rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.4);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
    position: relative;
}

.placeholder-content svg {
    width: 100px;
    height: 100px;
    color: #92400e;
    filter: drop-shadow(0 6px 12px rgba(146, 64, 14, 0.3));
    transition: all 0.4s ease;
}

.image-placeholder:hover .placeholder-content svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(146, 64, 14, 0.4));
}

.placeholder-content span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #92400e;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(146, 64, 14, 0.1);
}

/* Smooth Entrance Animations */
.story-content {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
}

.story-text {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.story-image {
    opacity: 0;
    transform: translateX(40px);
    animation: slideInRight 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 1200px) {
    .story-content {
        max-width: 1000px;
        padding: 0 2rem;
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 4rem;
        padding: 0 2rem;
    }
    
    .story-text {
        padding: 2.5rem 2rem;
        order: 1;
    }
    
    .story-image {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .image-placeholder {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .story-content {
        gap: 2.5rem;
        margin-top: 3rem;
        padding: 0 1.5rem;
    }
    
    .story-text {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .story-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .image-placeholder {
        padding: 3rem 2rem;
        min-height: 350px;
        border-radius: 24px;
        max-width: 100%;
    }
    
    .placeholder-content svg {
        width: 80px;
        height: 80px;
    }
    
    .placeholder-content span {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .story-content {
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .story-text {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-indent: 1rem;
    }
    
    .image-placeholder {
        padding: 2.5rem 1.5rem;
        min-height: 300px;
        border-radius: 20px;
    }
    
    .placeholder-content svg {
        width: 70px;
        height: 70px;
    }
    
    .placeholder-content span {
        font-size: 1.4rem;
    }
}

.placeholder-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

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

.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.photo-placeholder h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.photo-placeholder p {
    font-size: 0.9rem;
    margin: 0;
}

.owner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--primary-yellow);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.owner-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.member-info h3 {
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

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

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

.value-card h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Milestones Page Styles */
.horizontal-timeline {
    margin-top: 3rem;
    overflow-x: hidden;
    padding: 2rem 0;
    width: 100%;
    max-width: 100vw;
}

.timeline-container {
    position: relative;
    display: flex;
    min-width: 100%;
    max-width: 100vw;
    align-items: center;
    padding: 2rem 0;
    overflow-x: hidden;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    z-index: 1;
}

.milestone-item {
    position: relative;
    flex: 1 1 0;
    text-align: center;
    z-index: 2;
    padding: 0 1rem;
}

.milestone-year {
    background: var(--primary-yellow);
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.milestone-item:hover .milestone-year {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.milestone-content {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 1rem;
    min-height: 240px;
}

.milestone-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}

.milestone-item:hover .milestone-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.milestone-content h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.milestone-icon {
    font-size: 2rem;
    margin-top: 1rem;
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: var(--metallic-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image .image-placeholder {
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.recognition-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
}

.recognition-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.recognition-item h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.recognition-year {
    background: var(--gradient-primary);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

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

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--metallic-gray);
    
}

.vision-list {
    list-style: none;
    padding: 0;
}

.vision-list li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem;
}

.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Additional Page Styles */
.branch-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.2rem;
}

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

.concern-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    text-align: center;
}

.concern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

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

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

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

.service-center {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.service-center:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.center-header h3 {
    color: var(--metallic-gray);
    margin: 0;
}

.center-badge {
    background: var(--gradient-primary);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.center-details p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

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

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, #ffffff 0%, #fff8cc 100%);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.contact-card h3 {
    color: var(--metallic-gray);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--primary-yellow);
}

.contact-card p {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-card:hover p {
    color: #333;
}

.contact-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card a:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
    transform: scale(1.05);
}

/* Prevent long text (e.g., emails/URLs) from overflowing cards */
.contact-card p,
.contact-card a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Force single-line with ellipsis when explicitly requested */
.contact-card .single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    text-align: center;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Responsive design for contact cards */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        font-size: 3rem;
    }
}

/* Mobile: allow email to wrap on very small screens */
@media (max-width: 400px) {
    .contact-card .single-line {
        white-space: normal;
        word-break: break-all;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
        max-width: none;
        overflow: visible;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 50px;
    }
}

/* Strength Page Styles */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strength-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

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

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

.strength-features {
    list-style: none;
    padding: 0;
}

.strength-features li {
    padding: 0.3rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.strength-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

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

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

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tech-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.tech-details h4 {
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
}

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

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    background: var(--gradient-primary);
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

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

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

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.cert-item h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

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

/* Facility Page Styles */
.facility-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-content {
    text-align: center !important;
    width: 100%;
    max-width: 100%;
}

.overview-content * {
    text-align: center !important;
}

.overview-content h3 {
    text-align: center !important;
    margin-bottom: 0.5rem;
}

.overview-content p {
    text-align: center !important;
    line-height: 1.4;
    margin: 0 auto !important;
    max-width: 100% !important;
    display: block !important;
    font-size: 1rem;
}

.facility-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.facility-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.facility-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.facility-overlay p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

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

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

.machine-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.machine-image {
    height: 200px;
    width: 200px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: #f8f9fa;
}

.machine-info {
    padding: 2rem;
    text-align: center;
    width: 100%;
    border-top: 2px solid var(--primary-yellow);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.machine-info h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

.machine-info p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.machine-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.quality-features {
    margin-top: 2rem;
}

.quality-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quality-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.quality-details h4 {
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
}

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

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

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

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

/* Gallery Page Styles */
.gallery-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.filter-row.first-row {
    gap: 1.5rem;
}

.filter-row.second-row {
    gap: 2rem;
}

.filter-btn {
    background: var(--white);
    color: var(--metallic-gray);
    border: 2px solid var(--primary-yellow);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    min-width: 100px;
    text-align: center;
}

.filter-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
    font-weight: 700;
}

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

.process-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.process-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}

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

.process-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
}

.process-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.process-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.process-info {
    padding: 2rem;
}

.process-info h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

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

/* Customers Page Styles */
.customer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

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

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

/* Customers Carousel */
.customers-section {
    background: linear-gradient(135deg, #ffcc00, #fff176);
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.customers-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img,
.carousel-track picture img {
    width: 160px;
    height: auto;
    margin: 0 30px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
}

.carousel-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .carousel-track img {
        width: 120px;
        margin: 0 15px;
    }
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.testimonial-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
}

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

.success-stories {
    margin-top: 3rem;
}

.story-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.story-content h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.partnership-features {
    margin-top: 2rem;
}

.partnership-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    min-height: 150px;
}

.partnership-features .feature-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Subtle decorative watermark to reduce empty feel */
.partnership-features .feature-item::after {
    content: '';
    position: absolute;
    right: -24px;
    top: -24px;
    width: 180px;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='0.8' stroke-linecap='round' stroke-linejoin='round' opacity='0.2'%3E%3Cpath d='M12 1v3M12 20v3M4.22 4.22l2.12 2.12M17.66 17.66l2.12 2.12M1 12h3M20 12h3M4.22 19.78l2.12-2.12M17.66 6.34l2.12-2.12'/%3E%3Ccircle cx='12' cy='12' r='5'/ %3E%3C/svg%3E") no-repeat center/contain;
    opacity: 0.18;
    pointer-events: none;
}

/* Accent bar on top for a premium card look */
.partnership-features .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.65;
}

.partnership-features .feature-details h4 {
    color: var(--metallic-gray);
    margin-bottom: 0.5rem;
}

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

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-section h2 {
    color: var(--metallic-gray);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--metallic-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.map-section h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

.map-container {
    margin-bottom: 2rem;
}

.location-details h4 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

.location-details p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.business-hours {
    margin-top: 3rem;
}

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

.hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.hours-card h3 {
    color: var(--metallic-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

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

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.faq-item h3 {
    color: var(--metallic-gray);
    margin-bottom: 1rem;
}

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

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
}

.faq-question:hover h3 {
    color: #333;
}

.faq-question h3 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-yellow);
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.faq-question:hover .faq-icon {
    color: #333;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: #333;
}

.faq-accordion-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
}

.faq-accordion-item.active .faq-question h3 {
    color: #333;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
    hyphens: none;
}

/* Vision Image Styles */
.vision-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    min-height: 300px;
}

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

.vision-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
    text-align: center;
}

.vision-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.vision-overlay p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Vertical Timeline Styles */
.vertical-timeline {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.timeline-line-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FFD700, #FFA500);
    transform: translateX(-50%);
    border-radius: 2px;
}

.milestone-item-vertical {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.milestone-item-vertical.left {
    flex-direction: row;
}

.milestone-item-vertical.right {
    flex-direction: row-reverse;
}

.milestone-year-vertical {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 4px solid white;
}

.milestone-content-vertical {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-content-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.milestone-content-vertical h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.milestone-content-vertical p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
    hyphens: none;
}

/* Arrow indicators - removed */
.milestone-item-vertical.left .milestone-content-vertical::before {
    display: none !important;
}

.milestone-item-vertical.right .milestone-content-vertical::before {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .vertical-timeline {
        padding: 0 0.5rem !important;
        max-width: 100% !important;
        overflow-x: visible !important;
    }
    
    .timeline-line-vertical {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 4px !important;
    }
    
    .milestone-item-vertical {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 3rem !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .milestone-item-vertical.left {
        flex-direction: row !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .milestone-item-vertical.right {
        flex-direction: row !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .milestone-year-vertical {
        position: relative !important;
        left: auto !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 0.75rem !important;
        flex-shrink: 0 !important;
        border-width: 2px !important;
    }
    
    .milestone-content-vertical {
        margin: 0 0.8rem !important;
        max-width: calc(100% - 50px) !important;
        min-width: 0 !important;
        padding: 1rem !important;
        flex: 1 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
    }
    
    .milestone-content-vertical h3 {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    
    .milestone-content-vertical p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    
    .milestone-item-vertical.left .milestone-content-vertical::before {
        display: block !important;
        right: -10px !important;
        width: 0 !important;
        height: 0 !important;
        border-left: 10px solid white !important;
        border-top: 10px solid transparent !important;
        border-bottom: 10px solid transparent !important;
    }
    
    .milestone-item-vertical.right .milestone-content-vertical::before {
        display: block !important;
        left: -10px !important;
        width: 0 !important;
        height: 0 !important;
        border-right: 10px solid white !important;
        border-top: 10px solid transparent !important;
        border-bottom: 10px solid transparent !important;
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced container animations */
.container {
    transition: all 0.3s ease;
}

.container:hover {
    transform: translateY(-2px);
}

/* Card hover animations with colorful effects */
.gallery-item,
.service-card,
.strength-card,
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gallery-item::before,
.service-card::before,
.strength-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-rainbow);
    opacity: 0.1;
    transition: left 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before,
.service-card:hover::before,
.strength-card:hover::before,
.feature-card:hover::before {
    left: 0;
}

.gallery-item:hover,
.service-card:hover,
.strength-card:hover,
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-rainbow) border-box;
}

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

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

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* SOPHISTICATED OUR STRENGTH SECTION - Professional Corporate Design */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.strength-intro {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.strength-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, var(--primary-yellow) 100%);
    border-radius: 24px 24px 0 0;
}

.strength-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.03) 50%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.strength-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.strength-card:hover::after {
    opacity: 1;
    transform: rotate(180deg);
}

.strength-icon {
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.strength-card:hover .strength-icon {
    transform: scale(1.1);
}

.strength-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.strength-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* About Grid for About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFA500 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.feature span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive Design for Strength Section */
@media (max-width: 1200px) {
    .strength-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .strength-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 4rem;
        padding: 0 1.5rem;
    }
    
    .strength-card {
        padding: 3rem 2.5rem;
        border-radius: 20px;
    }
    
    .strength-icon {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .strength-card h3 {
        font-size: 1.4rem;
    }
    
    .strength-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .strength-grid {
        padding: 0 1rem;
    }
    
    .strength-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .strength-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .strength-card h3 {
        font-size: 1.3rem;
    }
    
    .strength-card p {
        font-size: 0.95rem;
    }
}

/* SOPHISTICATED FOUNDER IMAGE CARD */
.founder-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    max-width: 380px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.founder-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-info {
    padding: 2.5rem 2rem;
    text-align: center;
    background: transparent;
    position: relative;
}

.founder-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, var(--primary-yellow) 100%);
    border-radius: 2px;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.founder-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.9;
}

/* INDUSTRIES WE SERVE SECTION - Professional Design */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.industry-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, var(--primary-yellow) 100%);
    border-radius: 24px 24px 0 0;
}

.industry-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.industry-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.industry-icon svg {
    width: 50px;
    height: 50px;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 18px 40px rgba(102, 126, 234, 0.35);
}

.industry-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.industry-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* WHY CHOOSE US SECTION */
.section-alt {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.choose-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.choose-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.choose-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Industries Section */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 4rem;
        padding: 0 1.5rem;
    }
    
    .industry-card {
        padding: 3rem 2.5rem;
        border-radius: 20px;
    }
    
    .industry-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .industry-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .industry-card h3 {
        font-size: 1.6rem;
    }
    
    .industry-card p {
        font-size: 1rem;
    }
    
    .choose-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        padding: 0 1rem;
    }
    
    .industry-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .industry-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .industry-card h3 {
        font-size: 1.4rem;
    }
    
    .industry-card p {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

/* Skills Container */
.skills-container {
    max-width: 600px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.skill-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFA500 100%);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
    width: 0%;
}

/* ===========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Added to existing CSS without removing any code
   =========================================== */

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Global mobile adjustments */
    * {
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    }
    
    body {
        font-size: var(--mobile-font-size);
        line-height: var(--mobile-line-height);
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 var(--mobile-padding);
        max-width: 100%;
    }
    
    /* Navigation Mobile Fixes */
    .navbar {
        padding: 0.5rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 var(--mobile-padding);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        text-decoration: none;
        flex-shrink: 0;
        max-width: 70%;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary-blue);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
        flex-shrink: 1;
    }
    
    /* Mobile Menu Toggle CSS removed - using modern implementation above */
    
    /* Hero Section Mobile */
    .hero {
        padding: calc(var(--nav-height) + 2rem) var(--mobile-padding) 3rem;
        min-height: 70vh;
        text-align: center;
        overflow-x: hidden;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .typewriter {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .stat-item {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.5rem;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--metallic-gray);
        font-weight: 500;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Section Mobile Adjustments */
    .section {
        padding: 3rem 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 1rem;
    }
    
    /* Fix overlapping elements - Force single column layout */
    .vision-mission,
    .strength-grid,
    .industries-grid,
    .contact-info-grid,
    .gallery-grid,
    .process-gallery,
    .products-grid,
    .hours-grid,
    .footer-content {
        position: relative !important;
        z-index: 1;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
        display: block !important;
        float: none !important;
        clear: both !important;
    }
    
    /* Fix any floating/overlapping stats - Force proper stacking */
    .hero-stats,
    .stat-item,
    .vision-item,
    .strength-card,
    .industry-card,
    .contact-card,
    .gallery-item,
    .process-item,
    .product-card,
    .hours-card {
        position: relative !important;
        z-index: 1;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1rem !important;
        float: none !important;
        clear: both !important;
        display: block !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    /* Fix any absolute positioned elements */
    .vision-item,
    .strength-card,
    .industry-card,
    .contact-card,
    .gallery-item,
    .process-item,
    .product-card,
    .hours-card {
        position: relative !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    /* Grid Layouts - Mobile Single Column */
    .vision-content,
    .strength-grid,
    .industries-grid,
    .contact-info-grid,
    .gallery-grid,
    .process-gallery,
    .vision-mission,
    .products-grid,
    .hours-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
        /* Cards Mobile Styling */
    .vision-item,
    .strength-card,
    .industry-card,
    .contact-card,
    .gallery-item,
    .process-item,
    .product-card,
    .hours-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        text-align: center;
    }

    .vision-item h3,
    .strength-card h3,
    .industry-card h3,
    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .vision-item p,
    .strength-card p,
    .industry-card p,
    .contact-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Icons Mobile */
    .vision-icon,
    .strength-icon,
    .industry-icon,
    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Forms Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 2px solid var(--light-gray);
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-yellow);
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    /* Gallery Mobile */
    .gallery-filters {
        margin-bottom: 2rem;
    }
    
    .filter-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
        white-space: nowrap;
    }
    
    .gallery-item {
        margin-bottom: 2rem;
    }
    
    .gallery-image {
        height: 200px;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-name {
        font-size: 1rem;
        font-weight: 600;
        margin-top: 1rem;
        color: var(--primary-blue);
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
    
    /* Business Hours Mobile */
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hours-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .hours-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .hours-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .hours-item:last-child {
        border-bottom: none;
    }
    
    /* FAQ Mobile - proper accordion behavior */
    .faq-accordion-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
        overflow: visible !important;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-icon {
        overflow: visible !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .faq-answer {
        padding: 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-accordion-item.active .faq-answer {
        max-height: 1000px !important;
        padding: 1.5rem 1rem !important;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    /* CTA Mobile */
    .cta-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Contact Content Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section {
        padding: 1.5rem;
    }
    
    .map-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .map-container {
        margin-bottom: 1rem;
    }
    
    .location-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .location-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    :root {
        --mobile-padding: 0.75rem;
        --mobile-font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .tagline {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .typewriter {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-title {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .vision-item,
    .strength-card,
    .industry-card,
    .contact-card {
        padding: 1.5rem 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    /* Fix any remaining text overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: calc(var(--nav-height) + 1rem) var(--mobile-padding) 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* OLD MOBILE MENU CSS REMOVED - USING NEW IMPLEMENTATION ABOVE */
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    /* Ensure proper mobile layout */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 !important;
    }
    
    /* Fix any remaining overlapping issues */
    * {
        box-sizing: border-box !important;
    }
    
    /* Force single column for all grids */
    .grid-2,
    .grid-3,
    .grid-4 {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .grid-2 > *,
    .grid-3 > *,
    .grid-4 > * {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
        display: block !important;
    }
    
    /* Touch-friendly buttons */
    button,
    .btn,
    .filter-btn,
    .submit-btn,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    input,
    select,
    textarea {
        min-height: 44px;
    }
    
    /* Force mobile navigation to work */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .logo {
        max-width: 70% !important;
        flex-shrink: 1 !important;
    }
    
    .logo-text {
        font-size: 0.9rem !important;
        max-width: 200px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
}

/* ===========================================
   ULTIMATE MOBILE FIXES - OVERRIDE ALL STYLES
   =========================================== */

/* CRITICAL MOBILE OVERRIDES - FORCE ALL MOBILE STYLES */
@media (max-width: 768px) {
    /* RESET ALL NAVIGATION STYLES */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: white !important;
        padding: 0.5rem 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    /* LOGO - FORCE VISIBLE AND READABLE */
    .logo-container {
        flex: 1 !important;
        max-width: 70% !important;
        overflow: visible !important;
    }
    
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        text-decoration: none !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .logo-img {
        width: 30px !important;
        height: 30px !important;
        flex-shrink: 0 !important;
        object-fit: contain !important;
    }
    
    .logo-text {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #1e40af !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        max-width: none !important;
        line-height: 1.2 !important;
        display: block !important;
    }
    
    /* HAMBURGER MENU - FORCE VISIBLE */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
        background: #1e40af !important;
        border: none !important;
        border-radius: 4px !important;
        padding: 8px !important;
        width: 44px !important;
        height: 44px !important;
        cursor: pointer !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
    }
    
    .mobile-menu-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: white !important;
        border-radius: 1px !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* OLD MOBILE MENU CSS REMOVED - USING NEW IMPLEMENTATION ABOVE */
    
    /* BODY SCROLL PREVENTION */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
}

/* ===========================================
   MOBILE NAVIGATION FIXES
   =========================================== */

/* Mobile Navigation Base */
@media (max-width: 768px) {
    /* Logo fixes */
    .logo-text {
        font-size: 0.9rem !important;
        max-width: 120px !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        flex-shrink: 1 !important;
        font-weight: 700 !important;
    }
    
    .logo {
        max-width: 60% !important;
        flex-shrink: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.3rem !important;
        min-width: 0 !important;
    }
    
    .logo-img {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile Menu Toggle CSS removed - using modern implementation above */
    
    /* Body scroll prevention */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    /* Mobile menu toggle CSS removed - using modern implementation above */
}

/* Force mobile menu visibility on mobile devices */
@media (max-width: 768px) {
    /* Mobile menu toggle CSS removed - using modern implementation above */
}

/* Desktop Navigation Styles */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        transform: none !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        list-style: none !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
    }
    
    .nav-menu li {
        margin: 0 0.5rem !important;
        width: auto !important;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
        display: inline-block !important;
        width: auto !important;
    }
}

/* Mobile Content Fixes */
@media (max-width: 768px) {
    /* Fix mission card text overflow */
    .card p,
    .vision-mission .card p,
    .about-text p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        font-size: 0.85rem !important;
        padding: 0.5rem !important;
        margin: 0 !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    .card {
        padding: 1rem !important;
        margin: 0 0 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    
    /* Fix stats cards - make text horizontal */
    .stats-container,
    .facility-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem !important;
        background: white !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
        color: var(--primary-blue) !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .stat-item p {
        font-size: 0.9rem !important;
        color: var(--metallic-gray) !important;
        margin: 0 !important;
        text-align: right !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
    }
    
    /* Fix about section layout */
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .about-text {
        order: 1 !important;
    }
    
    .stats-container {
        order: 2 !important;
    }
    
    /* Ensure all text is properly wrapped */
    .section-title,
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .tagline,
    .typewriter {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        white-space: normal !important;
    }
    
    /* Fix card content overflow */
    .card {
        padding: 1.5rem !important;
        margin: 0 0 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* Extra small devices - further logo text fixes */
@media (max-width: 480px) {
    .logo-text {
        font-size: 0.75rem !important;
        max-width: 100px !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-weight: 700 !important;
    }
    
    .logo {
        max-width: 50% !important;
        gap: 0.2rem !important;
    }
    
    .logo-img {
        width: 15px !important;
        height: 15px !important;
    }
    
    .mobile-menu-toggle {
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 6px !important;
    }
    
    .mobile-menu-toggle span {
        width: 16px !important;
        height: 2px !important;
    }
    
    .stat-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .stat-item p {
        text-align: center !important;
        font-size: 0.8rem !important;
    }
}

/* ===========================================
   MOBILE RESPONSIVE DESIGN
   =========================================== */

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Reset navigation for mobile */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        padding: 0.5rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Logo adjustments */
    .logo-container {
        flex: 1;
        max-width: 70%;
        overflow: visible;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        max-width: 100%;
        overflow: visible;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        object-fit: contain;
    }
    
    .logo-text {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #1e40af !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: none !important;
        line-height: 1.2 !important;
        display: block !important;
    }
    
    /* Mobile menu toggle CSS removed - using modern implementation above */
    
    /* Hero section mobile adjustments */
    .hero {
        padding-top: 80px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .typewriter {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Section adjustments */
    .section {
        padding: 3rem 0;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Cards mobile adjustments */
    .card, .service-card, .feature-item, .strength-card, .industry-card, .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
        text-align: center;
    }
    
    .feature-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .feature-icon {
        margin: 0 auto 1rem auto !important;
        text-align: center !important;
        font-size: 3rem !important;
    }
    
    .card h3, .service-card h3, .feature-item h3, .strength-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .card p, .service-card p, .feature-item p, .strength-card p, .vision-mission .card p, .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    /* Grid layouts to single column */
    .vision-mission, .services-grid, .features-grid, .strength-grid, .industries-grid, .contact-info-grid, .gallery-grid, .process-gallery, .products-grid, .hours-grid, .footer-content {
        display: block;
        grid-template-columns: none;
    }
    
    .vision-mission > *, .services-grid > *, .features-grid > *, .strength-grid > *, .industries-grid > *, .contact-info-grid > *, .gallery-grid > *, .process-gallery > *, .products-grid > *, .hours-grid > *, .footer-content > * {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
        display: block;
        float: none;
        clear: both;
    }
    
    /* Stats container mobile */
    .stats-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: visible !important;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
        color: #1e40af;
        margin: 0;
        flex-shrink: 0;
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .stat-item p {
        font-size: 0.9rem;
        color: #64748b;
        margin: 0;
        text-align: right;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible !important;
    }
    
    /* Forms mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    /* Gallery mobile - same two-row routing as desktop */
    .gallery-filters {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 0 !important;
    }
    
    .filter-row.first-row {
        gap: 0.5rem !important;
    }
    
    .filter-row.second-row {
        gap: 0.5rem !important;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.72rem !important;
        border-radius: 20px;
        white-space: nowrap;
        flex: 0 0 auto !important;
        min-width: auto !important;
        border: 2px solid var(--primary-yellow) !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .filter-btn:hover,
    .filter-btn:active,
    .filter-btn:focus {
        background: var(--primary-yellow) !important;
        color: var(--black) !important;
    }
    
    .filter-btn.active {
        background: var(--primary-yellow) !important;
        color: var(--black) !important;
        border-color: var(--primary-yellow) !important;
    }
    
    /* Ensure gallery items are visible/hidden by filter */
    .gallery-item {
        margin-bottom: 2rem;
        display: block !important;
    }
    
    .gallery-item[style*="display: none"] {
        display: none !important;
    }
    
    .gallery-item[style*="display: block"] {
        display: block !important;
    }
    
    .gallery-image {
        height: 200px;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Footer mobile */
    .footer-content {
        display: block;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
    
    /* CTA buttons mobile */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* Back to top button mobile */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem !important;
        max-width: none !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .logo {
        max-width: 100% !important;
        gap: 0.3rem;
    }
    
    .logo-img {
        width: 25px;
        height: 25px;
    }
    
    /* Mobile menu toggle CSS removed - using modern implementation above */
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .tagline {
        font-size: 1rem;
    }
    
    .hero-content .typewriter {
        font-size: 0.9rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-item p {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input, .form-group select, .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
}

/* Desktop navigation - hide mobile menu */
@media (min-width: 769px) {
    /* Mobile menu toggle CSS removed - using modern implementation above */
    
    /* Hide mobile facility overview on desktop */
    .facility-overview-mobile {
        display: none !important;
    }
}

/* Show mobile facility overview on mobile only */
@media (max-width: 768px) {
    .facility-overview-mobile {
        display: block !important;
    }
    
    /* Hide desktop facility overview on mobile */
    .facility-overview {
        display: none !important;
    }
    
    /* Mobile facility image styling - make it square */
    .facility-image-mobile {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    /* Center facility overview mobile */
    .facility-overview-mobile {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Center facility header and content */
    .facility-header-mobile {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .facility-header-mobile h3 {
        text-align: center !important;
        width: 100% !important;
        margin: 0.5rem auto !important;
        display: block !important;
        padding: 0 !important;
    }
    
    .facility-content-mobile {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 1rem auto !important;
        padding: 0 1rem !important;
        display: block !important;
    }
    
    .facility-content-mobile p {
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .facility-image-mobile .facility-image-container {
        aspect-ratio: 1 / 1;
        width: 100%;
        max-width: 100%;
    }
    
    .facility-image-mobile .facility-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Force grid to single column on mobile */
    .machinery-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        justify-items: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Mobile machine card styling - center everything properly */
    .machine-card {
        padding: 1rem !important;
        overflow-x: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .machine-card .machine-image {
        width: 180px !important;
        height: 180px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center machine images */
    .machine-image {
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .machine-image img {
        margin: 0 auto !important;
        display: block !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Center machine info */
    .machine-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: visible !important;
        text-align: center !important;
        margin: 1rem auto 0 auto !important;
        border-top: 2px solid var(--primary-yellow) !important;
        padding-top: 1rem !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .machine-info h3 {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        white-space: normal !important;
        margin-bottom: 0.5rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
        display: block !important;
    }
    
    .machine-info p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.3rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        white-space: normal !important;
        text-align: center !important;
        display: block !important;
        padding: 0 1rem !important;
    }
}
