/* CSS Variables */
:root {
    /* Premium color theme */
    --deep-blue: #15629c;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --light-gold: rgba(212, 175, 55, 0.15);
    --premium-gold: #B8941F;
    --light-premium: rgba(184, 148, 31, 0.1);
    --text-gray: #343A40;
    --light-gray: #6C757D;
    --light-grey: #e9ecef;
    --header-bg: rgba(255, 255, 255, 0.98);
    --footer-text: rgba(255, 255, 255, 0.9);
    
    /* Premium background additions */
    --body-bg: #f5f7fa;
    --body-bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4eaf1 100%);
    
    /* Section colors - more visible differentiation */
    --section-light: #ffffff;
    --section-cream: #fffef5;
    --section-blue: #f0f7ff;
    --section-gold: #fffbf0;
    --section-gray: #f8f9fa;
    
    /* Performance-optimized values */
    --optimized-blur: 8px;
    --optimized-shadow: 0 4px 15px rgba(10, 25, 48, 0.1);
    --optimized-bg: rgba(10, 25, 48, 0.85);
    --premium-gradient: linear-gradient(135deg, rgba(10, 25, 48, 0.95), rgba(21, 98, 156, 0.9));
    --glass-bg: rgba(255, 255, 255, 0.85);
    --premium-shadow: 0 8px 30px rgba(10, 25, 48, 0.12);
    --hover-shadow: 0 12px 40px rgba(10, 25, 48, 0.18);
    --border-radius-lg: 20px;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Simplified transitions */
    --transition: all 0.3s ease;
    --lift-transition: transform 0.3s ease;
}

/* Base Styles */
body {
    background-color: var(--body-bg);
    background-image: var(--body-bg-gradient);
    background-attachment: fixed;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

section[id] {
    scroll-margin-top: 100px;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu ul li a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Section Styles */
.section-padding {
    padding: 6rem 0;
    position: relative;
    margin-bottom: 0;
    box-shadow: none;
    border-top: none;
}

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

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.section-title h2:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

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

.section-title p.subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 1rem;
    text-align: center;
    display: block;
}

.section-title p.center-text {
    font-size: 1.5rem;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-family: 'Merriweather', serif;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.section-title p.center-text:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.section-title p.center-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Section Background Colors */
#about {
    background-color: var(--section-cream);
}

#products {
    background-color: var(--section-blue);
    background-image: url('images/product-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 48, 0.8);
    z-index: 0;
}

#products .container,
#products .product-showcase,
#products .product-cards,
#products .product-card {
    position: relative;
    z-index: 1;
}

/* Light text for dark background */
#products .section-title h2,
#products .section-title p,
#products .product-intro,
#products .product-card h3,
#products .product-card p,
#products .product-card ul li {
    color: #ffffff;
}

#products .section-title h2::after {
    background: var(--gold);
}

#products .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

/* Product cards with better contrast */
#products .product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: var(--lift-transition), box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transform-origin: center bottom;
}

#products .product-card:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: var(--hover-shadow);
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

#products .product-card-image {
    flex: 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

#products .product-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#products .product-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

#products .product-card-content h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

#products .product-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

#products .product-card-content p {
    color: #444;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

#products .product-card-content p:hover {
    transform: scale(1.02) translateY(-2px);
    color: #333;
}

#products .product-card-content ul {
    list-style: none;
    margin-top: 1rem;
}

#products .product-card-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

#products .product-card-content ul li:hover {
    transform: scale(1.02) translateY(-2px);
    color: #333;
}

#products .product-card-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Product CTA Button */
#products .product-cta {
    text-align: center;
    margin-top: 3rem;
}

#products .product-cta .btn-primary {
    background: var(--gold);
    color: var(--deep-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

#products .product-cta .btn-primary:hover {
    background: rgba(244, 228, 193, 1);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

#indopod-brochure {
    background-color: var(--section-gold);
}

#industries {
    background-color: var(--section-light);
}

#advantages {
    background-color: var(--section-cream);
}

#projects {
    background-color: var(--section-blue);
}

#clients {
    background-color: var(--section-light);
}

