/* Main CSS File - Fixed Version */
:root {
    --primary: #da3930;
    --primary-dark: #96413d;
    --primary-light: #FF6B6B;
    --secondary: #1A1A1A;
    --secondary-light: #2D2D2D;
    --accent: #FFD700;
    --light: #F8F9FA;
    --gray: #8C8C8C;
    --dark: #121212;
    --card-bg: #1E1E1E;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, #000 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title .subtitle {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 48px;
    color: var(--light);
    margin-bottom: 20px;
}

.section-title .title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 59, 48, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 59, 48, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Logo Styles */
.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img.small {
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Update header scrolled state for logo */
.header.scrolled .logo-img {
    height: 40px;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    color: var(--light);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-text p {
    font-size: 12px;
    color: var(--gray);
}

.contact-text span {
    font-weight: 600;
    font-size: 14px;
    color: var(--light);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding-top: 100px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--light);
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray);
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    background-color: var(--dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 36px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
}

/* About Section */
.about {
    background-color: var(--secondary);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 59, 48, 0.3);
}

.experience-badge h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 500;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--light);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 16px;
}

.about-list {
    margin: 30px 0;
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light);
}

.about-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 18px;
}

/* Products Section */
.products {
    background-color: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-header {
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    z-index: 1;
}

.product-image {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-body {
    padding: 30px;
}

.product-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.product-features {
    margin: 20px 0;
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 14px;
}

.product-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 12px;
}

.product-cta {
    text-align: center;
    margin-top: 30px;
}

/* Stats Section */
.stats {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 59, 48, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
}

.stat-card h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-card p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

/* Values Section */
.values {
    background-color: var(--secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--gradient);
    transform: translateY(-10px);
}

.value-card:hover h3,
.value-card:hover p,
.value-card:hover .value-icon {
    color: white;
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 36px;
    transition: all 0.3s ease;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.value-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    padding-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--light);
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}

.footer-contact p {
    color: var(--gray);
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--light);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
}

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0.6;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--light);
    animation: fadeInUp 0.8s ease;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

/* Individual page hero backgrounds */
.index-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/index/slide-2.jpg');
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/index/slide-2.jpg');
}

.products-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/index/slide-3.jpg');
}

.labour-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/index/slide-2.jpg');
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/index/slide-2.jpg');
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Labour Work Page Specific Styles */
.labour-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.labour-process {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.labour-process h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light);
}

.step-content p {
    color: var(--gray);
}

.labour-benefits {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.labour-benefits h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 59, 48, 0.05);
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light);
}

.benefit-content p {
    color: var(--gray);
    font-size: 14px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light);
}

.contact-details p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Product Details Page Styles */
.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 30px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient);
    border-color: var(--primary);
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-specs {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specs h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--gray);
}

.spec-value {
    font-weight: 600;
    color: var(--light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .section-title h2 {
        font-size: 42px;
    }
    
    .features-grid,
    .products-grid,
    .stats-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .labour-work-grid,
    .contact-grid,
    .product-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .page-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .features-grid,
    .products-grid,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .labour-work-grid {
        gap: 30px;
    }
    
    .labour-process,
    .labour-benefits,
    .contact-info-card,
    .contact-form,
    .product-specs {
        padding: 30px 20px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}

/* Video Slider Styles for Labour Work Page */
.video-slider-section {
    padding: 60px 0;
    background: var(--dark);
}

.video-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--light);
}

.swiper-pagination-bullet {
    background: var(--light);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Lock scroll */
body.loading {
    overflow: hidden;
}

/* Preloader Background */
.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #000, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Hide */
.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* Loader Container - SIMPLIFIED */
.loader {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Larger Logo in Preloader */
.loader img {
    width: 200px; /* Increased from 100px */
    height: 200px; /* Added fixed height for consistency */
    object-fit: contain;
    animation: logoFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(218, 57, 48, 0.6));
}

/* Glowing effect around logo */
.loader::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 57, 48, 0.3), transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}

/* Animations */
@keyframes logoFloat {
    0% { 
        transform: translateY(0) scale(1); 
        filter: drop-shadow(0 0 20px rgba(218, 57, 48, 0.6));
    }
    50% { 
        transform: translateY(-15px) scale(1.1); 
        filter: drop-shadow(0 0 30px rgba(218, 57, 48, 0.9));
    }
    100% { 
        transform: translateY(0) scale(1); 
        filter: drop-shadow(0 0 20px rgba(218, 57, 48, 0.6));
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Responsive adjustments for preloader */
@media (max-width: 768px) {
    .loader img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .loader img {
        width: 120px;
        height: 120px;
    }
}