/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e4b5ff 0%, #006cf8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #0167ff;
    border-right-color: #ffffff;
    box-shadow: 0 0 20px #ff0000;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-top-color: #4ecdc4;
    border-right-color: #45b7d1;
    box-shadow: 0 0 20px #4ecdc4;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: #ff9ff3;
    border-right-color: #96ceb4;
    box-shadow: 0 0 20px #ff9ff3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #4299e1;
    --text-dark: #1a202c;
    --text-light: #718096;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-text: #1a202c;
    --nav-border: rgba(0, 0, 0, 0.1);
    --nav-hover: rgba(102, 126, 234, 0.1);
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e2e8f0;
}

[data-theme="dark"] {
    --primary-color: #60a5fa;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-dark: #f1f5f9;
    --text-light: #cbd5e1;
    --white: #0f172a;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.4);
    --nav-text: #f1f5f9;
    --nav-border: rgba(255, 255, 255, 0.1);
    --nav-hover: rgba(59, 130, 246, 0.2);
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 70px;
}

/* Clean Light 3D Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: start;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-icon:hover {
    transform: rotateY(10deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.2);
}

.logo-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.logo-text h2 {
    color: var(--nav-text);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
    margin-top: -2px;
}

[data-theme="dark"] .logo-text h2 {
    color: #f1f5f9;
}

[data-theme="dark"] .logo-text span {
    color: #cbd5e1;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: transparent;
}

.nav-menu > li > a:hover {
    background: var(--nav-hover);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    font-weight: 700;
}

.nav-menu > li > a i {
    font-size: 0.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown > a .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 300px;
}

.mega-dropdown .mega-menu {
    min-width: 600px;
}

/* Products Hierarchical Dropdown */
.products-mega-menu {
    min-width: 700px !important;
}

.category-link {
    position: relative;
    cursor: pointer;
}

.category-link .fa-chevron-right {
    margin-left: auto;
    font-size: 0.7rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.category-link:hover .fa-chevron-right {
    opacity: 1;
    transform: translateX(3px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.product-actions {
    margin-top: auto;
    padding-top: 1rem;
}

/* Product Detail Page */
.product-detail-content {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.product-detail-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-detail-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 1rem;
}

.product-features li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.mega-menu-content {
    display: flex;
    padding: 2rem;
    gap: 2rem;
}

.menu-column {
    flex: 1;
}

.menu-column h4 {
    color: var(--nav-text);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    opacity: 0.9;
}

.menu-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--nav-text);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.menu-column a:hover {
    background: var(--nav-hover);
    color: var(--accent-color);
    transform: translateX(6px);
    opacity: 1;
    font-weight: 700;
}

.menu-column a i {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 16px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.dark-mode-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--nav-border);
    background: var(--nav-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.dark-mode-toggle:hover {
    background: var(--nav-hover);
    transform: scale(1.1);
}

.dark-mode-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

[data-theme="dark"] .dark-mode-toggle .toggle-icon::before {
    content: '☀️';
}

[data-theme="light"] .dark-mode-toggle .toggle-icon::before {
    content: '🌙';
}

.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    z-index: 1001;
}

.nav-toggle:hover {
    background: var(--nav-hover);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 20px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--nav-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* Mobile Menu Improvements */
.mobile-menu {
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    width: calc(100% - 40px);
    max-width: 500px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-item {
    margin-bottom: 0.8rem;
}

.mobile-menu-item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--nav-text);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
}

.mobile-menu-item > a:hover {
    background: var(--nav-hover);
    color: var(--accent-color);
    transform: translateX(4px);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
    margin-left: 16px;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: var(--nav-text);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    margin-bottom: 4px;
    opacity: 0.8;
}

.mobile-submenu a:hover {
    background: var(--nav-hover);
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(4px);
}

.mobile-menu-item .fa-chevron-down {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu {
        top: 85px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 100px);
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 78px;
        width: calc(100% - 16px);
        max-height: calc(100vh - 90px);
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-menu-item > a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .mobile-submenu a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.1"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.05"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.hero .hero-buttons .btn-primary,
.hero .hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    border: none;
    cursor: pointer;
}

.hero .hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #3b82f6;
}

.hero .hero-buttons .btn-primary:hover,
.hero .hero-buttons .btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.6);
}

/* Modern 3D Ink Splash Buttons */
.hero .btn-primary, .hero .btn-secondary {
    position: relative;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px 20px 50px 20px;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.hero .btn-primary {
    background: conic-gradient(from 45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
    color: white;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #1a365d 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
}

.hero .btn-primary::before, .hero .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    opacity: 0;
}

.hero .btn-primary:hover::before, .hero .btn-secondary:hover::before {
    width: 400px;
    height: 400px;
    opacity: 1;
    animation: inkSplash 0.8s ease-out;
}

.hero .btn-primary:hover, .hero .btn-secondary:hover {
    transform: translateY(-12px) rotateX(20deg) scale(1.08);
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.6), 0 0 30px rgba(255, 107, 107, 0.3);
    filter: brightness(1.2) saturate(1.3);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.hero .btn-secondary:hover {
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.6), 0 0 30px rgba(102, 126, 234, 0.4);
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
}