#contact {
    background-color: var(--section-gray);
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.global-presence h3 {
    font-family: 'Merriweather', serif;
    color: var(--deep-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.global-presence h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.global-presence h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.global-presence h3:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.about-content p:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--deep-blue);
}

.about-content strong {
    color: var(--gold);
    font-weight: 600;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    flex: 1 1 200px;
    margin: 1rem;
    background-color: var(--section-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(10, 25, 48, 0.08);
    transition: var(--lift-transition), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-origin: center bottom;
}

.stat:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 25, 48, 0.12);
    background-color: rgba(255, 255, 255, 0.8);
}

.stat i {
    font-size: 2.8rem;
    color: var(--premium-gold);
    margin-bottom: 1.5rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.stat:hover i {
    transform: scale(1.1) translateY(-3px);
    color: var(--deep-blue);
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.stat h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.stat p {
    font-size: 1rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.stat p:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--text-gray);
}

/* Clients Section */
.clients-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

/* Products Section */
.product-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.product-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.product-intro:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--deep-blue);
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-card {
    display: flex;
    background: var(--section-light);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: var(--lift-transition), box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transform-origin: center bottom;
}

.product-card:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: var(--hover-shadow);
    background-color: rgba(255, 255, 255, 0.9);
}

.product-card-image {
    flex: 1;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.product-card-content h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.product-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.product-card-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.product-card-content p:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--text-gray);
}

.product-card-content ul {
    list-style: none;
    margin-top: 1rem;
}

.product-card-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.product-card-content ul li:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--deep-blue);
}

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

/* Alternate card layout */
.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Product CTA Button */
.product-cta {
    text-align: center;
    margin-top: 3rem;
}

/* IndoPod Brochure Section */
.indopod-brochure {
    background: linear-gradient(135deg, var(--light-premium), #FFFFFF);
    position: relative;
}

.brochure-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brochure Image Slider */
.brochure-image-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(10, 25, 48, 0.15);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.brochure-image-slider:hover {
    transform: scale(1.02) translateY(-3px);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--deep-blue);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease, var(--lift-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform-origin: center bottom;
}

.slider-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.1) translateY(-3px);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.2s ease, var(--lift-transition);
    transform-origin: center bottom;
}

.indicator:hover {
    transform: scale(1.2) translateY(-2px);
}

.indicator.active {
    background: var(--gold);
}

.brochure-text {
    flex: 1;
    padding: 1rem;
}

.brochure-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.brochure-text h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.brochure-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.brochure-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.brochure-text p:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--text-gray);
}

.brochure-text ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.brochure-text ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.1rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.brochure-text ul li:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--deep-blue);
}

.brochure-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Industries Section */
.industries-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.industry-row-first {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

.industry-row-centered {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.industry-row-centered:nth-of-type(1) {
    grid-template-columns: repeat(3, 1fr);
}

.industry-row-centered:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
}

.industry-tile {
    background-color: var(--light-premium);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--premium-shadow);
    transition: var(--lift-transition), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    transform-origin: center bottom;
}

.industry-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 48, 0.5), rgba(10, 25, 48, 0.8));
    z-index: 1;
}

.industry-tile:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: var(--hover-shadow);
    background-color: rgba(212, 175, 55, 0.15);
}

.industry-tile:hover::before {
    background: linear-gradient(to bottom, rgba(10, 25, 48, 0.3), rgba(10, 25, 48, 0.6));
}

.tile-icon {
    padding: 1rem 1rem 0.5rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.tile-icon i {
    font-size: 2.5rem;
    color: var(--premium-gold);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.industry-tile:hover .tile-icon i {
    transform: scale(1.1) translateY(-3px);
    color: #fff;
}

.tile-content {
    padding: 0 1rem 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.tile-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.tile-content h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--light-gold);
}

.tile-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.tile-content p:hover {
    transform: scale(1.02) translateY(-2px);
    color: #fff;
}

.industry-tile:hover .tile-content p {
    color: #fff;
}

/* Industry row specific styles */
.industry-row-centered .industry-tile {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    min-height: 250px;
}

/* Advantages Section - Updated for better alignment */
.advantages-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.advantage-centered {
    display: flex;
    justify-content: center;
    width: 100%;
}

.advantage-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--section-light);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(10, 25, 48, 0.08);
    transition: var(--lift-transition), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    max-width: 320px;
    margin: 0;
    transform-origin: center bottom;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-item:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 25, 48, 0.12);
    background-color: rgba(255, 255, 255, 0.8);
}

