/* ============================================================
   Vishwakarma Engineering - Redesigned Industrial Website
   Inspired by ronakeng.com
   ============================================================ */

/* ===== Variables ===== */
:root {
    --primary: #006cb5;
    --primary-dark: #00508a;
    --primary-light: #3388dd;
    --secondary: #1a1a1a;
    --accent-green: #5bb242;
    --accent-green-dark: #4a9e35;
    --accent-blue: #2a6fdd;
    --text-dark: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --bg-soft: #f7f5f4;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e5e5e5;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 3px solid var(--primary);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    color: var(--primary-light);
    font-size: 13px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    font-size: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-social a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Header / Navigation ===== */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid var(--border);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: transparent;
}

.header.scrolled .navbar-brand {
    padding: 6px 0;
}

.header.scrolled .logo {
    max-height: 42px;
}

.header.scrolled .nav-list > li > a {
    padding: 20px 16px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-left: 10px;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .logo-name { font-size: 14px; margin-left: 6px; }
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-list > li > a {
    display: flex;
    align-items: center;
    padding: 28px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.nav-list .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    border-top: 3px solid var(--primary);
}

.nav-list > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list .dropdown-menu a {
    display: block;
    padding: 10px 22px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.25s ease;
    position: relative;
}

.nav-list .dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.25s ease;
    border-radius: 0 2px 2px 0;
}

.nav-list .dropdown-menu a:hover {
    background: rgba(0, 108, 181, 0.04);
    color: var(--primary);
    padding-left: 30px;
}

.nav-list .dropdown-menu a:hover::before {
    height: 60%;
}

/* Dropdown indicator arrow */
.nav-list > li.dropdown > a .dropdown-arrow {
    display: inline-block;
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-list > li.dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-quote:hover {
    background: var(--accent-green-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(91, 178, 66, 0.35);
}

.btn-quote i {
    font-size: 16px;
}

/* Mobile Toggle */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
}

/* ===== Hero Slider ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 750px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.06) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-slide {
    position: relative;
    height: 750px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-section .slick-slide,
.hero-section .slick-list,
.hero-section .slick-track {
    height: 750px !important;
}

.hero-section .slick-slide > div {
    height: 100%;
}

.hero-section .slick-slide img {
    display: none;
}

.hero-section .slick-slide > div {
    height: 100%;
}

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

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

/* Hero subtle overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.1);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding: 40px 0;
}

.slick-active .hero-content .hero-subtitle {
    animation: heroFadeInUp 0.6s ease forwards;
}

.slick-active .hero-content h1 {
    animation: heroFadeInUp 0.8s ease forwards;
}

.slick-active .hero-content p {
    animation: heroFadeInUp 1s ease forwards;
}

.slick-active .hero-buttons {
    animation: heroFadeInUp 1.2s ease forwards;
}

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

.hero-content .hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 680px;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: var(--white);
    padding: 15px 34px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    background: var(--accent-green-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 178, 66, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 15px 34px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: scrollBounce 2s ease infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.scroll-indicator .mouse {
    width: 22px;
    height: 35px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease infinite;
}

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

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Slick arrows for hero */
.hero-section .slick-prev,
.hero-section .slick-next {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-section:hover .slick-prev,
.hero-section:hover .slick-next {
    opacity: 1;
}

.hero-section .slick-prev:hover,
.hero-section .slick-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08);
}

.hero-section .slick-prev { left: 30px; }
.hero-section .slick-next { right: 30px; }

.hero-section .slick-prev::before,
.hero-section .slick-next::before {
    display: none;
}

.hero-section .slick-prev i,
.hero-section .slick-next i {
    color: var(--white);
    font-size: 20px;
}

.hero-section .slick-dots {
    bottom: 30px;
}

.hero-section .slick-dots li {
    margin: 0 4px;
}

.hero-section .slick-dots li button {
    width: 12px;
    height: 12px;
}

.hero-section .slick-dots li button::before {
    color: transparent !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: all 0.3s ease;
    content: '';
}

