/* IPL Schoeller Style Clone - Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
}

/* Global Heading Styles - Normal weight with larger sizes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* Global Paragraph Styles */
p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

p.lead, .lead-text {
    font-size: 1.125rem;
}

p.small, .small-text {
    font-size: 0.875rem;
}

.container-ipl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR - IPL Style
   ============================================ */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    color: #ffffff;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.language-selector i {
    font-size: 0.6rem;
}

.top-bar-email {
    color: #ffffff;
    font-size: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-email:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-right a {
    color: #ffffff;
    font-size: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

.top-bar-right .social-link {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.top-bar-right .social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Scrolled state for top bar */
.top-bar.scrolled {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar.scrolled .language-selector,
.top-bar.scrolled .top-bar-email,
.top-bar.scrolled .top-bar-right a {
    color: #4a5568;
}

.top-bar.scrolled .top-bar-right .social-link {
    border-color: #4a5568;
    color: #4a5568;
}

/* ============================================
   NAVIGATION - IPL Style (Transparent to White)
   ============================================ */
.navbar-ipl {
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Fixed navbar that appears after scrolling past hero */
.navbar-ipl.fixed-nav {
    position: fixed;
    top: 0;
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.navbar-ipl.fixed-nav .nav-menu-ipl > li > a {
    color: #ffffff;
}

.navbar-ipl.fixed-nav .nav-menu-ipl > li > a:hover {
    color: #e0f2fe;
}

.navbar-ipl.fixed-nav .contact-btn {
    background: #0891b2 !important;
    color: #ffffff !important;
}

.navbar-ipl.fixed-nav .nav-search {
    color: #ffffff;
}

/* Search Icon */
.nav-search {
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
}

.nav-search:hover {
    opacity: 0.8;
}

.navbar-ipl.scrolled .nav-search {
    color: #ffffff;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo-img {
    height: 350px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: absolute;
    top: -140px;
    left: -2rem;
    z-index: 10;
}

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

.nav-menu-ipl > li > a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.9rem;
    border-radius: 0;
}

.nav-menu-ipl > li > a:hover {
    opacity: 0.8;
    background: transparent;
}

/* Contact Button - IPL Style */
.nav-menu-ipl .contact-btn {
    background: #0891b2;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.nav-menu-ipl .contact-btn:hover {
    background: #0e7490;
    opacity: 1 !important;
}

/* Dropdown Menu Styles - IPL Classic Style */
.nav-menu-ipl .dropdown {
    position: relative;
}

.nav-menu-ipl .dropdown > a {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 1.5rem;
    transition: color 0.2s ease;
}

/* Add arrow to dropdown parent */
.nav-menu-ipl .dropdown > a::after {
    content: '';
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s ease;
    pointer-events: none;
}

/* Dropdown menu styles - IPL Style */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0;
    pointer-events: none;
}

/* Create a gap between the menu item and dropdown */
.dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 20px;
    background: transparent;
    z-index: 1001;
}

/* Show dropdown on hover */
.dropdown:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Keep the dropdown open when hovering over the dropdown or its parent */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown menu items - IPL Style */
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    border-left: none;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: transparent;
    color: #0891b2;
    padding-left: 1.5rem;
    border-left: none;
}

.dropdown-menu a i {
    float: right;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover i {
    transform: translateX(3px);
    opacity: 1;
}

/* Dropdown Footer - IPL Style */
.dropdown-footer {
    border-top: 1px solid #e5e7eb;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem 0;
}

.industry-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    color: #64748b !important;
    padding: 0 !important;
    margin: 0;
    border-radius: 0;
    background-color: transparent !important;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-left: none !important;
}

.industry-overview:hover {
    background: transparent !important;
    color: #0891b2 !important;
}

.industry-overview .more-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0891b2;
    font-weight: 500;
}

.industry-overview .more-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.industry-overview:hover .more-link i {
    transform: translateX(3px);
}

/* ============================================
   SCROLLED STATE - White Navbar
   ============================================ */
.navbar-ipl.scrolled {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
}


.navbar-ipl.scrolled .nav-menu-ipl > li > a {
    color: #ffffff;
}

.navbar-ipl.scrolled .nav-menu-ipl > li > a:hover {
    color: #e0f2fe;
}

.navbar-ipl.scrolled .nav-menu-ipl .contact-btn {
    color: #ffffff !important;
}

/* Hide top bar when scrolled */
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* ============================================
   MOBILE STYLES
   ============================================ */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }
    
    .navbar-ipl {
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu-ipl .dropdown > a i {
        margin-left: auto;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        transform: none;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem;
    }
    
    .industry-overview {
        margin-top: 0.5rem;
        padding: 0.8rem 1rem !important;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-ipl.scrolled .nav-toggle span {
    background: #ffffff;
}

/* Hero Section - IPL Style */
.hero-ipl {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/9c057f30-2e4d-4521-863e-1542862bf1f6.jpeg') center/cover no-repeat fixed;
    color: white;
    text-align: center;
}

.hero-ipl-content {
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
    margin-top: 8rem;
}

.hero-ipl-tagline {
    font-size: 0.80rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 10.9;
}

.hero-ipl-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.hero-ipl-description {
    font-size: 1.150rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1.6rem;
}

.hero-cta-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: #1e40af;
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.hero-cta-btn:hover i {
    transform: translateX(3px);
}

.hero-ipl-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

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

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

/* Technology & Innovation Section */
.tech-innovation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    position: relative;
}

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

.tech-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tech-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.tech-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.tech-content p:not(.tech-subtitle) {
    font-weight: 300;
}

.btn-tech-discover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: #4da6ff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 166, 255, 0.3);
}

.btn-tech-discover:hover {
    background: #3d96ef;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 166, 255, 0.4);
}

.btn-tech-discover i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-tech-discover:hover i {
    transform: translateX(5px);
}

.tech-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 480px;
    margin-left: auto;
    line-height: 0;
}

.tech-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Buttons - IPL Style */
.btn-ipl-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: gap 0.3s ease;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
}

.btn-ipl-link:hover {
    gap: 1rem;
}

.btn-ipl-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #00a8e8;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.25);
    border: none;
}

.btn-ipl-secondary:hover {
    background: #0090c9;
    box-shadow: 0 6px 16px rgba(0, 168, 232, 0.35);
    transform: translateY(-2px);
}

.btn-ipl-secondary i {
    transition: transform 0.3s ease;
}

.btn-ipl-secondary:hover i {
    transform: translateX(3px);
}