.advantage-centered .advantage-item {
    max-width: 600px;
    grid-column: span 1;
}

.advantage-item i {
    font-size: 3.2rem;
    color: var(--premium-gold);
    margin-bottom: 1.5rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.advantage-item:hover i {
    transform: scale(1.1) translateY(-3px);
    color: var(--deep-blue);
}

.advantage-item h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-gray);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.advantage-item h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--deep-blue);
}

.advantage-item p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.advantage-item p:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--text-gray);
}

/* Projects Slider Styles */
.project-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.project-slider .slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(10, 25, 48, 0.15);
}

.project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.project-slide.active {
    opacity: 1;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section - Updated address tiles to 4x1 grid */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form {
    background-color: var(--section-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(10, 25, 48, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
}

.contact-form h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.contact-form h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
    border-radius: 3px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-left input,
.form-left select {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-gray);
}

.form-left input:focus,
.form-left select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-right textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    min-height: 120px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-gray);
}

.form-right textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-right button {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    border: none;
}

.addresses {
    margin-top: 2rem;
}

.addresses h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--deep-blue);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.addresses h4:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.addresses h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
    border-radius: 3px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-content: center;
}

.address-item {
    background-color: var(--section-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(10, 25, 48, 0.08);
    transition: var(--lift-transition), box-shadow 0.3s ease;
    transform-origin: center bottom;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.address-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 25, 48, 0.12);
}

.address-item h5 {
    font-family: var(--font-heading);
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.address-item h5:hover {
    transform: scale(1.05) translateY(-3px);
    color: var(--gold);
}

.address-item h5 i {
    margin-right: 8px;
    color: var(--gold);
}

.address-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    transition: var(--lift-transition);
    transform-origin: center bottom;
    text-align: center;
}

.address-item p:hover {
    transform: scale(1.02) translateY(-2px);
    color: var(--deep-blue);
}