.hero-section .slick-dots li.slick-active button::before {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* ===== Section Styles ===== */
.section {
    padding: 90px 0;
}

.section-alt {
    background-color: var(--bg-soft);
}

.section-dark {
    background-color: var(--secondary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header .section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 18px auto 0;
}

.section-alt .section-header h2 {
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section .about-image {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}

.about-section .about-image img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.about-section .about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--primary);
    border-radius: 8px;
    z-index: 0;
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    z-index: 3;
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 4px solid var(--white);
    box-shadow: 0 5px 20px rgba(91, 178, 66, 0.3);
    animation: badgePulse 3s ease infinite;
}

.about-section .about-image .experience-badge strong {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.about-section .about-image .experience-badge span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
}

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

.about-content {
    padding-left: 30px;
}

.about-content .about-tag {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.about-content h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.25;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about-feature-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 108, 181, 0.2);
}

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

.about-feature-item:hover span {
    color: var(--white);
}

.about-feature-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: rotateY(180deg);
}

.about-feature-item span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

/* ===== Stats / Counter Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 75% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-item .stat-number {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item .stat-icon {
    font-size: 34px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.stat-item:hover .stat-icon {
    color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) translateY(-3px);
}

.stat-item .stat-number .counter {
    display: inline;
}

/* ===== Products Hero ===== */
.products-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 40%, #0d2137 100%);
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 108, 181, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(51, 136, 221, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.products-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.products-hero-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(0, 108, 181, 0.2);
    border: 1px solid rgba(0, 108, 181, 0.3);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.products-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.products-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .products-hero { padding: 70px 0 50px; }
    .products-hero-content h1 { font-size: 32px; }
    .products-hero-content p { font-size: 16px; }
}

/* ===== Products Filter ===== */
.products-filter-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.products-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.filter-btn i {
    font-size: 13px;
}

.filter-btn:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 108, 181, 0.3);
}

.filter-btn.active {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 108, 181, 0.3);
}

/* ===== Enhanced Product Cards ===== */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), #7fc4fd);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
    z-index: 2;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.product-card .product-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.product-card .product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.06) 100%);
    z-index: 1;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card .product-image .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(91, 178, 66, 0.35);
}

.product-card .product-body {
    padding: 28px 26px 30px;
}

.product-card .product-body .product-category {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(0, 108, 181, 0.06);
}

.product-card .product-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.product-card:hover .product-body h3 {
    color: var(--primary);
}

.product-card .product-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.65;
}

.product-card .product-body .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.product-card .product-body .btn-outline:hover {
    color: var(--primary-dark);
    gap: 14px;
    border-bottom-color: var(--primary);
}

/* ===== Pagination ===== */
.products-pagination {
    margin-top: 50px;
}

.products-pagination .pagination {
    gap: 6px;
}

.products-pagination .page-link {
    border: none;
    border-radius: 10px !important;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    background: var(--bg-soft);
    transition: all 0.3s ease;
}

.products-pagination .page-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 108, 181, 0.25);
}

.products-pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 108, 181, 0.25);
}

.products-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

/* ===== Empty State ===== */
.empty-state {
    padding: 80px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===== Services Section ===== */
.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 25px 35px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

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

.service-card .service-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 108, 181, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotateY(180deg);
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    gap: 10px;
}

/* ===== Why Choose Us ===== */
.why-choose-card {
    background: var(--white);
    border-radius: 8px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-choose-card .wc-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 56px;
    font-weight: 900;
    color: rgba(0, 108, 181, 0.06);
    line-height: 1;
    transition: all 0.4s ease;
    font-family: var(--font-heading);
}