.btn-ipl-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-ipl-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Section Titles */
.section-title-ipl {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-label-ipl {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Industries Section */
.industry-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.industries-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 168, 154, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    z-index: 1;
}

.industries-section .container-ipl {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.industries-section .section-title-ipl {
    color: #16a89a;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

.industries-carousel {
    position: relative;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.industriesSwiper {
    padding: 0 50px;
    overflow: hidden;
}

.industry-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    position: relative;
    height: 280px;
    border: none;
}

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

.industry-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.industry-card-new:hover img {
    transform: scale(1.05);
}

.industry-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 20px 15px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card-overlay h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.industry-card-overlay i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.industry-card-new:hover .industry-card-overlay i {
    transform: translateX(5px);
}

/* Navigation Buttons */
.industriesSwiper .swiper-button-next,
.industriesSwiper .swiper-button-prev {
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: -22px;
    transition: all 0.3s ease;
    border: 2px solid #16a89a;
}

.industriesSwiper .swiper-button-prev {
    left: 10px;
}

.industriesSwiper .swiper-button-next {
    right: 10px;
}

.industriesSwiper .swiper-button-next:after,
.industriesSwiper .swiper-button-prev:after {
    font-size: 1.1rem;
    font-weight: bold;
    color: #16a89a;
}

.industriesSwiper .swiper-button-next:hover,
.industriesSwiper .swiper-button-prev:hover {
    background: #16a89a;
    color: white;
    box-shadow: 0 6px 16px rgba(22, 168, 154, 0.3);
    transform: translateY(-2px);
}

.industriesSwiper .swiper-button-next:hover:after,
.industriesSwiper .swiper-button-prev:hover:after {
    color: white;
}

/* Pagination */
.industriesSwiper .swiper-pagination {
    bottom: -30px;
}

.industriesSwiper .swiper-pagination-bullet {
    background: #16a89a;
    opacity: 0.5;
}

.industriesSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Products Carousel Section */
.products-carousel-section {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.products-carousel-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -250px;
    transform: rotate(45deg);
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(22, 168, 154, 0.08) 0%, rgba(20, 160, 142, 0.12) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(50deg) translateY(-10px);
    }
}

.products-carousel-section .container-ipl {
    position: relative;
    z-index: 1;
}

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

.product-card-ipl {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-ipl:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    z-index: 10;
}

.product-image-ipl {
    position: relative;
    height: 300px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-bg-green {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%) !important;
}

.product-bg-blue {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%) !important;
}

.product-bg-gray {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%) !important;
}

.product-bg-lightblue {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%) !important;
}

.product-image-ipl img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-ipl {
    padding: 2rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info-ipl h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.75rem 0 1.5rem;
    color: var(--primary-color);
}

/* Sustainability Section with Background */
.sustainability-ipl {
    padding: 7rem 0;
    min-height: 500px;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sustainability-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sustainability-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.sustainability-content {
    max-width: 900px;
    margin: 0 auto;
}

.sustainability-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sustainability-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.sustainability-content .section-label-ipl {
    color: #ffffff;
}

/* Trade Moulding Section */
.trade-moulding-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.trade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.trade-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.trade-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.trade-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Innovation Section New */
.innovation-section-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4fc 0%, #f0f7ff 100%);
}

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