/* Updated address link styles */
.address-item p a {
    color: var(--deep-blue) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.address-item p a:hover {
    color: var(--gold) !important;
    text-decoration: underline;
}

/* Footer Section - Enhanced Design */
footer {
    background: var(--premium-gradient);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    position: relative;
    font-family: var(--font-heading);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 1;
}

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

.footer-logo {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-logos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: var(--lift-transition);
    background-color: var(--light-grey);
    padding: 5px;
    border-radius: 4px;
    transform-origin: center bottom;
}

.footer-logo-img:hover {
    transform: scale(1.1) translateY(-3px);
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.footer-logo h3:hover {
    transform: scale(1.05) translateY(-3px);
    color: #fff;
}

.footer-logo p {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.footer-logo p:hover {
    transform: scale(1.02) translateY(-2px);
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.footer-logo span:hover {
    transform: scale(1.02) translateY(-2px);
    color: rgba(255, 255, 255, 0.9);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.footer-links h4:hover,
.footer-services h4:hover,
.footer-contact h4:hover,
.footer-social h4:hover {
    transform: scale(1.05) translateY(-3px);
    color: #fff;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.8rem;
    list-style: none;
}

.footer-links a,
.footer-services a {
    color: #FFFFFF;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--gold);
    padding-left: 15px;
}

.footer-links a::before,
.footer-services a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--gold);
    margin-top: 5px;
}

.footer-contact p a {
    color: #FFFFFF;
    transition: color 0.2s ease;
}

.footer-contact p a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #FFFFFF;
    margin: 0 12px;
    transition: var(--transition), var(--lift-transition);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform-origin: center bottom;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.social-icons i {
    font-size: 1.2rem;
}

/* Social media brand colors */
.social-linkedin:hover {
    background: #0077B5;
}

.social-facebook:hover {
    background: #1877F2;
}

.social-whatsapp:hover {
    background: #25D366;
}

.social-instagram:hover {
    background: #E4405F;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--lift-transition);
    transform-origin: center bottom;
}

.footer-bottom p:hover {
    transform: scale(1.02) translateY(-2px);
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom span {
    color: var(--gold);
}

/* Brand name styling */
.brand-name {
    color: var(--gold) !important;
    font-weight: 800;
}

/* Company name styling */
.company-name {
    color: var(--deep-blue) !important;
    font-weight: 600;
    font-size: 1rem;
}

/* K-Span highlight styling */
.k-span-highlight {
    color: #FFD700 !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* WhatsApp Number Styling */
.whatsapp-menu-item a {
    color: #25D366 !important;
    font-weight: 600;
}

.whatsapp-menu-item a:hover {
    color: #25D366 !important;
    opacity: 0.9;
}

/* Performance optimizations */
.hero-bg-img {
    will-change: auto;
    transform: none;
}

.hero-content {
    will-change: auto;
    transform: none;
}

/* Reduced motion media query */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Will-change for animated elements */
.product-card, .stat, .industry-tile, .advantage-item {
    will-change: transform, box-shadow;
}

/* CSS Containment for complex components */
.product-card, .industry-tile, .advantage-item {
    contain: layout style paint;
}

.slider-container {
    contain: layout style paint;
}

/* Header - Updated to fix overlapping content and adjust logo position */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(10, 25, 48, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    height: 130px; /* Increased header height */
    transition: all 0.3s ease;
    overflow: visible; /* Allow logo to extend below header */
}

header .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    margin-right: 20px;
    height: 100%;
    justify-content: center; /* Center content vertically */
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.2rem; /* Reduced space between brand and nav */
    width: 100%;
    overflow: hidden;
}

.main-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--deep-blue);
    font-size: 1.78rem;
    display: flex;
    align-items: baseline;
}

.brand-name {
    font-size: 2rem;
    margin-right: 0.3rem;
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
}

.second-sub-header {
    color: var(--gold);
    font-weight: 600; /* Changed from 700 to match nav */
    font-family: var(--font-heading); /* 'Montserrat', sans-serif */
    font-size: 0.8rem; /* Same as nav menu */
    margin: 0.1rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    letter-spacing: 0.5px; /* Add to match nav */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); /* Add to match nav */
}

.nav-menu {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 0.2rem; /* Reduced space between brand and nav */
}

.nav-menu ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu ul li {
    margin: 0 0.75rem 0 0;
    list-style: none;
    flex-shrink: 0;
}

.nav-menu ul li a {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    color: #222;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-menu ul li a:hover {
    color: var(--gold);
}

.logo-image {
    height: 162px; /* Increased to allow 20% overhang (130px * 1.25 = 162.5px) */
    width: auto;
    margin-left: 1rem;
    flex-shrink: 0;
    position: absolute;
    top: 0; /* Position at top of header */
    right: 20px;
    z-index: 1001;
    transform: translateY(0); /* Reset transform */
}

.logo-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 144px;
}