.hero .btn-primary span, .hero .btn-secondary span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover span, .hero .btn-secondary:hover span {
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-20px) rotateX(15deg) rotateY(10deg) scale(1.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 40px rgba(102, 126, 234, 0.3);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.card-1 {
    top: 40px;
    left: 150px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 190px;
    right: 10px;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 2%;
    left: 80px;
    animation: float 6s ease-in-out infinite 4s;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

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

/* Clean Responsive Design */
@media (max-width: 1400px) {
    .hero-wrapper {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .visual-element {
        width: 500px;
        height: 500px;
    }
    
    .element-logo {
        width: 180px;
        height: 150px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        width: calc(100% - 30px);
        top: 15px;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        height: 70px;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu > li > a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .mega-dropdown .mega-menu {
        min-width: 500px;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .hero-wrapper {
        gap: 2rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .visual-element {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        width: calc(100% - 20px);
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu > li > a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .modern-description {
        max-width: 100%;
        margin: 0 auto 3rem;
    }
    
    .visual-element {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .element-logo {
        width: 150px;
        height: 120px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        height: 70px;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 65px;
        grid-template-columns: auto 1fr auto;
    }
    
    .nav-controls {
        gap: 0.5rem;
    }
    
    .mobile-menu {
        top: 85px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 100px);
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .modern-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-wrapper {
        padding: 0 1.5rem;
        padding-top: 20px;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    .title-sub {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .modern-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .modern-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .visual-element {
        width: 280px;
        height: 280px;
    }
    
    .element-logo {
        width: 120px;
        height: 100px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 16px);
        top: 8px;
        border-radius: 15px;
    }
    
    .nav-container {
        padding: 0 0.8rem;
        height: 60px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
    
    .theme-switch {
        width: 36px;
        height: 36px;
    }
    
    .mobile-menu {
        top: 78px;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-sub {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .modern-description {
        font-size: 0.9rem;
    }
    
    .modern-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .visual-element {
        width: 220px;
        height: 220px;
    }
    
    .element-logo {
        width: 100px;
        height: 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
/* Hero with Image */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
    animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

.page-hero h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, white, transparent);
    border-radius: 2px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Sustainability Sections */
.sustainability-sections {
    margin: 4rem 0;
}

.sustainability-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.sustainability-section.reverse {
    direction: rtl;
}

.sustainability-section.reverse > * {
    direction: ltr;
}

.section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.section-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.section-content ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .sustainability-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sustainability-section.reverse {
        direction: ltr;
    }
    
    .section-image img {
        height: 250px;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .cert-logos {
        gap: 2rem;
    }
    
    .cert-logos img {
        height: 60px;
        max-width: 100px;
    }
    
    .cert-logos-horizontal {
        gap: 2rem;
    }
    
    .cert-logo-item img {
        height: 60px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .section-image img {
        height: 200px;
    }
    
    .cert-logos {
        gap: 1.5rem;
    }
    
    .cert-logos img {
        height: 50px;
        max-width: 80px;
    }
    
    .cert-logos-horizontal {
        gap: 1.5rem;
    }
    
    .cert-logo-item img {
        height: 50px;
        max-width: 100px;
    }
}
/* Director Images */
.director-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Award Images */
.award-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* Certification Logos */
.certification-logos {
    margin-top: 4rem;
    text-align: center;
}

.certification-logos h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logos-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Modern Certifications Section */
.certifications-section {
    padding: 3rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--nav-border);
    transition: background-color 0.3s ease;
}

.certifications-section h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
}

.certifications-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 70px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.85);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cert-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .cert-logos {
        gap: 2rem;
    }
    
    .cert-logos img {
        height: 60px;
        max-width: 100px;
    }
}

[data-theme="dark"] .cert-logos img {
    background: rgba(255, 255, 255, 0.1);
    filter: grayscale(20%) opacity(0.75) brightness(0.9);
}

[data-theme="dark"] .cert-logos img:hover {
    background: rgba(255, 255, 255, 0.15);
    filter: grayscale(0%) opacity(1) brightness(1);
}

/* Certification Logos Section */
.cert-logos-section {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--nav-border);
}

.cert-logos-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

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

.cert-logos-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cert-logo-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.cert-logo-item:nth-child(1) { animation-delay: 0.1s; }
.cert-logo-item:nth-child(2) { animation-delay: 0.2s; }
.cert-logo-item:nth-child(3) { animation-delay: 0.3s; }
.cert-logo-item:nth-child(4) { animation-delay: 0.4s; }

.cert-logo-item img {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.85);
    transition: all 0.4s ease;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cert-logo-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

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

@media (max-width: 768px) {
    .cert-logos-horizontal {
        gap: 2rem;
    }
    
    .cert-logo-item img {
        height: 60px;
        max-width: 120px;
    }
}

[data-theme="dark"] .cert-logo-item img {
    background: rgba(255, 255, 255, 0.1);
    filter: grayscale(30%) opacity(0.75) brightness(0.9);
}

[data-theme="dark"] .cert-logo-item img:hover {
    background: rgba(255, 255, 255, 0.15);
    filter: grayscale(0%) opacity(1) brightness(1);
}
/* Story Grid Layout */
.story-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.story-card:hover::before {
    opacity: 1;
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse > * {
    direction: ltr;
}

.story-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover .story-image {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

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

.story-content-text {
    padding: 1rem;
}

.story-year {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.story-content-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-content-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Story Timeline Images */
.timeline-image {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Vision Mission Cards */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.vision-card, .mission-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.vision-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.mission-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.vision-card h3, .mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
    }
}

/* Modern Card Styles */
.modern-card {
    background: var(--bg-primary);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--nav-border);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.modern-card:hover::before {
    opacity: 1;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1400px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.award-card {
    background: var(--bg-primary);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.award-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--accent-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-card:hover::after {
    opacity: 1;
}

.award-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.award-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.03) 100%);
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover .award-image img {
    transform: scale(1.1) rotate(1deg);
}

.award-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 1rem 1rem 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.award-card:hover h3 {
    color: var(--accent-color);
}

.award-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0 1rem 1rem;
    position: relative;
}

/* Directors Grid - One Line Layout */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.director-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.director-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.director-card:hover::before {
    opacity: 1;
}

.director-card:hover .director-image {
    transform: scale(1.1);
}

.director-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.director-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.director-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotateY(180deg);
}

.industry-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.industry-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

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

/* Indenting Services */
.indenting-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

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

/* Industries and Indenting Content */
.industries-content,
.indenting-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

[data-theme="dark"] .industries-content,
[data-theme="dark"] .indenting-content {
    background: var(--bg-secondary);
}

.industries-content::before,
.indenting-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.05"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.02"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    margin: 4rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Sustainability Grid */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.sustainability-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sustainability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sustainability-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.sustainability-card:hover::before {
    opacity: 1;
}

.sustainability-card:hover .sustainability-icon {
    transform: scale(1.2) rotateY(180deg);
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sustainability-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotateY(180deg);
}

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

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.product-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.05"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.02"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.content-intro {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.content-intro::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.content-intro h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.content-intro p {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Page Specific Styles */
.awards-content,
.directors-content,
.story-content,
.sustainability-content,
.products-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.awards-content::before,
.directors-content::before,
.story-content::before,
.sustainability-content::before,
.products-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.05"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.02"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.05"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.02"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

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

.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before,
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-card:hover::before,
.contact-form-card:hover::before {
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
}

.contact-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
    color: var(--text-light);
}

.modern-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.modern-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Product Hero Section */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-image-section {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.product-info-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-info-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pdf-download {
    background: var(--gradient) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
}

.pdf-download:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
}

/* Product Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Design for New Elements */
@media (max-width: 1400px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .directors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid,
    .industries-grid,
    .indenting-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .story-card.reverse {
        direction: ltr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .awards-grid,
    .directors-grid,
    .sustainability-grid,
    .product-grid,
    .industries-grid,
    .indenting-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-info-section h2 {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .product-actions a,
    .product-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .story-card.reverse {
        direction: ltr;
    }
    
    .story-image {
        height: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 1rem 0 !important;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
    }
    
    .page-hero {
        padding: 140px 0 70px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .content-intro h2 {
        font-size: 2.2rem;
    }
    
    .content-intro p {
        font-size: 1rem;
    }
    
    .director-card {
        padding: 1.5rem;
    }
    
    .director-info h3 {
        font-size: 1.2rem;
    }
    
    .director-description {
        font-size: 0.85rem;
    }
    
    .industry-card,
    .service-card,
    .sustainability-card {
        padding: 1.5rem;
    }
    
    .industry-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feed-posts {
        grid-template-columns: 1fr;
    }
    
    .blog-feed {
        padding: 2rem;
    }
    
    .blog-feed h2 {
        font-size: 2rem;
    }
    
    .sustainability-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .sustainability-hero-content p {
        font-size: 1rem;
    }
    
    .pillar-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
    
    .initiative-image {
        height: 250px;
    }
    
    .commitment-box h2 {
        font-size: 2rem;
    }
    
    .commitment-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content-intro h2 {
        font-size: 1.8rem;
    }
    
    .content-intro p {
        font-size: 0.95rem;
    }
    
    .product-card,
    .industry-card,
    .service-card,
    .director-card,
    .award-card {
        padding: 1.2rem;
    }
    
    .product-card h3,
    .industry-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .story-card {
        padding: 1.2rem;
    }
    
    .story-image {
        height: 200px;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .modern-form input,
    .modern-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .modern-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-info-section h2 {
        font-size: 1.8rem;
    }
    
    .blog-feed h2 {
        font-size: 1.8rem;
    }
    
    .feed-post {
        padding: 1.2rem;
        min-height: auto;
    }
    
    .post-content h3 {
        font-size: 1.1rem;
    }
    
    .sustainability-hero-content h2 {
        font-size: 2rem;
    }
    
    .pillar-card {
        padding: 1.5rem 1rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .initiative-content {
        padding: 1.5rem;
    }
    
    .commitment-box h2 {
        font-size: 1.8rem;
    }
    
    .commitment-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}
/* Hero Text Styling */
.modern-title .title-main {
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.modern-title .title-sub {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.modern-description {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

/* Enhanced Logo 3D Animation */
.logo-icon {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.logo-text {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
/* Hero Video Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 1;
    z-index: 1;
}
/* Floating Cards Z-Index Fix */
.floating-card {
    z-index: 2;
}
/* Hero Background Video */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* Animated Box */
.animated-box {
    position: absolute;
    top: 100px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: boxFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.box-content {
    text-align: center;
    color: white;
}

.box-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.box-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.box-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes boxFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(10deg);
    }
}
/* Enhanced 3D Hero Animations */
.hero {
    transform-style: preserve-3d;
    perspective: 2000px;
}

.hero-content {
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-title {
    transform-style: preserve-3d;
    animation: titleRotate 12s linear infinite;
}

.title-line {
    animation: lineFloat 6s ease-in-out infinite;
}

.title-line:nth-child(2) {
    animation-delay: -2s;
}

.title-line:nth-child(3) {
    animation-delay: -4s;
}

.hero-buttons {
    transform-style: preserve-3d;
}

.btn-primary, .btn-secondary {
    animation: buttonFloat 4s ease-in-out infinite;
}

.btn-secondary {
    animation-delay: -2s;
}

.floating-card {
    animation: cardFloat3D 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: -2.5s;
}

.card-3 {
    animation-delay: -5s;
}

.hero-bg {
    animation: bgRotate 20s linear infinite;
}

/* 3D Keyframes */
@keyframes heroFloat {
    0%, 100% {
        transform: perspective(2000px) rotateX(0deg) rotateY(0deg) translateZ(0px);
    }
    25% {
        transform: perspective(2000px) rotateX(2deg) rotateY(1deg) translateZ(10px);
    }
    50% {
        transform: perspective(2000px) rotateX(0deg) rotateY(2deg) translateZ(20px);
    }
    75% {
        transform: perspective(2000px) rotateX(-2deg) rotateY(1deg) translateZ(10px);
    }
}

@keyframes titleRotate {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

@keyframes lineFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}

@keyframes buttonFloat {
    0%, 100% {
        transform: perspective(500px) translateY(0px) rotateX(0deg) translateZ(0px);
    }
    50% {
        transform: perspective(500px) translateY(-5px) rotateX(10deg) translateZ(20px);
    }
}

@keyframes cardFloat3D {
    0%, 100% {
        transform: perspective(1000px) translateY(0px) rotateX(0deg) rotateY(0deg) translateZ(0px);
    }
    33% {
        transform: perspective(1000px) translateY(-20px) rotateX(10deg) rotateY(15deg) translateZ(30px);
    }
    66% {
        transform: perspective(1000px) translateY(-10px) rotateX(-5deg) rotateY(-10deg) translateZ(20px);
    }
}

@keyframes bgRotate {
    0% {
        transform: perspective(2000px) rotateZ(0deg);
    }
    100% {
        transform: perspective(2000px) rotateZ(360deg);
    }
}
/* Ink Splash 3D Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
    animation: inkSplash 0.8s ease-out;
}

.btn-primary:hover {
    transform: perspective(1000px) rotateX(-15deg) rotateY(15deg) translateY(-10px) translateZ(30px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.3);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #1a365d, #2d5a87, #4299e1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
}

.btn-secondary:hover::after {
    width: 350px;
    height: 350px;
    opacity: 1;
    animation: inkSplash2 0.9s ease-out;
}

.btn-secondary:hover {
    color: white;
    transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) translateY(-10px) translateZ(30px);
    box-shadow: 0 30px 60px rgba(26, 54, 93, 0.6);
    border-color: transparent;
}

/* Ink Splash Animations */
@keyframes inkSplash {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
        opacity: 1;
    }
}

@keyframes inkSplash2 {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 0;
    }
    30% {
        transform: translate(-50%, -50%) scale(0.8) rotate(120deg);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.3) rotate(240deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
        opacity: 1;
    }
}
/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-logo .logo-text span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

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

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

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info p a {
    color: inherit;
    text-decoration: none;
}

.contact-info i {
    width: 16px;
}

.footer-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* Modern 3D Ink Splash Buttons */
.hero .btn-primary, .hero .btn-secondary {
    position: relative;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn-primary {
    background: conic-gradient(from 45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
    color: white;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #1a365d 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.hero .btn-primary::before, .hero .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    opacity: 0;
}

.hero .btn-primary::after, .hero .btn-secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero .btn-primary:hover::before, .hero .btn-secondary:hover::before {
    width: 400px;
    height: 400px;
    opacity: 1;
    animation: inkSplash 0.8s ease-out;
}

.hero .btn-primary:hover::after, .hero .btn-secondary:hover::after {
    opacity: 1;
}

.hero .btn-primary:hover, .hero .btn-secondary:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4), 0 0 20px rgba(255, 107, 107, 0.2);
    filter: brightness(1.1) saturate(1.2);
}

.hero .btn-secondary:hover {
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.4), 0 0 20px rgba(102, 126, 234, 0.3);
}

.hero .btn-primary span, .hero .btn-secondary span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover span, .hero .btn-secondary:hover span {
    transform: scale(1.02);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes inkSplash {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

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

.hero .btn-primary:active, .hero .btn-secondary:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ink-animation {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ink-splash {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.ink-animation:hover .ink-splash {
    animation: splashEffect 1.5s ease-out;
}

.ink-splash:nth-child(1) {
    background: #ff6b6b;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.ink-splash:nth-child(2) {
    background: #4ecdc4;
    top: 20%;
    right: 25%;
    animation-delay: 0.1s;
}

.ink-splash:nth-child(3) {
    background: #45b7d1;
    bottom: 30%;
    left: 15%;
    animation-delay: 0.2s;
}

.ink-splash:nth-child(4) {
    background: #96ceb4;
    bottom: 20%;
    right: 20%;
    animation-delay: 0.3s;
}

.ink-splash:nth-child(5) {
    background: #feca57;
    top: 50%;
    left: 10%;
    animation-delay: 0.4s;
}

.ink-splash:nth-child(6) {
    background: #ff9ff3;
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
}

@keyframes splashEffect {
    0% {
        opacity: 1;
        transform: scale(1);
        border-radius: 50%;
    }
    50% {
        opacity: 0.7;
        transform: scale(6);
        border-radius: 40%;
    }
    100% {
        opacity: 0;
        transform: scale(12);
        border-radius: 50% 30% 40% 60%;
    }
}

.ink-center {
    position: absolute;
    width: 120px;
    height: 120px;
    background: conic-gradient(from 45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #ff6b6b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    animation: centerPulse 3s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.8);
    z-index: 10;
    text-align: center;
}

.ink-center i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ink-center span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes inkFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
    }
    50% {
        transform: scale(1.05) rotate(90deg);
        box-shadow: 0 0 60px rgba(255, 107, 107, 0.8);
    }
}
/* Modern Hero Section */
.modern-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 25px;
    padding-top: 70px;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide video controls and play button */
.hero-video::-webkit-media-controls {
    display: none !important;
}

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

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

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);

}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        transparent 40%, 
        rgba(0,0,0,0.03) 700%, 
        rgba(0,0,0,0.08) 100%);
    z-index: 1;
}

.hero-text-section {
    color: white;
}

.modern-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #ffffff !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
    letter-spacing: -1px;
}

.title-sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.95) !important;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    margin-top: 15px;
    display: inline-block;
}

.modern-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 480px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.modern-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modern-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.modern-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.modern-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.modern-btn.primary:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.modern-btn.secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.visual-element {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.element-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.element-logo {
    width: 230px;
    height: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 107, 107, 0.6));
    transition: all 0.3s ease;
}

.visual-element:hover .element-logo {
    transform: scale(1.1);
    filter: brightness(1) invert(0) drop-shadow(0 0 25px rgba(255, 107, 107, 0.6));
}

.element-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.6));
    display: none;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 300px;
}

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

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

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 107, 107, 0.15);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255, 107, 107, 0.4));
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 107, 107, 0.4));
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: white;
    transform: translateY(-2px);
}

@keyframes boxFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(0px) rotateX(0deg) rotateY(10deg);
    }
    75% {
        transform: translateY(-5px) rotateX(-5deg) rotateY(5deg);
    }
}

.stat-box-3d:nth-child(1) .box-inner {
    animation-delay: 0s;
}

.stat-box-3d:nth-child(2) .box-inner {
    animation-delay: 1s;
}

.stat-box-3d:nth-child(3) .box-inner {
    animation-delay: 2s;
}

.scroll-hint {
    display: none;
}

.scroll-hint span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 100px;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        justify-content: center;
    }
    
    .visual-element {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .hero-wrapper {
        padding-top: 80px;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .visual-element {
        width: 350px;
        height: 350px;
    }
    
    .element-logo {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 0.95rem;
    }
    
    .modern-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .modern-btn {
        width: 100%;
    }
    
    .stats-grid {
        display: none;
    }
    
    .visual-element {
        width: 280px;
        height: 280px;
    }
    
    .element-logo {
        width: 120px;
        height: 100px;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        max-width: 250px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .marquee-logo {
        height: 50px;
        max-width: 100px;
    }
    
    .marquee-track {
        gap: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        padding-top: 80px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .modern-description {
        font-size: 0.9rem;
    }
    
    .modern-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .visual-element {
        width: 220px;
        height: 220px;
    }
    
    .element-logo {
        width: 100px;
        height: 80px;
    }
    
    .marquee-logo {
        height: 40px;
        max-width: 80px;
    }
    
    .marquee-track {
        gap: 3rem;
    }
}

/* Enhanced Drop Shadows */
.modern-description {
    text-shadow: 0 8px 16px rgba(0,0,0,0.8) !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6)) !important;
}

.modern-btn {
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5)) !important;
}