.innovation-image-new {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.innovation-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.innovation-content-new h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.innovation-content-new p {
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

/* Innovation Section */
.innovation-ipl-section {
    padding: 8rem 0;
    background: white;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.innovation-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.innovation-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.innovation-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* RTP Section with Background */
.rtp-section {
    padding: 4rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rtp-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.rtp-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.5);
}

.rtp-overlay {
    display: none;
}

.rtp-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.rtp-content .section-label-ipl {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.rtp-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.rtp-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.rtp-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.rtp-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rtp-stat .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.rtp-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rtp-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Contact Section */
.contact-ipl-section {
    padding: 6rem 0;
    background: #e8f4dc;
    position: relative;
    overflow: hidden;
}

.contact-ipl-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contact-ipl-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.contact-ipl-grid {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-ipl-info {
    color: #1a365d;
}

.contact-info-image {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.contact-info-image img {
    width: 1550px;
    height: auto;
    margin-left: -388px;
}

.contact-ipl-info .section-label-ipl {
    color: #16a89a;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.contact-ipl-info h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: #1a365d;
}

.contact-ipl-info > p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.1rem;
    color: #7dd3fc;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.contact-item div {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-item a:hover {
    color: white;
}

/* IPL Form Styles */
.contact-ipl-form {
    position: relative;
    z-index: 1;
}

.ipl-form {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.ipl-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a365d 0%, #3b82f6 50%, #06b6d4 100%);
}

.ipl-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.form-group-ipl {
    margin-bottom: 1.2rem;
}

.form-group-ipl label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a365d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-ipl input,
.form-group-ipl select,
.form-group-ipl textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group-ipl input:focus,
.form-group-ipl select:focus,
.form-group-ipl textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group-ipl input::placeholder,
.form-group-ipl textarea::placeholder {
    color: #94a3b8;
}

.form-group-ipl textarea {
    resize: vertical;
    min-height: 90px;
}

.form-checkbox-ipl {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.form-checkbox-ipl input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.form-checkbox-ipl label {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.btn-ipl-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ipl-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-ipl-submit i {
    transition: transform 0.3s ease;
}

.btn-ipl-submit:hover i {
    transform: translateX(4px);
}

/* Footer IPL Style */
.footer-ipl {
    background: #173257;
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

/* Home Screen Footer Specific Style */
.home-footer {
    background: #173257;
}

.footer-ipl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a89a 0%, #3b82f6 50%, #06b6d4 100%);
}

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

.footer-ipl-brand {
    padding-right: 2rem;
}

.footer-logo {
    position: relative;
    height: 60px;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 350px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    display: block;
    margin: -150px auto 1rem -40px;
    position: relative;
    z-index: 10;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 200px 0 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-left: 50px;
}

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

.social-link:hover {
    background: #16a89a;
    border-color: #16a89a;
    transform: translateY(-3px);
}

.footer-ipl-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-ipl-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-ipl-section a:hover {
    color: #16a89a;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: #16a89a;
    margin-top: 3px;
    width: 16px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
    color: #16a89a;
    padding-left: 0;
}

.footer-ipl-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-ipl-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-ipl-links {
    display: flex;
    gap: 2rem;
}

.footer-ipl-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-ipl-links a:hover {
    color: #16a89a;
}

/* Swiper Customization */
.swiper {
    padding-bottom: 3rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.industriesSwiper .swiper-pagination {
    display: none;
}

.industriesSwiper .swiper-button-next,
.industriesSwiper .swiper-button-prev {
    color: #16a89a;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    top: 40%;
    transform: translateY(-50%);
    margin-top: 0;
}

.industriesSwiper .swiper-button-prev {
    left: -22px;
}

.industriesSwiper .swiper-button-next {
    right: -22px;
}

.industriesSwiper .swiper-button-next:after,
.industriesSwiper .swiper-button-prev:after {
    font-size: 1.1rem;
    font-weight: bold;
}

.industriesSwiper .swiper-button-next:hover,
.industriesSwiper .swiper-button-prev:hover {
    background: #16a89a;
    color: white;
    box-shadow: 0 6px 16px rgba(22, 168, 154, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-grid,
    .trade-grid,
    .innovation-grid,
    .innovation-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .innovation-section-new {
        padding: 4rem 0;
    }

    .innovation-content-new h2 {
        font-size: 1.9rem;
    }

    .innovation-image-new img {
        height: 280px;
    }

    .tech-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-ipl-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-ipl-info h2 {
        font-size: 1.9rem;
    }

    .ipl-form {
        padding: 2rem;
    }

    .hero-ipl-title {
        font-size: 2.5rem;
    }

    .section-title-ipl,
    .tech-content h2,
    .trade-content h2,
    .innovation-content h2,
    .contact-ipl-info h2 {
        font-size: 2rem;
    }

    .sustainability-content h2,
    .rtp-content h2 {
        font-size: 2.5rem;
    }

    .industries-section .container-ipl {
        padding: 0 2rem;
    }

    .industriesSwiper .swiper-button-prev {
        left: 10px;
    }

    .industriesSwiper .swiper-button-next {
        right: 10px;
    }

    /* Industries Carousel Tablet Enhancements */
    .industriesSwiper {
        padding: 0 30px;
    }

    .industriesSwiper .swiper-button-next,
    .industriesSwiper .swiper-button-prev {
        display: flex;
    }

    .industriesSwiper .swiper-pagination {
        display: none;
    }

    .industry-card-new {
        height: 260px;
    }

    .industry-card-new img {
        height: 100%;
        object-fit: cover;
    }

    .industry-card-overlay {
        padding: 20px 15px 15px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industry-card-overlay h3 {
        color: white;
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .industry-card-overlay i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .industry-card-new:hover .industry-card-overlay i {
        transform: translateX(5px);
    }

    /* Products Carousel Mobile */
    .products-carousel {
        padding: 20px 0 40px;
    }

    .productsSwiper {
        padding: 0 10px;
    }

    .product-card-ipl {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: auto;
        margin: 10px;
    }

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

    .product-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        border-radius: 20px;
        top: 15px;
        left: 15px;
        z-index: 2;
    }

    .product-image-ipl {
        height: 200px;
        position: relative;
        overflow: hidden;
    }

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

    .product-card-ipl:hover .product-image-ipl img {
        transform: scale(1.05);
    }

    .product-info-ipl {
        padding: 1.5rem;
        text-align: center;
    }

    .product-category {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .product-info-ipl h3 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        color: #1e293b;
        font-weight: 600;
    }

    .btn-ipl-link {
        font-size: 0.9rem;
        padding: 10px 20px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s;
    }

    .btn-ipl-link:hover {
        gap: 1rem;
    }

    /* Swiper Navigation Mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
        color: #1a365d;
    }

    .swiper-pagination {
        bottom: 10px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

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

    .footer-ipl-brand {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-ipl-brand .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-ipl-brand p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .footer-social {
        justify-content: center;
        gap: 1rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }

    .footer-social a:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-3px);
    }

    .footer-ipl-section {
        margin-bottom: 2rem;
    }

    .footer-ipl-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }

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

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

    .footer-ipl-section ul li a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

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

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

    .footer-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.9);
    }

    .footer-contact-item i {
        font-size: 1rem;
        color: #ffffff;
    }

    .footer-contact-item a {
        color: rgba(255,255,255,0.9);
    }

    .footer-contact-item a:hover {
        color: #ffffff;
    }

    .footer-ipl-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 2rem;
    }

    .footer-ipl-bottom p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.7);
    }

    .footer-ipl-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-ipl-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s ease;
    }

    .footer-ipl-links a:hover {
        color: #ffffff;
    }

    /* Contact Form Mobile */
    .contact-ipl-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-ipl-info {
        margin-bottom: 2rem;
    }

    .contact-ipl-info h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .contact-ipl-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .contact-ipl-form {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2rem 1.5rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

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

    .form-group-ipl label {
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: block;
        color: #1e293b;
    }

    .form-group-ipl input,
    .form-group-ipl select,
    .form-group-ipl textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .form-group-ipl input:focus,
    .form-group-ipl select:focus,
    .form-group-ipl textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .btn-ipl-submit {
        width: 100%;
        padding: 14px 24px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-ipl-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-ipl-section {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-ipl-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-ipl-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .section-header-ipl {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 2rem;
        text-align: left;
    }

    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

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

    .about-content,
    .overview-content,
    .product-detail-content,
    .circular-content,
    .innovation-content,
    .contact-wrapper,
    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .why-choose-decoration {
        height: 200px;
        margin-top: 2rem;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

    .why-choose-list li {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .diagram-circle {
        width: 300px;
        height: 300px;
    }

    .page-header {
        padding: 6rem 0 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .hero-ipl-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    .hero-ipl-content .description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .container-ipl {
        padding: 0 1rem;
    }

    /* Section Headers */
    .section-title-ipl {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .section-header-ipl h2 {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .btn-ipl-secondary {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    /* Grid Improvements */
    .tech-grid,
    .trade-grid,
    .innovation-grid-new {
        gap: 2rem;
    }

    .tech-content,
    .trade-content,
    .innovation-content-new {
        order: 2;
        padding: 0 0.5rem;
    }

    .tech-content h2,
    .trade-content h2,
    .innovation-content-new h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .tech-content p,
    .trade-content p,
    .innovation-content-new p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .btn-tech-discover,
    .btn-ipl-link {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    /* Carousel Improvements */
    .industries-carousel,
    .products-carousel {
        padding: 15px 0 30px;
    }

    .industriesSwiper,
    .productsSwiper {
        padding: 0 5px;
    }

    .product-card-ipl {
        margin: 5px;
        border-radius: 15px;
    }

    .product-image-ipl {
        height: 160px;
    }

    .product-info-ipl {
        padding: 1rem;
    }

    .product-info-ipl h3 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .product-category {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .btn-ipl-link {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    /* Industry Cards */
    .industry-card-new img {
        height: 100%;
        object-fit: cover;
    }

    .industry-card-overlay {
        padding: 1rem;
        min-height: 60px;
    }

    .industry-card-overlay h3 {
        font-size: 1rem;
    }

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

    .form-group-ipl input,
    .form-group-ipl select,
    .form-group-ipl textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .btn-ipl-submit {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-ipl-brand p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

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

    .footer-ipl-section ul li a {
        font-size: 0.85rem;
    }

    .footer-contact-item {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-ipl-bottom p {
        font-size: 0.75rem;
    }

    .footer-ipl-links a {
        font-size: 0.75rem;
        gap: 1rem;
    }

    /* Swiper Navigation */
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px;
    }

    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }

    /* Section Spacing */
    .tech-innovation-section,
    .industries-section,
    .products-carousel-section,
    .trade-moulding-section,
    .innovation-section-new,
    .contact-ipl-section {
        padding: 3rem 0;
    }

    .sustainability-ipl,
    .rtp-section {
        padding: 4rem 0;
    }

    /* Navigation */
    .nav-menu-ipl {
        top: 60px;
        padding: 1.5rem 1rem;
    }

    .nav-menu-ipl a {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .nav-menu-ipl .dropdown-menu a {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

/* Products Catalog Page */
.products-page {
    padding: 3rem 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

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

.products-layout {
    display: block;
    text-align: center;
}

.products-main {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.category-description {
    text-align: center;
    margin-bottom: 3rem;
}

.category-description h2 {
    margin-bottom: 1rem;
}

.category-description p {
    max-width: 800px;
    margin: 0 auto;
}

/* Sidebar Filter */
.products-sidebar {
    background: #f8fafc;
    padding: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.filter-section h3 {
    background: #4a5568;
    color: white;
    padding: 1.25rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.filter-group {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.filter-group h4 {
    background: #4ade80;
    color: white;
    padding: 0.75rem 1rem;
    margin: 0 -1.5rem 1rem -1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.filter-reset {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-reset:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-checkbox span {
    font-size: 0.9rem;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.filter-checkbox small {
    color: var(--text-color);
    font-weight: 600;
}

/* Products Grid Catalog */
.products-grid-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.product-catalog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-catalog-badge {
    background: #4ade80;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.product-catalog-image {
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-catalog-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-catalog-info {
    padding: 1.5rem;
    background: #f8fafc;
}

.product-spec {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.product-spec:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

.spec-value {
    font-size: 0.85rem;
    color: var(--dark-color);
    font-weight: 600;
    text-align: right;
}

.btn-view-details {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: white;
}

/* Products CTA Section */
.products-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 1;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature i {
    color: #4ade80;
    font-size: 1.3rem;
}

.cta-feature span {
    font-size: 1rem;
    color: var(--dark-color);
}

.cta-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-form h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-form .form-group {
    margin-bottom: 1.25rem;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cta-form textarea {
    resize: vertical;
    font-family: inherit;
}

.cta-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Responsive for Products Page */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .products-grid-catalog {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .products-grid-catalog {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-form {
        padding: 2rem 1.5rem;
    }
}

/* Product Detail Page */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    color: var(--text-color);
}

.product-detail-page {
    padding: 4rem 0;
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-image-section {
    position: sticky;
    top: 100px;
}

.main-product-image {
    background: #f8fafc;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.main-product-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-detail-info-section h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-reference {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.product-reference strong {
    color: var(--primary-color);
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.product-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.product-section:last-of-type {
    border-bottom: none;
}

.product-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

.spec-item {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.spec-item .spec-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.spec-item .spec-value {
    display: block;
    font-size: 1.25rem;
    color: var(--dark-color);
    font-weight: 600;
}

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

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--dark-color);
}

.product-features-list i {
    color: #4ade80;
    font-size: 1.2rem;
}

.btn-request-quote {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.btn-request-quote i {
    margin-right: 0.5rem;
}

/* Related Products Section */
.related-products {
    padding: 4rem 0;
    background: #f8fafc;
}

.related-products h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

/* Product Quote Form */
.product-quote-form {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-wrapper h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quote-form-wrapper > p {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.quote-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-form .form-group {
    margin-bottom: 0;
}

.quote-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-form input[readonly] {
    background: #f8fafc;
    color: var(--dark-color);
    font-weight: 600;
}

.quote-form textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit-quote {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit-quote i {
    margin-right: 0.5rem;
}

/* Info Sections (Sustainability & Innovation) */
.info-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.info-section:nth-child(even) {
    background: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: center;
}

.info-grid.reverse {
    grid-template-columns: 55% 45%;
}

.info-grid.reverse .info-content {
    order: 1;
}

.info-grid.reverse .info-image {
    order: 2;
}

.info-image {
    position: relative;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-content h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-weight: 400;
}

.info-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.info-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.info-tagline {
    font-style: italic;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.btn-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-info:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-info i {
    font-size: 0.85rem;
}

/* Product Showcase Section */
.product-showcase {
    background: linear-gradient(to right, #6b8fa3 0%, #8eaec0 50%, #b4cdd9 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    min-height: 650px;
}

.showcase-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 4rem 4rem;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.showcase-image img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
}

.showcase-content {
    background: #f8f9fa;
    padding: 5rem 5rem 5rem 4rem;
    border-radius: 50px 0 0 50px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6b7280;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.showcase-content h2 {
    font-size: 2.75rem;
    color: #1a1a1a;
    margin-bottom: 1.75rem;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.showcase-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2.75rem;
}

.showcase-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.showcase-buttons .btn {
    padding: 1.1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-showcase-primary {
    background: #3b5bdb;
    color: white;
    border: none;
}

.btn-showcase-primary:hover {
    background: #2f4bc7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 91, 219, 0.3);
}

.btn-showcase-secondary {
    background: white;
    color: #3b5bdb;
    border: 2px solid #e5e7eb;
}

.btn-showcase-secondary:hover {
    background: #3b5bdb;
    color: white;
    border-color: #3b5bdb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 91, 219, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: start;
}

.contact-form-left {
    padding-right: 2rem;
}

.contact-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-form-left h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.contact-form-left p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-cta {
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
}

.contact-image {
    margin-top: 3rem;
    max-width: 400px;
}

.contact-image img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Minimalist Form Styles */
.minimalist-form {
    background: #ffffff;
}

.minimalist-form .form-group {
    margin-bottom: 1.75rem;
}

.minimalist-form label {
    display: block;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.field-hint {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 300;
}

.minimalist-form input[type="text"],
.minimalist-form input[type="email"],
.minimalist-form input[type="tel"],
.minimalist-form select,
.minimalist-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.minimalist-form input:focus,
.minimalist-form select:focus,
.minimalist-form textarea:focus {
    outline: none;
    border-bottom-color: #3b5bdb;
}

.minimalist-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.minimalist-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    cursor: pointer;
}

.form-checkbox a {
    color: #3b5bdb;
    text-decoration: underline;
}

.btn-send {
    background: #3b5bdb;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: #2f4bc7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 91, 219, 0.3);
}

.btn-send i {
    font-size: 0.9rem;
}

/* Responsive for Product Detail */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-image-section {
        position: static;
    }

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

    .showcase-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .showcase-content {
        border-radius: 50px 50px 0 0;
        padding: 4rem 3rem;
    }

    .showcase-content h2 {
        font-size: 2.25rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-left {
        padding-right: 0;
    }

    .contact-form-left h2 {
        font-size: 2rem;
    }

    .info-grid,
    .info-grid.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-grid.reverse .info-content {
        order: 2;
    }

    .info-grid.reverse .info-image {
        order: 1;
    }

    .info-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-detail-info-section h1 {
        font-size: 2rem;
    }

    .main-product-image {
        padding: 2rem;
        min-height: 350px;
    }

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

    .quote-form {
        padding: 2rem 1.5rem;
    }

    .quote-form-wrapper h2 {
        font-size: 2rem;
    }

    .showcase-container {
        min-height: auto;
    }

    .showcase-image {
        padding: 2rem;
    }

    .showcase-image img {
        max-height: 300px;
    }

    .showcase-content h2 {
        font-size: 1.75rem;
    }

    .showcase-buttons {
        flex-direction: column;
    }

    .showcase-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-form-left h2 {
        font-size: 1.75rem;
    }

    .contact-image {
        max-width: 300px;
    }

    .btn-send {
        width: 100%;
        justify-content: center;
    }

    .info-section {
        padding: 4rem 0;
    }

    .info-content h2 {
        font-size: 1.75rem;
    }

    .btn-info {
        width: 100%;
        justify-content: center;
    }

    /* Reduce floating shapes on mobile */
    .shape {
        opacity: 0.02;
    }

    .shape-1, .shape-3, .shape-5 {
        width: 200px;
        height: 200px;
    }

    .shape-2, .shape-4 {
        width: 150px;
        height: 150px;
    }
}

/* ========================================
   PALLETCO STYLE - PRODUCT DETAIL PAGE
   ======================================== */

/* Breadcrumb */
.breadcrumb {
    background: #f5f5f5;
    padding: 15px 0;
    margin-top: 80px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Product Detail Section - Palletco Style */
.product-detail-palletco {
    padding: 80px 0 60px;
    background: #fff;
    margin-top: 50px;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.main-image-container:hover img {
    transform: scale(1.02);
}

.zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #333;
}

.zoom-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #2563eb;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Product Info - Palletco Style */
.product-info-palletco {
    padding: 0;
}

.product-title-palletco {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0099cc;
    margin-bottom: 15px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-sku {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.product-sku span {
    color: #0099cc;
}

.product-name-sub {
    font-size: 0.95rem;
    color: #0099cc;
    margin-bottom: 8px;
    font-weight: 400;
}

.product-size-label {
    font-size: 0.95rem;
    color: #0099cc;
    margin-bottom: 25px;
    font-weight: 400;
}

.product-size-label span {
    color: #0099cc;
    font-weight: 400;
}

/* Product Specs List */
.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-specs-list li {
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.spec-dash {
    color: #333;
    font-weight: 400;
}

/* Buy Section - Quantity and Buy Now */
.buy-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 45px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-btn.minus {
    border-right: 1px solid #ddd;
}

.qty-btn.plus {
    border-left: 1px solid #ddd;
}

.quantity-selector input {
    width: 50px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: #fff;
}

.quantity-selector input:focus {
    outline: none;
}

.btn-buy-now {
    flex: 1;
    height: 45px;
    background: #0099cc;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 40px;
}

.btn-buy-now:hover {
    background: #007aa3;
}

/* Wishlist Button - Palletco Style */
.wishlist-btn-palletco {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    padding: 10px 0;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.wishlist-btn-palletco:hover {
    color: #e74c3c;
}

.wishlist-btn-palletco i {
    font-size: 1rem;
}

/* Accordion */
.product-accordion {
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #2563eb;
}

.accordion-header i {
    transition: transform 0.3s;
    font-size: 0.85rem;
    color: #888;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: #2563eb;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    color: #666;
    width: 40%;
}

.specs-table td:last-child {
    color: #1a1a1a;
    font-weight: 500;
}

.no-reviews {
    color: #888;
    font-style: italic;
    margin-bottom: 10px;
}

.review-prompt {
    color: #2563eb;
    font-size: 0.9rem;
}

/* Request Quote Button - Palletco Style */
.btn-request-quote-palletco {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-request-quote-palletco:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Related Products - Palletco Style */
.related-products-palletco {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2563eb;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.related-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

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

.related-product-image {
    position: relative;
    background: #f5f5f5;
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-image img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    color: #888;
}

.wishlist-icon:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.related-product-info {
    padding: 20px;
    text-align: center;
}

.related-product-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-product-info h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.related-product-info h3 a:hover {
    color: #2563eb;
}

.related-product-size {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.related-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
}

/* Quote Form Section */
.product-quote-form {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d 0%, #0f2744 100%);
}

.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-form-wrapper h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.quote-form-wrapper > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.quote-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group {
    text-align: left;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive - Product Detail Palletco */
@media (max-width: 1024px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 70px;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .main-image-container img {
        height: 350px;
    }
    
    .product-title-palletco {
        font-size: 1.4rem;
    }
    
    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-product-image {
        height: 160px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .product-detail-palletco {
        padding: 60px 0 40px;
        margin-top: 30px;
    }
    
    .main-image-container img {
        height: 280px;
    }
    
    .product-specs-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   PRODUCT DETAILS SECTION - PALLETCO STYLE
   ======================================== */

/* Product Details Box - Inside Same Section */
.product-details-box {
    background: #e8f4f8;
    padding: 40px 0 60px;
    margin-top: 40px;
}

.product-details-section {
    padding: 40px 0 60px;
    background: #e8f4f8;
}

.product-details-title {
    color: #cc0000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 10px;
}

/* ========================================
   NEW PRODUCT DETAILS DESIGN
   ======================================== */

.product-details-new-design {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Section Titles */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

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

.gallery-image {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

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

.gallery-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.image-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-caption {
    margin-top: 12px;
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
}

/* Technical Specifications Section */
.specs-section {
    margin-bottom: 50px;
}

.specs-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-image-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.spec-image-card img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
}

.spec-image-label {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    font-size: 1rem;
}

/* Technical Data Section */
.data-section {
    margin-bottom: 30px;
}

.data-grid {
    display: grid;
    gap: 20px;
}

.data-item {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    min-width: 200px;
}

.data-value {
    color: #34495e;
    font-size: 0.95rem;
    flex: 1;
    text-align: right;
}

/* Color Options */
.color-options {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-option:hover {
    transform: scale(1.2);
}

.color-option.blue { background: #3498db; }
.color-option.green { background: #27ae60; }
.color-option.red { background: #e74c3c; }
.color-option.yellow { background: #f39c12; }
.color-option.black { background: #2c3e50; }
.color-option.gray { background: #95a5a6; }

/* Loading Capacity Grid */
.capacity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.capacity-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.capacity-label {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 500;
}

.capacity-value {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Loading Capacity Special Layout */
.loading-capacity {
    flex-direction: column;
    align-items: flex-start;
}

.loading-capacity .data-label {
    margin-bottom: 15px;
}

.loading-capacity .data-value {
    width: 100%;
    text-align: left;
}

/* Product Details Content Box - Legacy */
.product-details-content-box {
    background: white;
    border: 1px solid #ddd;
    padding: 40px;
}

/* Product Images Grid */
.product-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

/* Product Images Box - Legacy */
.product-images-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: white;
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 40px;
}

.product-image-item {
    text-align: center;
}

.product-image-item .image-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-image-item .image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-caption {
    font-size: 0.9rem;
    color: #333;
    font-style: italic;
}

/* Technical Specification */
.tech-spec-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-spec-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto 40px;
}

.tech-spec-image {
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.tech-spec-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/* Technical Data Table */
.technical-data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid #333;
    margin-top: 40px;
}

.technical-data-table thead th {
    background: #f5f5f5;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    text-align: center;
}

.technical-data-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.technical-data-table .label-cell {
    background: #f9f9f9;
    font-weight: 600;
    color: #333;
    width: 30%;
}

.technical-data-table .value-cell {
    color: #333;
}

.technical-data-table .value-cell.center {
    text-align: center;
}

.technical-data-table .sub-header {
    background: #f5f5f5;
    font-weight: 600;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.technical-data-table .sku-label {
    font-weight: 400;
    font-size: 0.85rem;
    color: #666;
}

/* Color Dots */
.color-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.color-dot.blue {
    background: #0066cc;
}

.color-dot.green {
    background: #009933;
}

.color-dot.red {
    background: #cc0000;
}

.color-dot.yellow {
    background: #ffcc00;
}

.color-dot.black {
    background: #333333;
}

.color-dot.gray {
    background: #999999;
}

/* Responsive - New Product Details Design */
@media (max-width: 768px) {
    .product-details-new-design {
        padding: 25px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image img {
        height: 180px;
    }
    
    .specs-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .data-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .data-label {
        margin-bottom: 10px;
        min-width: auto;
    }
    
    .data-value {
        text-align: left;
        width: 100%;
    }
    
    .color-options {
        justify-content: flex-start;
    }
    
    .capacity-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .loading-capacity .data-label {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .product-details-new-design {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .gallery-image img {
        height: 150px;
    }
    
    .gallery-image {
        padding: 15px;
    }
    
    .spec-image-card {
        padding: 20px;
    }
    
    .data-item {
        padding: 15px;
    }
}

/* Legacy Responsive Styles */
@media (max-width: 768px) {
    .product-details-content-box {
        padding: 20px;
    }
    
    .product-images-grid,
    .product-images-box {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .tech-spec-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .technical-data-table {
        font-size: 0.85rem;
    }
    
    .technical-data-table td {
        padding: 10px;
    }
    
    .technical-data-table .label-cell {
        width: auto;
    }
}

@media (max-width: 480px) {
    .product-details-section,
    .product-details-box {
        padding: 30px 0 40px;
    }
    
    .product-image-item .image-wrapper {
        height: 140px;
    }
    
    .color-dots {
        flex-wrap: wrap;
    }
}

/* ============================================
   CONTACT PAGE - Modern Style
   ============================================ */

/* Contact Page Font */
.contact-page-hero,
.contact-main,
.contact-page-hero *,
.contact-main * {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Contact Page Headings - Bold */
.contact-page-hero h1,
.contact-main h1,
.contact-main h2,
.contact-main h3,
.contact-main h4 {
    font-weight: 600;
}

/* Contact Hero Section */
.contact-page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

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

.contact-page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.contact-page-hero .hero-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side {
    padding-right: 20px;
}

.contact-info-side h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

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

.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.social-icons-row {
    display: flex;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: #0d7377;
    border-color: #0d7377;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form Side */
.contact-form-side {
    position: relative;
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-card > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0d7377;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0d7377;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.form-checkbox a {
    color: #0d7377;
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.3);
}

.btn-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        padding-right: 0;
    }
    
    .contact-page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        min-height: 350px;
        padding: 120px 0 60px;
    }
    
    .contact-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 30px 25px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-main {
        padding: 50px 0;
    }
    
    .contact-page-hero {
        min-height: 300px;
    }
    
    .contact-page-hero h1 {
        font-size: 1.75rem;
    }
    
    .form-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ========================================
   ABOUT US PAGE - INDUSTRIES STYLE
   ======================================== */

/* About Hero Section - Same as Industries */
.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/9c057f30-2e4d-4521-863e-1542862bf1f6.jpeg') no-repeat center center/cover;
    color: white;
    padding: 140px 0 80px;
    text-align: left;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.about-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.about-hero-section .hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-width: 650px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    hyphens: auto;
    word-wrap: break-word;
}

.about-hero-section .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-hero-section .hero-btn:hover {
    background: #2563eb;
    transform: translateX(5px);
}

.about-hero-section .hero-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.about-hero-section .hero-btn:hover i {
    transform: translateX(3px);
}

/* About Intro Section - Teal */
.about-intro-section {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    padding: 2rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.about-intro-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.about-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-intro-section .intro-nav {
    margin-bottom: 4rem;
}

.about-intro-section .intro-nav-list {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.about-intro-section .intro-nav-list li {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-intro-section .intro-nav-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-intro-section .intro-nav-list a:hover {
    color: white;
    text-decoration: underline;
}

.about-intro-section .intro-nav-list .separator {
    color: rgba(255,255,255,0.6);
}

.about-intro-section .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-section .purpose-ipl-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-intro-section .intro-content h2 {
    color: white;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-intro-section .intro-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* What We Do Section */
.about-what-we-do {
    padding: 5rem 0;
    background: #fff;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3d8b8b;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.what-we-do-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a365d;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.what-we-do-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-we-do-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.what-we-do-list li i {
    color: #3d8b8b;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.what-we-do-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.what-we-do-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 0;
}

/* Sustainable Impact Section - IPL Style Full Width */
.about-sustainable-impact-ipl {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/photorealistic-earth-planet.jpg') no-repeat center center/cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
}

.sustainable-ipl-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.sustainable-ipl-content h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    max-width: 550px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sustainable-ipl-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-sustainable-ipl {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-sustainable-ipl:hover {
    background: #2563eb;
    transform: translateX(5px);
}

.btn-sustainable-ipl i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-sustainable-ipl:hover i {
    transform: translateX(3px);
}

/* Key Facts & Figures Section */
.about-key-facts {
    padding: 5rem 0;
    background: #fff;
}

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

.explore-history-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3d8b8b;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.explore-history-link:hover {
    color: #2d6b6b;
}

.explore-history-link i {
    transition: transform 0.3s ease;
}

.explore-history-link:hover i {
    transform: translateX(5px);
}

.key-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fact-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.fact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.fact-number {
    font-size: 4rem;
    font-weight: 300;
    color: #3d8b8b;
    margin-bottom: 1rem;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fact-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Purpose & Ambition Section - IPL Style */
.about-purpose-ipl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: #ffffff;
}

.purpose-ipl-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 2rem;
}

.purpose-ipl-image img {
    width: 110%;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.purpose-ipl-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ffffff;
}

.purpose-ipl-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.purpose-ipl-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.purpose-ipl-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-purpose-ipl {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-purpose-ipl:hover {
    background: #2563eb;
    transform: translateX(5px);
}

.btn-purpose-ipl i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-purpose-ipl:hover i {
    transform: translateX(3px);
}

.purpose-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.purpose-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 0;
    background: #3d8b8b;
    position: relative;
    overflow: hidden;
}

.cta-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0,0,0,0.05) 0%, transparent 30%);
    pointer-events: none;
}

.about-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-left .section-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.cta-left h2 {
    font-size: 2.75rem;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-right {
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.cta-right p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #3d8b8b;
    padding: 0.75rem 0.75rem 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-about-cta span {
    transition: transform 0.3s ease;
}

.btn-icon-circle {
    width: 40px;
    height: 40px;
    background: #3d8b8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon-circle i {
    color: white;
    font-size: 0.875rem;
}

.btn-about-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-about-cta:hover .btn-icon-circle {
    background: #2d6b6b;
}

.btn-about-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-about-cta i {
    transition: transform 0.3s ease;
}

.btn-about-cta:hover i {
    transform: translateX(5px);
}

/* ========================================
   PURPOSE & AMBITION PAGE STYLES
   ======================================== */

/* Values Section */
.purpose-values-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-top: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.value-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #3d8b8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a365d;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.value-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Circular Economy Section */
.purpose-circular-section {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), 
                url('images/thicket-dark-wet-grass.jpg') no-repeat center center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.circular-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.circular-content .left-content {
    display: flex;
    flex-direction: column;
}

.circular-content .right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-label-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.circular-content h2 {
    font-size: 2.75rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    max-width: 600px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.circular-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-circular {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-circular:hover {
    background: #2563eb;
    transform: translateX(5px);
}

.btn-circular i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-circular:hover i {
    transform: translateX(3px);
}

/* Contact Form Section */
.purpose-contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-info h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1a365d;
    margin: 1rem 0 1.5rem;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-form-info p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #3d8b8b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-item span {
    font-size: 1rem;
    color: #4a5568;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.purpose-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.purpose-contact-form .form-group {
    margin-bottom: 1.25rem;
}

.purpose-contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.purpose-contact-form input,
.purpose-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.purpose-contact-form input:focus,
.purpose-contact-form textarea:focus {
    outline: none;
    border-color: #3d8b8b;
    background: white;
    box-shadow: 0 0 0 3px rgba(61, 139, 139, 0.1);
}

.purpose-contact-form input::placeholder,
.purpose-contact-form textarea::placeholder {
    color: #a0aec0;
}

.purpose-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #3d8b8b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-form-submit:hover {
    background: #2d6b6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 139, 139, 0.3);
}

.btn-form-submit i {
    font-size: 0.9rem;
}

/* Purpose Page Responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-header h2 {
        font-size: 2rem;
    }
    
    .circular-content h2 {
        font-size: 2rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .purpose-circular-section {
        min-height: auto;
    }
    
    .circular-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .purpose-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .values-header h2 {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .circular-content h2 {
        font-size: 1.75rem;
    }
    
    .circular-content p {
        font-size: 1rem;
    }
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .what-we-do-grid,
    .sustainable-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .what-we-do-content h2,
    .sustainable-content h2,
    .purpose-content h2,
    .about-cta-content h2 {
        font-size: 2rem;
    }
    
    .key-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fact-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 120px 0 60px;
        height: 400px;
    }

    .about-hero-section h1 {
        font-size: 2.5rem;
    }

    .about-hero-section .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .about-intro-section .intro-content h2 {
        font-size: 1.75rem;
    }

    .about-intro-section .intro-content p {
        font-size: 1rem;
    }
    
    .about-what-we-do,
    .about-key-facts,
    .about-cta-section {
        padding: 3.5rem 0;
    }
    
    .about-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-left h2 {
        font-size: 2rem;
    }
    
    .cta-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 2rem;
    }
    
    .about-sustainable-impact-ipl {
        min-height: 350px;
    }
    
    .sustainable-ipl-content h2 {
        font-size: 2rem;
    }
    
    .about-purpose-ipl {
        grid-template-columns: 1fr;
    }
    
    .purpose-ipl-image {
        height: 300px;
    }
    
    .purpose-ipl-content {
        padding: 3rem 2rem;
    }
    
    .purpose-ipl-content h2 {
        font-size: 2rem;
    }
    
    .what-we-do-image img {
        height: 320px;
    }
    
    .key-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .key-facts-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fact-card {
        padding: 2rem;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .what-we-do-content h2,
    .sustainable-content h2,
    .purpose-content h2,
    .about-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .what-we-do-list li {
        font-size: 0.95rem;
    }
    
    .sustainable-content p,
    .purpose-content p,
    .about-cta-content p {
        font-size: 1rem;
    }
}

/* ========================================
   OUR TEAM PAGE STYLES
   ======================================== */

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.team-header .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3d8b8b;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-linkedin {
    width: 40px;
    height: 40px;
    background: #0077b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-linkedin:hover {
    background: #005885;
    transform: scale(1.1);
}

.team-linkedin i {
    font-size: 1rem;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: #f8fafc;
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.team-role {
    font-size: 0.9rem;
    color: #3d8b8b;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Team Page Responsive */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .team-section {
        padding: 3rem 0;
    }
    
    .team-header {
        margin-bottom: 2.5rem;
    }
    
    .team-header h2 {
        font-size: 1.75rem;
    }
}

/* ========================================
   OUR HISTORY PAGE STYLES
   ======================================== */

/* Timeline Section */
.history-timeline-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.timeline-header .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3d8b8b;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #3d8b8b, #14919b);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d8b8b;
    text-align: center;
    padding: 0.5rem 1rem;
    background: #ffffff;
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.timeline-item:nth-child(odd) .timeline-year {
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 0 2rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.timeline-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Legacy Section */
.history-legacy-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.legacy-content .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3d8b8b;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legacy-content h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legacy-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legacy-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #3d8b8b;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.legacy-quote i {
    color: #3d8b8b;
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.legacy-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #1a1a2e;
    line-height: 1.7;
    margin: 0;
    padding-left: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legacy-quote cite {
    display: block;
    margin-top: 1rem;
    padding-left: 2rem;
    font-size: 0.9rem;
    color: #3d8b8b;
    font-style: normal;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.legacy-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.legacy-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #3d8b8b;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.legacy-badge .badge-year {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legacy-badge .badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* History CTA Section */
.history-cta-section {
    padding: 5rem 0;
    background: #1a1a2e;
    text-align: center;
}

.history-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.history-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-history-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3d8b8b;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-history-cta:hover {
    background: #2d6b6b;
    transform: translateX(5px);
}

.btn-history-cta i {
    transition: transform 0.3s ease;
}

.btn-history-cta:hover i {
    transform: translateX(3px);
}

/* History Page Responsive */
@media (max-width: 992px) {
    .timeline-header h2 {
        font-size: 2rem;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .legacy-content h2 {
        font-size: 2rem;
    }
    
    .legacy-image-wrapper img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        flex: none;
        width: 60px;
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 0.5rem;
    }
    
    .history-legacy-section {
        padding: 3rem 0;
    }
    
    .legacy-content h2 {
        font-size: 1.75rem;
    }
    
    .legacy-quote blockquote {
        font-size: 1rem;
    }
    
    .legacy-image-wrapper img {
        height: 300px;
    }
    
    .legacy-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .legacy-badge .badge-number {
        font-size: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .history-cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .history-timeline-section {
        padding: 3rem 0;
    }
    
    .timeline-header {
        margin-bottom: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* ============================================
   SUSTAINABILITY PAGE - IPL Style
   ============================================ */

/* Sustainability Hero Section */
.sustainability-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.sustainability-hero-section .container {
    max-width: 900px;
}

.sustainability-hero-section .hero-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.sustainability-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.sustainability-hero-section .hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-hero-section .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #16a89a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sustainability-hero-section .hero-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sustainability-hero-section .hero-btn i {
    transition: transform 0.3s ease;
}

.sustainability-hero-section .hero-btn:hover i {
    transform: translateX(3px);
}

/* Sustainability Intro Section */
.sustainability-intro-section {
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    padding: 3rem 0 5rem;
    color: #ffffff;
}

.sustainability-intro-section .intro-nav {
    margin-bottom: 2rem;
}

.sustainability-intro-section .intro-nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustainability-intro-section .intro-nav-list li {
    font-size: 0.85rem;
    opacity: 0.9;
}

.sustainability-intro-section .intro-nav-list a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sustainability-intro-section .intro-nav-list a:hover {
    opacity: 0.7;
}

.sustainability-intro-section .intro-nav-list .separator {
    opacity: 0.6;
}

.sustainability-intro-section .intro-content {
    max-width: 800px;
}

.sustainability-intro-section .intro-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.sustainability-intro-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.sustainability-intro-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.sustainability-intro-section .btn-intro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #4da6ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sustainability-intro-section .btn-intro:hover {
    background: #3d96ef;
    transform: translateY(-2px);
}

.sustainability-intro-section .btn-intro i {
    transition: transform 0.3s ease;
}

.sustainability-intro-section .btn-intro:hover i {
    transform: translateX(3px);
}

/* Key Pillars Section */
.sustainability-pillars-section {
    padding: 5rem 0;
    background: #ffffff;
}

.sustainability-pillars-section .pillars-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sustainability-pillars-section .pillars-header h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 1rem;
}

.sustainability-pillars-section .pillars-header p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

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

.pillar-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #16a89a;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #16a89a 0%, #14a08e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Sustainability Detail Sections */
.sustainability-detail-section {
    padding: 5rem 0;
}

.sustainability-detail-section.decarbonisation-section {
    background: #f8fafc;
}

.sustainability-detail-section.circularity-section {
    background: #f8fafc;
}

.sustainability-detail-section.people-section {
    background: #f8fafc;
}

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

.sustainability-detail-section.alt-layout .detail-grid {
    direction: rtl;
}

.sustainability-detail-section.alt-layout .detail-grid > * {
    direction: ltr;
}

.detail-content {
    max-width: 550px;
}

.detail-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16a89a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-content h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.detail-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.detail-list li i {
    color: #16a89a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #16a89a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #14a08e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 168, 154, 0.3);
}

.btn-detail i {
    transition: transform 0.3s ease;
}

.btn-detail:hover i {
    transform: translateX(3px);
}

.detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Sustainability Highlight Section */
.sustainability-highlight-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(51, 65, 85, 0.85)), 
                url('images/All Pictures/Small Containers/small-plastic-pallet-box-001.jpg') center/cover no-repeat;
    color: #ffffff;
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.highlight-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #16a89a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-highlight:hover {
    background: #14a08e;
    transform: translateY(-2px);
}

.btn-highlight i {
    transition: transform 0.3s ease;
}

.btn-highlight:hover i {
    transform: translateX(3px);
}

/* Why Sustainability Section */
.sustainability-why-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('images/ChatGPT Image Dec 31, 2025, 11_35_23 PM.png') center/cover no-repeat;
}

.why-header {
    margin-bottom: 2rem;
}

.why-header .section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16a89a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-header h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1e293b;
    line-height: 1.3;
}

.why-content {
    max-width: 800px;
}

.why-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-why {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #16a89a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-why:hover {
    background: #14a08e;
    transform: translateY(-2px);
}

.btn-why i {
    transition: transform 0.3s ease;
}

.btn-why:hover i {
    transform: translateX(3px);
}

/* Solutions Section */
.sustainability-solutions-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.sustainability-solutions-section h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

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

.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: #16a89a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.solution-item i {
    font-size: 1.5rem;
    color: #16a89a;
    flex-shrink: 0;
}

.solution-item span {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Case Study Section */
.sustainability-case-study-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.case-study-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-study-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.case-study-content {
    max-width: 500px;
}

.case-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #16a89a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-study-content h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.case-study-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-case {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #16a89a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-case:hover {
    background: #14a08e;
    transform: translateY(-2px);
}

.btn-case i {
    transition: transform 0.3s ease;
}

.btn-case:hover i {
    transform: translateX(3px);
}

/* FAQ Section */
.sustainability-faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.sustainability-faq-section h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.sustainability-faq-section .faq-intro {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #16a89a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* Partner CTA Section */
.sustainability-partner-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d7377 0%, #14919b 100%);
    color: #ffffff;
}

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

.partner-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.partner-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.partner-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #16a89a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-partner i {
    transition: transform 0.3s ease;
}

.btn-partner:hover i {
    transform: translateX(3px);
}

/* Sustainability Page Responsive */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-grid,
    .case-study-grid {
        gap: 3rem;
    }
    
    .sustainability-hero-section h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .sustainability-hero-section {
        min-height: 60vh;
        padding: 7rem 1.5rem 3rem;
    }
    
    .sustainability-hero-section h1 {
        font-size: 2.25rem;
    }
    
    .sustainability-hero-section .hero-description {
        font-size: 1rem;
    }
    
    .sustainability-intro-section h2 {
        font-size: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .detail-grid,
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sustainability-detail-section.alt-layout .detail-grid {
        direction: ltr;
    }
    
    .detail-content,
    .case-study-content {
        max-width: 100%;
    }
    
    .detail-content h2,
    .case-study-content h2 {
        font-size: 1.75rem;
    }
    
    .detail-image img,
    .case-study-image img {
        height: 280px;
    }
    
    .highlight-content h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-content h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sustainability-hero-section h1 {
        font-size: 1.875rem;
    }
    
    .sustainability-intro-section h2 {
        font-size: 1.75rem;
    }
    
    .sustainability-pillars-section .pillars-header h2,
    .sustainability-solutions-section h2,
    .sustainability-faq-section h2 {
        font-size: 1.75rem;
    }
    
    .detail-content h2,
    .case-study-content h2,
    .why-header h2 {
        font-size: 1.5rem;
    }
    
    .highlight-content h2,
    .partner-content h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   JOIN US / CAREERS PAGE STYLES
   ============================================ */

/* Benefits Section */
.join-us-benefits {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.benefits-header h2 {
    color: #1a365d;
    margin-top: 0.5rem;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #16a89a 0%, #0d8a7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Application Form Section */
.join-us-form-section {
    padding: 5rem 0;
    background: white;
}

.form-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.form-info {
    position: sticky;
    top: 120px;
}

.form-info h2 {
    color: #1a365d;
    margin: 0.5rem 0 1rem;
    font-size: 2.25rem;
}

.form-info > p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.form-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-contact-info .contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #16a89a 0%, #0d8a7e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.form-contact-info .contact-item strong {
    display: block;
    color: #1a365d;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.form-contact-info .contact-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Application Form Wrapper */
.application-form-wrapper {
    position: relative;
}

.application-form {
    max-width: 100%;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.file-upload-box:hover,
.file-upload-wrapper:hover .file-upload-box {
    border-color: #3b82f6;
    background: #f0f7ff;
}

.file-upload-box i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.file-upload-box p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.file-upload-box p span {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
}

.file-upload-box small {
    color: #94a3b8;
    font-size: 0.8rem;
}

.file-name-display {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: #e8f5e9;
    border-radius: 8px;
    color: #2e7d32;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.file-name-display.show {
    display: flex;
}

.file-name-display::before {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

/* Responsive Styles for Join Us Page */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .join-us-benefits {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .join-us-form-section {
        padding: 3rem 0;
    }
    
    .form-info h2 {
        font-size: 1.75rem;
    }
    
    .form-row-ipl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .file-upload-box {
        padding: 1.5rem 1rem;
    }
    
    .file-upload-box i {
        font-size: 2rem;
    }
}

/* ============================================
   PALLETCO-STYLE PRODUCT CATEGORY PAGES
   ============================================ */

/* Thin Panoramic Hero Section */
.product-category-hero {
    background: linear-gradient(135deg, #16a89a 0%, #14a08e 100%);
    padding: 100px 0;
    position: relative;
    color: white;
    text-align: center;
}

.product-category-hero .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.product-category-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-category-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.product-category-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Minimalist Product Grid */
.product-category-section {
    padding: 40px 0 80px;
    background: #f5f5f5;
}

.product-category-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card-minimal {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.product-card-minimal-image {
    aspect-ratio: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-card-minimal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-minimal:hover .product-card-minimal-image img {
    transform: scale(1.02);
}

/* Product Card Content - moves up on hover */
.product-card-minimal-content {
    padding: 20px;
    text-align: left;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.product-card-minimal:hover .product-card-minimal-content {
    transform: translateY(-60px);
}

.product-card-minimal-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card-minimal-content .product-dimensions {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
    text-transform: uppercase;
}

/* Hover Actions - slides up from bottom */
.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.product-card-minimal:hover .product-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card-actions .btn-read-more {
    flex: 1;
    background: #e8a87c;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s ease;
}

.product-card-actions .btn-read-more:hover {
    background: #d35400;
}

.product-card-actions .btn-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
}

.product-card-actions .btn-icon:hover {
    background: #f0f0f0;
    color: #e67e22;
}

/* Category Card Styles */
.category-card {
    text-decoration: none;
    display: block;
}

.category-card .product-card-minimal-image {
    background: #ffffff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.category-card .product-card-minimal-image img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
}

.category-card .product-card-minimal-content {
    padding: 15px 20px;
    background: #ffffff;
}

.category-card .product-card-minimal-content h3 {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

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

/* ============================================
   CUSTOM MOLDING & PACKAGING SOLUTIONS STYLES
   ============================================ */

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

.capability-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.capability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a89a 0%, #14919b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.capability-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.capability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.capability-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #16a89a, transparent);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #16a89a 0%, #14919b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
}

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

.industry-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f4fc 0%, #f0f7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon i {
    font-size: 1.75rem;
    color: #16a89a;
}

.industry-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.industry-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.solution-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.solution-image {
    height: 250px;
    overflow: hidden;
}

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

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

.solution-content {
    padding: 2.5rem;
}

.solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.solution-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.solution-features i {
    color: #16a89a;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a89a 0%, #14919b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(22, 168, 154, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #16a89a, #14919b);
    z-index: 0;
}

.process-step-flow {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step-flow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a89a 0%, #14919b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.process-step-flow h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.process-step-flow p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content .lead-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #64748b;
}

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

.btn-ipl-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #16a89a 0%, #14919b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ipl-primary:hover {
    background: linear-gradient(135deg, #14919b 0%, #0d7377 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 168, 154, 0.3);
}

.btn-ipl-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #16a89a;
    text-decoration: none;
    border: 2px solid #16a89a;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-ipl-secondary:hover {
    background: #16a89a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 168, 154, 0.3);
}

/* Section Headers */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header-center .lead-text {
    font-size: 1.25rem;
    color: #64748b;
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Left Content */
.hero-left-content {
    text-align: left;
    max-width: 400px;
    margin-top: 4rem;
    margin-left: -9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-left-content h1 {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.hero-left-content .hero-subheading {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
}

.hero-left-content .btn-ipl-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #16a89a 0%, #14919b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.hero-left-content .btn-ipl-primary:hover {
    background: linear-gradient(135deg, #14919b 0%, #0d7377 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 168, 154, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-grid-minimal {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-flow::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .product-category-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        max-width: 100%;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-ipl-primary,
    .btn-ipl-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-card {
        padding: 2rem;
    }
    
    .solution-content {
        padding: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        height: 2rem;
        top: 50px;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .section-header-center .lead-text {
        font-size: 1.125rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content .lead-text {
        font-size: 1.125rem;
    }
    
    .hero-left-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-left-content .hero-subheading {
        font-size: 0.85rem;
    }
    
    .hero-left-content .btn-ipl-primary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .capability-card {
        padding: 1.5rem;
    }
    
    .solution-content {
        padding: 1.5rem;
    }
    
    .industry-item {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .process-step-flow {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
    }
    
    .capability-icon i {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon i {
        font-size: 1.5rem;
    }

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

@media (max-width: 576px) {
    .product-category-hero {
        padding: 50px 0;
    }
    
    .product-category-hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .product-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card-minimal-content {
        padding: 12px 15px 15px;
    }
}