.why-choose-card:hover .wc-number {
    color: rgba(0, 108, 181, 0.12);
    transform: scale(1.1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.why-choose-card .wc-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.why-choose-card:hover .wc-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotateY(180deg);
    border-radius: 50%;
}

.why-choose-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
    color: var(--primary);
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Industries Section ===== */
.industry-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.industry-card:hover::after {
    background: linear-gradient(to top, rgba(0, 108, 181, 0.8) 0%, rgba(0, 108, 181, 0.2) 60%, transparent 100%);
}

.industry-card .industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.industry-card .industry-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.industry-card .industry-content span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-content span {
    color: var(--white);
    gap: 10px;
}

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

/* ===== Testimonials Section ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    margin: 10px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 44px;
    color: rgba(0, 108, 181, 0.06);
    line-height: 1;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    color: rgba(0, 108, 181, 0.12);
    transform: scale(1.1);
}

.testimonial-card .testimonial-stars {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    gap: 3px;
}

.testimonial-card .testimonial-stars i {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.1);
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-card .testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    border-color: var(--primary);
}

.testimonial-card .testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.testimonial-card .testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* Testimonials Slider Dots */
.testimonials-slider.slick-slider {
    margin: 0 -5px;
}

.testimonials-slider .slick-dots {
    position: relative;
    bottom: -10px;
    margin-top: 20px;
}

.testimonials-slider .slick-dots li {
    margin: 0 4px;
}

.testimonials-slider .slick-dots li button::before {
    font-size: 10px;
    color: var(--border);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li.slick-active button::before {
    color: var(--primary);
    transform: scale(1.3);
}

/* ===== Gallery Section ===== */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 108, 181, 0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    gap: 8px;
}

.gallery-item .gallery-overlay span {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

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

.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 36px;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ===== Blog Section ===== */
.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 2;
}

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

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

.blog-card .blog-image {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.blog-card .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 108, 181, 0.3);
}

.blog-card .blog-body {
    padding: 24px 22px;
}

.blog-card .blog-body .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card .blog-body .blog-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.blog-card .blog-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .blog-body h3 a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.blog-card .blog-body h3 a:hover {
    color: var(--primary);
}

.blog-card .blog-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card .blog-body .blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-link {
    gap: 10px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.cta-section .btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 15px 38px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-section .btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(91, 178, 66, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-section .btn-cta:hover::before {
    transform: translateX(100%);
}

.cta-section .btn-cta:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 178, 66, 0.4);
}

/* ===== Cards (Generic) ===== */
.card-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,108,181,0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.card-item:hover .card-icon {
    background: var(--primary);
    color: var(--white);
}

.card-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card .team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-soft);
    transition: var(--transition);
}

.team-card:hover .team-image {
    border-color: var(--primary);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-card .team-role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-card .team-social a {
    width: 34px;
    height: 34px;
    background: var(--bg-soft);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Certification/Partner Cards */
.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.cert-card .cert-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 18px;
    transition: var(--transition);
}

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

.cert-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cert-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 0;
}

/* Brochure Card */
.brochure-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.brochure-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.brochure-card .brochure-icon {
    font-size: 56px;
    color: #dc3545;
    margin-bottom: 18px;
    transition: var(--transition);
}

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

.brochure-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.brochure-card .brochure-category {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--text-light);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.brochure-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.brochure-card .download-count {
    color: var(--text-light);
    font-size: 12px;
    margin-top: 10px;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.contact-item .contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,108,181,0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Blog List Card */
.blog-list-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 24px;
    display: flex;
}

.blog-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-list-item .blog-list-image {
    width: 300px;
    min-height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-list-item .blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-list-item:hover .blog-list-image img {
    transform: scale(1.05);
}

.blog-list-item .blog-list-body {
    padding: 24px;
    flex: 1;
}

.blog-list-item .blog-list-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-list-item .blog-list-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.blog-list-item .blog-list-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-list-item .blog-list-body h3 a {
    color: var(--text-dark);
}

.blog-list-item .blog-list-body h3 a:hover {
    color: var(--primary);
}

.blog-list-item .blog-list-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Industry List Card */
.industry-list-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.industry-list-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.industry-list-item .industry-list-image {
    height: 200px;
    overflow: hidden;
}

.industry-list-item .industry-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-list-item:hover .industry-list-image img {
    transform: scale(1.08);
}

.industry-list-item .industry-list-body {
    padding: 22px;
}

.industry-list-item .industry-list-body h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.industry-list-item .industry-list-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Sidebar Widget */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
}

.sidebar-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Mission & Vision Card */
.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.mission-card .mission-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Page Banner already defined above - keep existing */

/* Responsive fixes */
@media (max-width: 767px) {
    .blog-list-item {
        flex-direction: column;
    }
    .blog-list-item .blog-list-image {
        width: 100%;
        min-height: 200px;
    }
}

/* ===== Contact Section ===== */
.contact-info-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    background: rgba(0, 108, 181, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 8px;
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--bg-soft);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 108, 181, 0.1);
    background: var(--white);
    outline: none;
}

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

.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 14px;
    width: 18px;
}

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

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

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Footer Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-newsletter .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 100%;
}