.modern-btn:hover {
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.6)) !important;
}

.stat-box-3d {
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)) !important;
}

.stat-box-3d:hover {
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.6)) !important;
}




/* Modern Logo Marquee */
.logo-marquee {
    padding: 2rem 0;
    background: #f8fafc;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-track {
    display: flex;
    animation: infiniteLoop 10s linear infinite;
    gap: 10rem;
    align-items: center;
}

.marquee-logo {
    height: 60px;
    width: auto;
    filter: opacity(0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}


/* Logo Marquee */
.logo-marquee {
    padding: 3rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
    border-top: 1px solid var(--nav-border);
    border-bottom: 1px solid var(--nav-border);
    position: relative;
    transition: background-color 0.3s ease;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    gap: 8rem;
    align-items: center;
    width: max-content;
}

.marquee-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

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

/* Pause animation on hover */
.logo-marquee:hover .marquee-track {
    animation-play-state: paused;
}
/* Industry Image Styles */
.industry-image {
    width: 290px;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

/* Blog Page Styles */
.blog-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.05"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.02"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.linkedin-embed {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.linkedin-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.linkedin-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.linkedin-embed:hover::before {
    opacity: 1;
}

.linkedin-embed h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.linkedin-embed p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.linkedin-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.linkedin-posts iframe {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.linkedin-post-embed {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.linkedin-follow {
    margin-top: 2rem;
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
    font-size: 1.1rem;
}

.linkedin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
    background: linear-gradient(135deg, #005885 0%, #004066 100%);
}

.linkedin-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .linkedin-embed {
        padding: 2rem;
    }
    
    .linkedin-embed h2 {
        font-size: 2rem;
    }
    
    .linkedin-post-embed {
        padding: 1.5rem;
    }
    
    .linkedin-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
/* Post Card Styles */
.post-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #0077b5;
}

.post-header i {
    font-size: 1.5rem;
}

.post-header span {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.post-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-link {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.post-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.post-link::after {
    content: '→';
    font-size: 1rem;
}
/* Blog Feed Styles */
.blog-feed {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.blog-feed > p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.feed-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 1024px) {
    .feed-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feed-posts {
        grid-template-columns: 1fr;
    }
}

.feed-post {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.feed-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

.post-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.post-platform {
    color: #0077b5;
    font-size: 1.2rem;
}

.post-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    height: auto;
    line-height: 1.3;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}



.post-content .post-image {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

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

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

.post-actions {
    display: flex;
    justify-content: flex-end;
}

.view-post {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.view-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 119, 181, 0.3);
}

@media (max-width: 768px) {
    .blog-feed {
        padding: 2rem;
    }
    
    .feed-post {
        padding: 1.2rem;
    }
    
    .post-content .post-image {
        height: 150px;
    }
}
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
}

.linkedin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
}

.linkedin-follow {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .video-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

[data-theme="dark"] .marquee-logo {
    filter: brightness(0.8) contrast(1.2);
}

[data-theme="dark"] .marquee-logo:hover {
    filter: brightness(1) contrast(1);
}

[data-theme="dark"] .element-logo {
    filter: brightness(0.9) drop-shadow(0 0 20px rgba(96, 165, 250, 0.4));
}

[data-theme="dark"] .visual-element:hover .element-logo {
    filter: brightness(1) drop-shadow(0 0 25px rgba(96, 165, 250, 0.6));
}

/* Smooth transitions for theme switching */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.navbar,
.mega-menu,
.mobile-menu,
.modern-card,
.floating-card,
.stat-card,
.award-card,
.director-card,
.industry-card,
.service-card,
.sustainability-card,
.product-card,
.contact-info-card,
.contact-form-card {
    transition: all 0.3s ease;
}

/* Enhanced dark mode card styles */
[data-theme="dark"] .modern-card,
[data-theme="dark"] .award-card {
    background: var(--bg-secondary);
    border: 1px solid var(--nav-border);
}

[data-theme="dark"] .award-card h3,
[data-theme="dark"] .award-card p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .director-card,
[data-theme="dark"] .industry-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .sustainability-card,
[data-theme="dark"] .product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--nav-border);
}

[data-theme="dark"] .director-card h3,
[data-theme="dark"] .director-card p,
[data-theme="dark"] .director-title,
[data-theme="dark"] .director-description,
[data-theme="dark"] .industry-card h3,
[data-theme="dark"] .industry-card p,
[data-theme="dark"] .industry-features li,
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .service-features li,
[data-theme="dark"] .sustainability-card h3,
[data-theme="dark"] .sustainability-card p,
[data-theme="dark"] .product-card h3,
[data-theme="dark"] .product-card p,
[data-theme="dark"] .product-features li {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .story-card,
[data-theme="dark"] .vision-card,
[data-theme="dark"] .mission-card {
    background: var(--bg-secondary);
    border: 1px solid var(--nav-border);
}

[data-theme="dark"] .modern-card::before,
[data-theme="dark"] .award-card::before,
[data-theme="dark"] .director-card::before,
[data-theme="dark"] .industry-card::before,
[data-theme="dark"] .service-card::before,
[data-theme="dark"] .sustainability-card::before,
[data-theme="dark"] .product-card::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
}

/* Dark mode form styles */
[data-theme="dark"] .modern-form input,
[data-theme="dark"] .modern-form textarea {
    background: var(--bg-tertiary);
    border-color: var(--nav-border);
    color: var(--text-dark);
}

[data-theme="dark"] .modern-form input:focus,
[data-theme="dark"] .modern-form textarea:focus {
    background: var(--bg-secondary);
    border-color: var(--accent-color);
}

[data-theme="dark"] .modern-form input::placeholder,
[data-theme="dark"] .modern-form textarea::placeholder {
    color: var(--text-light);
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Increase tap targets */
    .nav-toggle {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .theme-switch {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-menu-item > a {
        min-height: 44px;
    }
    
    .mobile-submenu a {
        min-height: 40px;
    }
    
    /* Improve button sizes */
    .modern-btn,
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    /* Better form inputs */
    .modern-form input,
    .modern-form textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .modern-form button {
        min-height: 48px;
    }
    
    /* Improve card interactions */
    .product-card,
    .industry-card,
    .service-card,
    .director-card,
    .award-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .product-card:hover,
        .industry-card:hover,
        .service-card:hover,
        .director-card:hover,
        .award-card:hover {
            transform: none;
        }
        
        .product-card:active,
        .industry-card:active,
        .service-card:active,
        .director-card:active,
        .award-card:active {
            transform: scale(0.98);
        }
    }
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Better video responsiveness */
video {
    max-width: 100%;
    height: auto;
}

/* Improve table responsiveness */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
}
/* Dark Mode Font Visibility Fixes */
[data-theme="dark"] .page-hero {
    background: linear-gradient(-45deg, #1e293b, #334155, #475569, #1e3a8a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

[data-theme="dark"] .page-hero.video-hero-bg .video-overlay {
    background: linear-gradient(-45deg, rgba(30, 41, 59, 0.85), rgba(51, 65, 85, 0.85), rgba(71, 85, 105, 0.85), rgba(30, 58, 138, 0.85));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

[data-theme="dark"] .page-hero h1,
[data-theme="dark"] .page-hero p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .content-intro h2,
[data-theme="dark"] .content-intro p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .about-text p,
[data-theme="dark"] .stat-item h3,
[data-theme="dark"] .stat-item p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .awards-content,
[data-theme="dark"] .directors-content,
[data-theme="dark"] .story-content,
[data-theme="dark"] .sustainability-content,
[data-theme="dark"] .products-content {
    background: var(--bg-secondary);
}

[data-theme="dark"] .floating-certifications h3,
[data-theme="dark"] .floating-certifications p,
[data-theme="dark"] .cert-label {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .blog-content {
    background: var(--bg-secondary) !important;
}

[data-theme="dark"] .blog-feed {
    background: var(--bg-secondary);
    border: 1px solid var(--nav-border);
}

[data-theme="dark"] .blog-feed h2,
[data-theme="dark"] .blog-feed > p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .feed-post {
    background: var(--bg-primary) !important;
    border-color: var(--nav-border) !important;
}

[data-theme="dark"] .feed-post h3,
[data-theme="dark"] .feed-post p,
[data-theme="dark"] .author-info h4,
[data-theme="dark"] .author-info span {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .contact-content {
    background: var(--bg-secondary);
}

[data-theme="dark"] .contact-item {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .contact-details h3,
[data-theme="dark"] .contact-details p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .contact-form-card h2 {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--nav-border);
}

[data-theme="dark"] .industry-card h3,
[data-theme="dark"] .industry-card p,
[data-theme="dark"] .service-features li,
[data-theme="dark"] .product-features li {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .timeline-content h3,
[data-theme="dark"] .timeline-content p {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .scroll-hint span {
    color: var(--text-light) !important;
}

[data-theme="dark"] .content-intro h2 {
    background: var(--gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Ensure content-intro h2 is always visible */
.content-intro h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Download Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content .close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content .close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.modal-content input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-content input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-content button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Modern Theme Switch Button */
.theme-switch {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: var(--nav-hover);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-switch:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.theme-switch-icon {
    width: 20px;
    height: 20px;
    color: var(--nav-text);
    transition: all 0.3s ease;
    position: absolute;
}

.theme-switch-icon.sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-switch-icon.moon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

[data-theme="dark"] .theme-switch-icon.sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

[data-theme="dark"] .theme-switch-icon.moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-switch {
    background: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .theme-switch:hover {
    background: rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .theme-switch {
        width: 40px;
        height: 40px;
    }
}




/* Video Hero Background */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 40, 85, 0.699) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

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

/* Header Info Section */
.header-info-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.info-content h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .header-info-section {
        padding: 40px 0;
    }
    
    .header-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}

/* Redesigned Sustainability Page Styles */
.sustainability-hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(-45deg, #10b981, #059669, #34d399, #6ee7b7);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.sustainability-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="400" r="200" fill="rgba(255,255,255,0.05)"/><circle cx="400" cy="800" r="180" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sustainability-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sustainability-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sustainability Pillars */
.sustainability-pillars {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.pillar-card {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: all 0.3s ease;
}

.pillar-card.environmental::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.pillar-card.social::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.pillar-card.governance::before {
    background: linear-gradient(90deg, #8b5cf6, #6d28d9);
}

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

.pillar-card.environmental:hover {
    border-color: #10b981;
}

.pillar-card.social:hover {
    border-color: #3b82f6;
}

.pillar-card.governance:hover {
    border-color: #8b5cf6;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.pillar-card.environmental .pillar-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pillar-card.social .pillar-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.pillar-card.governance .pillar-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotateY(180deg);
}

.pillar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pillar-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pillar-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.stat-item-mini:hover {
    transform: translateX(5px);
}

.stat-item-mini i {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Initiatives Section */
.sustainability-initiatives {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.section-header-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header-modern p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.initiative-card {
    background: var(--bg-primary);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.initiative-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.initiative-card:hover .initiative-image img {
    transform: scale(1.1);
}

.initiative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.initiative-card:hover .initiative-overlay {
    opacity: 1;
}

.initiative-overlay i {
    font-size: 4rem;
    color: white;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.initiative-card:hover .initiative-overlay i {
    transform: scale(1);
}

.initiative-content {
    padding: 2.5rem;
}

.initiative-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.initiative-tag.environmental {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.initiative-tag.social {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.initiative-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.initiative-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.initiative-list i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Products Showcase */
.sustainability-products {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-showcase-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.showcase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.product-showcase-card:hover .showcase-icon {
    transform: scale(1.1) rotate(360deg);
}

.product-showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-showcase-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Commitment Section */
.sustainability-commitment {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="400" r="200" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.commitment-box {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.commitment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.commitment-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.commitment-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.commitment-actions {
    display: flex;
    justify-content: center;
}

.commitment-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #667eea;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

@media (max-width: 768px) {
    .sustainability-hero-content h2 {
        font-size: 2.5rem;
    }

    .sustainability-hero-content p {
        font-size: 1rem;
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

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

    .initiative-image {
        height: 250px;
    }

    .commitment-box h2 {
        font-size: 2rem;
    }

    .commitment-box p {
        font-size: 1rem;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .sustainability-hero-section {
    background: linear-gradient(-45deg, #059669, #047857, #065f46, #064e3b);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

[data-theme="dark"] .pillar-card,
[data-theme="dark"] .initiative-card,
[data-theme="dark"] .product-showcase-card {
    background: var(--bg-secondary);
    border-color: var(--nav-border);
}

[data-theme="dark"] .stat-item-mini {
    background: var(--bg-tertiary);
}

/* Dark Mode Glass Navbar */
[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .mega-menu {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .nav-menu > li > a {
    color: #f1f5f9;
}

[data-theme="dark"] .menu-column h4 {
    color: #f1f5f9;
}

[data-theme="dark"] .menu-column a {
    color: #cbd5e1;
}

[data-theme="dark"] .mobile-menu {
    background: rgba(15, 23, 42, 0.98);
}

[data-theme="dark"] .mobile-menu-item > a {
    color: #f1f5f9;
}

[data-theme="dark"] .mobile-submenu a {
    color: #cbd5e1;
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: 150px;
}

.video-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-hero-content p {
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .video-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .video-hero-content p {
        font-size: 1.1rem;
    }
}

/* Plate Division Modern Design */
.plate-ser/* Custom Cursor Animation */
.custom-cursor {
    width: 32px;
    height: 32px;
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: #4ecdc4;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    opacity: 0;
    box-shadow: 0 0 10px #4ecdc4;
}

.custom-cursor.active,
.custom-cursor-dot.active {
    opacity: 1;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(255, 107, 107, 0.2);
    border-color: #feca57;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

vices-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.plate-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.plate-service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--nav-border);
}

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

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.plate-service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102,126,234,0.9), rgba(118,75,162,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plate-service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: white;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.plate-service-card:hover .service-overlay i {
    transform: scale(1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-list i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .plate-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plate-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
}

/* Modern About Section Redesign */
.about-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content-left {
    padding-right: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    animation: slideInLeft 0.8s ease;
}

.about-badge i {
    font-size: 1.1rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease 0.4s backwards;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease 0.6s backwards;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease 0.8s backwards;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: #10b981;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

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

.stat-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease backwards;
}

.stat-card-modern:nth-child(1) { animation-delay: 0.2s; }
.stat-card-modern:nth-child(2) { animation-delay: 0.4s; }
.stat-card-modern:nth-child(3) { animation-delay: 0.6s; }
.stat-card-modern:nth-child(4) { animation-delay: 0.8s; }

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: scale(1.1) rotate(360deg);
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-modern {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Dark Mode Support */
[data-theme="dark"] .about-modern {
    background: var(--bg-secondary);
}

[data-theme="dark"] .about-modern::before,
[data-theme="dark"] .about-modern::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

[data-theme="dark"] .about-title {
    color: var(--text-dark);
}

[data-theme="dark"] .about-lead {
    color: var(--text-dark);
}

[data-theme="dark"] .feature-item {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .feature-item span {
    color: var(--text-dark);
}

[data-theme="dark"] .stat-card-modern {
    background: var(--bg-tertiary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content-left {
        padding-right: 0;
    }
    
    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 5rem 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .feature-item {
        padding: 0.8rem 1.2rem;
    }
    
    .stat-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
}

/* Modern Indenting Division Styles */
.indenting-intro-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.indenting-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: fadeInDown 0.8s ease;
}

.intro-content-wrapper h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.intro-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.intro-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.intro-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.intro-stat-item i {
    font-size: 2.5rem;
    color: #667eea;
}

.intro-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.intro-stat-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
    font-weight: 600;
}

/* Indenting Products Section */
.indenting-products-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.indenting-products-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.indenting-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.indenting-product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.indenting-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.indenting-product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.indenting-product-card:hover::before {
    opacity: 1;
}

.product-card-header {
    position: relative;
    padding: 2rem 2rem 0;
}

.product-icon-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.indenting-product-card:hover .product-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
}

.product-image-modern {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.indenting-product-card:hover .product-image-modern img {
    transform: scale(1.15);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.indenting-product-card:hover .product-overlay-modern {
    opacity: 1;
}

.product-overlay-modern i {
    font-size: 3.5rem;
    color: white;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.5s ease 0.1s;
}

.indenting-product-card:hover .product-overlay-modern i {
    transform: scale(1) rotate(0deg);
}

.product-card-body {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.product-card-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.indenting-product-card:hover .product-card-body h3 {
    color: #667eea;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.product-list-modern li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-list-modern li:hover {
    transform: translateX(5px);
    color: var(--text-dark);
}

.product-list-modern i {
    color: #10b981;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-list-modern li:hover i {
    transform: scale(1.2);
}

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

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

/* Dark Mode Support */
[data-theme="dark"] .indenting-intro-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .intro-stat-item {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .indenting-products-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .indenting-product-card {
    background: var(--bg-secondary);
    border-color: var(--nav-border);
}

[data-theme="dark"] .product-card-body h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .indenting-product-card:hover .product-card-body h3 {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .indenting-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .indenting-intro-section {
        padding: 4rem 0;
    }

    .intro-content-wrapper h2 {
        font-size: 2.5rem;
    }

    .intro-lead {
        font-size: 1.05rem;
    }

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

    .intro-stat-item {
        padding: 1.5rem;
    }

    .intro-stat-item h3 {
        font-size: 2rem;
    }

    .indenting-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-modern {
        height: 200px;
    }

    .product-card-body h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .intro-content-wrapper h2 {
        font-size: 2rem;
    }

    .intro-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.4rem;
    }

    .intro-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .intro-stat-item i {
        font-size: 2rem;
    }

    .intro-stat-item h3 {
        font-size: 1.8rem;
    }

    .product-card-header {
        padding: 1.5rem 1.5rem 0;
    }

    .product-card-body {
        padding: 0 1.5rem 1.5rem;
    }

    .product-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Modern Plate Division Styles */
.plate-intro-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.plate-intro-section.video-intro-bg .intro-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.plate-intro-section.video-intro-bg .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%);
    z-index: 1;
}

.plate-intro-section.video-intro-bg .container {
    position: relative;
    z-index: 2;
}

.plate-intro-section.video-intro-bg .intro-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plate-intro-section.video-intro-bg .intro-content-wrapper h2 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.plate-intro-section.video-intro-bg .intro-lead {
    color: rgba(255, 255, 255, 0.9);
}

.plate-intro-section.video-intro-bg .intro-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plate-intro-section.video-intro-bg .intro-stat-item i {
    color: white;
}

.plate-intro-section.video-intro-bg .intro-stat-item h3 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.plate-intro-section.video-intro-bg .intro-stat-item p {
    color: rgba(255, 255, 255, 0.9);
}

.plate-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.plate-services-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.plate-services-modern::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.plate-services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.plate-service-card-modern {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.plate-service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.plate-service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.plate-service-card-modern:hover::before {
    opacity: 1;
}

.service-card-header {
    position: relative;
    padding: 2rem 2rem 0;
}

.service-icon-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.plate-service-card-modern:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
}

.service-image-modern {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.plate-service-card-modern:hover .service-image-modern img {
    transform: scale(1.15);
}

.service-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.plate-service-card-modern:hover .service-overlay-modern {
    opacity: 1;
}

.service-overlay-modern i {
    font-size: 3.5rem;
    color: white;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.5s ease 0.1s;
}

.plate-service-card-modern:hover .service-overlay-modern i {
    transform: scale(1) rotate(0deg);
}

.service-card-body {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.service-card-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.plate-service-card-modern:hover .service-card-body h3 {
    color: #667eea;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-modern li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-list-modern li:hover {
    transform: translateX(5px);
    color: var(--text-dark);
}

.service-list-modern i {
    color: #10b981;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-list-modern li:hover i {
    transform: scale(1.2);
}

/* Dark Mode Support */
[data-theme="dark"] .plate-intro-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .plate-services-modern {
    background: var(--bg-primary);
}

[data-theme="dark"] .plate-service-card-modern {
    background: var(--bg-secondary);
    border-color: var(--nav-border);
}

[data-theme="dark"] .service-card-body h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .plate-service-card-modern:hover .service-card-body h3 {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plate-services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .plate-intro-section {
        padding: 4rem 0;
    }

    .plate-services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image-modern {
        height: 200px;
    }

    .service-card-body h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .service-card-header {
        padding: 1.5rem 1.5rem 0;
    }

    .service-card-body {
        padding: 0 1.5rem 1.5rem;
    }

    .service-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Plate Division Video Hero */
.page-hero.video-hero-bg {
    position: relative;
    overflow: hidden;
}

.page-hero.video-hero-bg .hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.page-hero.video-hero-bg .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85), rgba(240, 147, 251, 0.85), rgba(79, 172, 254, 0.85));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

.page-hero.video-hero-bg .container {
    position: relative;
    z-index: 2;
}

/* Modern Products Page Styles */
.products-modern-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.products-modern-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.products-modern-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: fadeInDown 0.8s ease;
}

.products-intro h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.products-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.products-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.product-modern-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-modern-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.product-modern-card:hover::before {
    opacity: 1;
}

.product-card-header-modern {
    position: relative;
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.product-icon-modern.gravure {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.product-icon-modern.eco {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.product-icon-modern.coating {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.product-icon-modern.cleaning {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.product-icon-modern.quality {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.product-modern-card:hover .product-icon-modern {
    transform: scale(1.1) rotate(360deg);
}

.product-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.product-badge.specialty {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.product-badge.eco {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.product-badge.quality {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.product-card-body-modern {
    padding: 1.5rem 2rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.product-card-body-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-modern-card:hover .product-card-body-modern h3 {
    color: #667eea;
}

.product-card-body-modern > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.product-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-features-modern li:hover {
    transform: translateX(5px);
    color: var(--text-dark);
}

.product-features-modern i {
    color: #10b981;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-features-modern li:hover i {
    transform: scale(1.2);
}

.product-card-footer {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    width: 100%;
    justify-content: center;
}

.product-modern-card:hover .learn-more-btn {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.product-modern-card:hover .learn-more-btn i {
    transform: translateX(5px);
}

/* Dark Mode Support */
[data-theme="dark"] .products-modern-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .product-modern-card {
    background: var(--bg-secondary);
    border-color: var(--nav-border);
}

[data-theme="dark"] .product-card-body-modern h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .product-modern-card:hover .product-card-body-modern h3 {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-modern-section {
        padding: 4rem 0;
    }

    .products-intro h2 {
        font-size: 2.5rem;
    }

    .products-intro p {
        font-size: 1.05rem;
    }

    .products-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card-body-modern h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-intro h2 {
        font-size: 2rem;
    }

    .products-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.4rem;
    }

    .product-card-header-modern {
        padding: 1.5rem 1.5rem 0;
    }

    .product-card-body-modern {
        padding: 1.5rem;
    }

    .product-card-footer {
        padding: 0 1.5rem 1.5rem;
    }

    .product-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .learn-more-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Modern Particle Animation */
.modern-animation {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.particle-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #0077b5 0%, #1d4ed8 100%);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
}

.particle:nth-child(2) {
    top: 15%;
    right: 25%;
    animation-delay: -2s;
    background: linear-gradient(135deg, #1d4ed8 0%, #0077b5 100%);
    box-shadow: 0 0 40px rgba(78, 205, 196, 0.6);
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: -4s;
    background: linear-gradient(135deg, #1d4ed8 0%, #0077b5 100%);
    box-shadow: 0 0 40px rgba(240, 147, 251, 0.6);
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: -6s;
    background: linear-gradient(135deg, #0077b5 0%, #1d4ed8 100%);
    box-shadow: 0 0 40px rgba(254, 202, 87, 0.6);
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -1s;
    background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
}

.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .modern-animation {
        width: 350px;
        height: 350px;
    }
    
    .particle {
        width: 70px;
        height: 70px;
    }
    
    .center-glow {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .modern-animation {
        width: 280px;
        height: 280px;
    }
    
    .particle {
        width: 60px;
        height: 60px;
    }
    
    .center-glow {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .modern-animation {
        width: 220px;
        height: 220px;
    }
    
    .particle {
        width: 50px;
        height: 50px;
    }
    
    .center-glow {
        width: 120px;
        height: 120px;
    }
}


/* Hero Visual Element */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: heroImageFloat 6s ease-in-out infinite, heroImageGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.4));
}

.hero-image:hover {
    animation-play-state: paused;
    transform: scale(1.05) rotate(2deg);
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-25px) translateX(5px);
    }
}

@keyframes heroImageGlow {
    0%, 100% {
        filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.4));
    }
    50% {
        filter: drop-shadow(0 25px 50px rgba(59, 130, 246, 0.7));
    }
}

@media (max-width: 1024px) {
    .hero-image {
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 300px;
    }
}


/* Hero Product Navigator */
.hero-visual {
    overflow: hidden;
    max-width: 100%;
    position: relative;
    perspective: 1000px;
}

.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}


.product-navigator {
    display: flex;
    gap: 2rem;
    animation: scrollLeftAngled 20s linear infinite;
}

.nav-card {
    min-width: 320px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(2deg);
}

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

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

.nav-card:hover {
    transform: translateY(-20px) scale(1.1) rotateY(0deg) rotateX(0deg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.4);
}

.nav-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.4));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-card:hover img {
    transform: scale(1.2) rotateZ(5deg);
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.8));
}

.nav-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-card:hover h3 {
    color: #60a5fa;
    transform: translateY(-5px);
    text-shadow: 0 4px 20px rgba(96, 165, 250, 0.6);
}

@keyframes scrollLeftAngled {
    0% {
        transform: translateX(0) rotateY(-2deg);
    }
    100% {
        transform: translateX(-50%) rotateY(-2deg);
    }
}

.product-navigator:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .nav-card {
        min-width: 250px;
        padding: 2rem;
        transform: rotateY(-5deg) rotateX(1deg);
    }
    
    .nav-card img {
        height: 140px;
    }
    
    .nav-card h3 {
        font-size: 1.1rem;
    }
}

/* Fix phone number hyperlink colors */
.contact-info a,
.contact-details a {
    color: inherit !important;
    text-decoration: none !important;
}

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

[data-theme="dark"] .contact-details a {
    color: var(--text-dark) !important;
}