/* Hero Section - Adjusted to move text up */
.hero {
    min-height: 700px;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    margin-top: 0;
    padding-top: 110px; /* Reduced from 130px to account for logo overhang */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding-top: 0; /* Removed top padding */
    margin-top: -20px; /* Move content up */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--gold);
    color: var(--deep-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: rgba(244, 228, 193, 1);
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 2px;
    width: 24px;
    background: #333;
    margin-bottom: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industry-row-first {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .address-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .product-card {
        flex-direction: column !important;
    }
    
    .product-card-content {
        padding: 2rem;
    }
    
    .project-slider .slider-container {
        height: 400px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        background-image: var(--body-bg-gradient);
        background-attachment: scroll;
        padding-top: 110px; /* Adjusted for mobile header height */
    }
    
    header {
        height: auto;
        padding: 1rem 0;
        min-height: 110px; /* Minimum height for mobile */
        overflow: visible; /* Allow logo to extend below header */
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 0;
        height: auto;
        min-height: 110px;
    }
    
    .logo-section {
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
        flex: none;
        max-width: 65%;
    }
    
    .brand-container {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.1rem; /* Reduced space */
        width: 100%;
    }
    
    .main-brand {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 0.3rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
    }
    
    .brand-name {
        font-size: 1.7rem;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
    
    .second-sub-header {
        font-size: 0.75rem;
        max-width: 100%;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        padding-right: 70px;
        font-family: var(--font-heading); /* Ensure consistency */
        font-weight: 600; /* Ensure consistency */
    }
    
    .nav-menu {
        position: fixed;
        top: 110px; /* Adjusted for mobile header height */
        right: -100%;
        width: 80%;
        height: calc(100vh - 110px); /* Adjusted for mobile header height */
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
        padding: 2rem;
        margin-top: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        overflow-x: visible;
    }
    
    .nav-menu ul li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-menu ul li a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 1.2rem;
        right: 3.7rem;
        z-index: 1002;
    }
    
    .logo-image {
        position: absolute;
        top: 0.8rem;
        right: 1rem;
        height: 100px; /* Adjusted for mobile with overhang */
        margin-left: 0;
        z-index: 1001;
    }
    
    .hero {
        padding-top: 90px; /* Reduced to account for logo overhang */
        text-align: center;
    }
    
    .hero-content {
        padding-top: 0;
        margin-top: -15px; /* Move content up */
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .industry-row-first {
        grid-template-columns: 1fr;
    }
    
    .industry-row-centered {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-row-centered .industry-tile {
        max-width: 100%;
        width: 100%;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-centered .advantage-item {
        max-width: 100%;
    }
    
    .address-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Reduce blur on mobile */
    header {
        backdrop-filter: blur(4px);
    }
    
    /* Fix IndoPod slider for mobile */
    .slider-container {
        height: 300px;
    }
    
    .slide img {
        object-fit: contain;
        background-color: #f8f9fa;
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Project slider adjustments */
    .project-slider .slider-container {
        height: 300px;
    }
    
    .project-slide img {
        object-fit: contain;
        background-color: #f8f9fa;
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .project-slider .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .project-slider .prev-btn {
        left: 10px;
    }
    
    .project-slider .next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .center-text {
        font-size: 1.1rem;
    }
    
    .stat {
        flex: 1 1 100%;
    }
    
    .product-card {
        min-height: auto;
    }
    
    .product-card-image {
        min-height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links a::before,
    .footer-services a::before {
        display: none;
    }
    
    .footer-links a:hover,
    .footer-services a:hover {
        padding-left: 0;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* Mobile responsiveness for industry tiles */
    .industry-tile {
        min-height: 220px;
    }
    
    .tile-icon i {
        font-size: 2rem;
    }
    
    .tile-content h3 {
        font-size: 1.1rem;
    }
    
    .tile-content p {
        font-size: 0.85rem;
    }
    
    /* Make slider arrows more visible on small screens */
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    /* Project slider adjustments */
    .project-slider .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .project-slider .prev-btn {
        left: 5px;
    }
    
    .project-slider .next-btn {
        right: 5px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px; /* Adjusted for smaller mobile header height */
    }
    
    header {
        min-height: 100px; /* Minimum height for smaller mobile */
    }
    
    .second-sub-header {
        font-size: 0.7rem;
        padding-right: 60px;
        font-family: var(--font-heading); /* Ensure consistency */
        font-weight: 600; /* Ensure consistency */
    }
    
    .main-brand {
        font-size: 1.3rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .company-name {
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 85px; /* Adjusted for smaller mobile with overhang */
    }
    
    .menu-toggle {
        top: 1rem;
        right: 3rem;
    }
    
    .nav-menu {
        top: 100px; /* Adjusted for smaller mobile header height */
        height: calc(100vh - 100px); /* Adjusted for smaller mobile header height */
    }
    
    .hero {
        padding-top: 80px; /* Reduced to account for logo overhang */
    }
    
    .hero-content {
        margin-top: -10px; /* Move content up */
    }
    
    .industry-tile {
        padding: 1.2rem;
        min-height: 200px;
    }
    
    .tile-icon i {
        font-size: 1.8rem;
    }
    
    .tile-content h3 {
        font-size: 1rem;
    }
    
    .tile-content p {
        font-size: 0.8rem;
    }
    
    /* Make slider arrows more visible on very small screens */
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    /* Project slider adjustments */
    .project-slider .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .project-slider .prev-btn {
        left: 5px;
    }
    
    .project-slider .next-btn {
        right: 5px;
    }
    
    .address-item {
        min-height: 180px;
        padding: 1.2rem;
    }
}