.footer-newsletter .newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-primary);
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter .newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter .newsletter-form button {
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-newsletter .newsletter-form button:hover {
    background: var(--primary-light);
}

.footer-blog-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-blog-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-blog-item img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-blog-item:hover img {
    opacity: 0.8;
}

.footer-blog-content a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.footer-blog-content a:hover {
    color: var(--primary);
}

.footer-blog-content span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Buttons ===== */
.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-solid:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 108, 181, 0.3);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

[data-aos] {
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    #mainNav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 10px 0;
    }
    
    #mainNav.open {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-list > li > a {
        padding: 12px 20px;
    }
    
    .nav-list .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        display: none;
    }
    
    .nav-list .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section .text-center {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        font-size: 12px;
    }
    
    .top-bar-info span:first-child {
        display: none;
    }
    
    .hero-slide {
        height: 100vh;
    }
    
    .hero-section {
        min-height: 100vh;
    }

    .hero-section .slick-slide,
    .hero-section .slick-list,
    .hero-section .slick-track {
        height: 100vh !important;
    }
    
    .hero-content {
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .stat-item .stat-number {
        font-size: 32px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ===== Admin Styles (preserved) ===== */
.admin-sidebar {
    background-color: var(--secondary);
    min-height: 100vh;
    padding: 20px 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.admin-sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
}

.admin-content {
    padding: 30px;
}

.admin-header {
    background-color: var(--white);
    padding: 15px 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.stat-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 0 auto 15px;
}

.stat-card .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-card .stat-label {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Pagination ===== */
.pagination {
    margin-top: 30px;
}

.page-link {
    color: var(--primary);
    border-color: var(--border);
}

.page-link:hover {
    color: var(--primary);
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ===== Breadcrumb ===== */
.breadcrumb-section {
    background: var(--bg-soft);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-item a {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* ===== Product Detail Page ===== */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.page-banner-content h1 {
    color: var(--white);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-banner-content > p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 16px;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item {
    font-size: 13px;
}

.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: rgba(255,255,255,0.5);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: '/';
}

/* ===== Product Detail (Ronak Eng Style) ===== */
.product-detail {
    padding: 70px 0;
    background: var(--white);
}

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

.product-image-col .product-main-image {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.product-image-col .product-main-image img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    padding: 30px;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.thumb-item {
    width: 72px;
    height: 64px;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--primary);
}

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

.product-info-col {
    padding-top: 10px;
}

.product-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-name {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.product-full-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-full-desc p {
    margin-bottom: 12px;
}

.product-full-desc ul,
.product-full-desc ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.product-full-desc li {
    margin-bottom: 6px;
}

.product-full-desc h3,
.product-full-desc h4 {
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-actions .btn {
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Features Section ===== */
.features-section {
    padding: 50px 0;
    background: var(--white);
}

.features-section .section-header {
    margin-bottom: 30px;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.features-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--bg-soft);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.features-section .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-color: var(--primary-light);
}

.features-section .feature-item i {
    color: var(--accent-green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-section .feature-item span {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

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

@media (max-width: 576px) {
    .features-section .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Specs Section ===== */
.specs-section {
    padding: 70px 0;
    background: var(--bg-soft);
}

.specs-section .section-header {
    margin-bottom: 40px;
}

.specs-table-wrap {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

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

.specs-table td {
    padding: 16px 24px;
    font-size: 15px;
    vertical-align: middle;
}

.specs-table .spec-label {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
    background: var(--bg-soft);
}

.specs-table .spec-value {
    color: var(--text-color);
}

.specs-table tr:hover td {
    background: rgba(0,108,181,0.03);
}

.tech-details {
    margin-top: 30px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image-col .product-main-image img {
        height: 360px;
    }
    
    .product-name {
        font-size: 28px;
    }
    
    .page-banner-content h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .product-image-col .product-main-image img {
        height: 280px;
        padding: 20px;
    }
    
    .product-name {
        font-size: 24px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ===== Blog Video Embed ===== */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.blog-content p {
    margin-bottom: 16px;
}

.blog-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

.blog-content h2, .blog-content h3, .blog-content h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-content ul, .blog-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.blog-content li {
    margin-bottom: 6px;
}

/* ===== Alerts ===== */
.alert {
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Mobile landscape - reduce slider height */
@media (max-height: 500px) {
    .hero-slide {
        height: 120vh;
    }
    .hero-section {
        min-height: 120vh;
    }
    .hero-section .slick-slide,
    .hero-section .slick-list,
    .hero-section .slick-track {
        height: 120vh !important;
    }
}

/* ===== Comprehensive Mobile Responsive ===== */

@media (max-width: 767px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 14px; }

    .page-banner { padding: 40px 0 35px; }
    .page-banner-content h1 { font-size: 26px; }
    .page-banner-content p { font-size: 14px; }
    .page-banner .breadcrumb { font-size: 12px; }
    .page-banner .breadcrumb-item { font-size: 12px; }

    .top-bar { font-size: 11px; }
    .top-bar .container { flex-wrap: wrap; justify-content: center; gap: 4px; }
    .top-bar-info span:first-child { display: none; }
    .top-bar-social a { padding: 4px 10px; font-size: 11px; }

    .about-section .row { flex-direction: column; }
    .about-section .col-lg-6 { width: 100%; }
    .about-content { padding-left: 0; margin-top: 24px; }
    .about-content h2 { font-size: 24px; }
    .about-content p { font-size: 14px; }
    .about-features-grid { grid-template-columns: 1fr; }

    .stats-section .row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 20px 12px; }
    .stat-item .stat-number { font-size: 28px; }
    .stat-item .stat-label { font-size: 12px; }

    .footer-top { padding: 50px 0 30px; }
    .footer .row > div { width: 100%; }
    .footer-widget { margin-bottom: 28px; }
    .footer-widget h3 { font-size: 17px; margin-bottom: 18px; }
    .footer-widget p { font-size: 13px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
    .footer-bottom-links { justify-content: center; gap: 12px; }
    .footer-bottom p { font-size: 12px; }
    .footer-blog-item img { width: 56px; height: 44px; }
    .footer-newsletter .newsletter-form input { font-size: 13px; padding: 10px 14px; }

    .whatsapp-float { width: 48px; height: 48px; bottom: 20px; right: 15px; font-size: 22px; }

    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 15px; }
    .hero-buttons .btn { font-size: 13px; padding: 10px 22px; }

    .section-header h2 { font-size: 24px; }
    .section-header p { font-size: 14px; }
    .cta-section { padding: 50px 0; }
    .cta-section h2 { font-size: 24px; }
    .cta-section p { font-size: 14px; }
}

@media (max-width: 576px) {
    .container { padding-left: 12px; padding-right: 12px; }
    .section { padding: 40px 0; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 13px; }

    .page-banner { padding: 30px 0 25px; }
    .page-banner-content h1 { font-size: 22px; }
    .page-banner-content p { font-size: 13px; }

    .stats-section .row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-item { padding: 16px 10px; }
    .stat-item .stat-number { font-size: 24px; }
    .stat-item .stat-label { font-size: 11px; }

    .footer-top { padding: 40px 0 20px; }
    .footer-widget h3 { font-size: 16px; }
    .footer-contact li { font-size: 13px; }
    .footer-links a { font-size: 13px; }
    .footer-bottom { padding: 16px 0; }
    .footer-bottom-links { flex-wrap: wrap; gap: 8px; }

    .whatsapp-float { width: 42px; height: 42px; bottom: 16px; right: 12px; font-size: 18px; }

    .hero-content h1 { font-size: 24px; }
    .hero-content p { font-size: 14px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .about-content h2 { font-size: 20px; }
    .about-content p { font-size: 13px; }
    .about-features-grid { gap: 8px; }
    .about-feature-item { padding: 10px 14px; font-size: 13px; }

    .section-header h2 { font-size: 20px; }
    .section-header p { font-size: 13px; }
    .cta-section { padding: 40px 0; }
    .cta-section h2 { font-size: 20px; }
    .cta-section p { font-size: 13px; }
    .cta-section .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding-left: 10px; padding-right: 10px; }
    .section { padding: 32px 0; }
    .section-header h2 { font-size: 18px; }
    .page-banner-content h1 { font-size: 20px; }
    .hero-content h1 { font-size: 22px; }
    .stats-section .row { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .stat-item { padding: 12px 8px; }
    .stat-item .stat-number { font-size: 20px; }
    .footer-top { padding: 32px 0 16px; }
}
