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

        :root {
            --primary: #1e40af;
            --primary-light: #3b82f6;
            --primary-dark: #1e3a8a;
            --accent: #f97316;
            --accent-hover: #ea580c;
            --dark: #0f172a;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-600: #475569;
            --gray-800: #1e293b;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

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

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            background: var(--accent );
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .contact-info a {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info a:hover {
            color: var(--accent);
        }

        nav {
            padding: 1px 0;
        }

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

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--accent);
            cursor: pointer;
        }

        /* Hero Section */
		.hero-wrapper {
			display: grid;
			grid-template-columns: 1.2fr 0.8fr;
			align-items: center;
			gap: 50px;
			position: relative;
			z-index: 1;
		}
        .hero {
            position: relative;
            min-height: 650px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(30, 58, 138, 0.85) 100%),
                        url('https://images.unsplash.com/photo-1722971334403-4f02388455a1?q=85') center/cover;
            color: var(--white);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M0 0h60v60H0z" fill="none"/><circle cx="3" cy="3" r="1" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .hero-tagline {
            font-size: 20px;
            margin-bottom: 35px;
            opacity: 0.95;
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

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

        .btn-primary {
            background: var(--accent);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
        }

        .btn-secondary {
            background: var(--accent);
            color: var(--primary);
        }

        .btn-secondary:hover {
            background: var(--gray-100);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

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

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }
		.hero-iso {
			text-align: center;
			padding: 40px;
			border-radius: 20px;
		}

		.hero-iso img {
			max-width: 180px;
			height: auto;
			margin-bottom: 15px;
		}

		.hero-iso p {
			font-weight: 600;
			font-size: 16px;
		}

		/* Responsive */
		@media(max-width:992px){
			.hero-wrapper {
				grid-template-columns: 1fr;
				text-align: center;
			}

			.hero-iso {
				margin-top: 40px;
			}

			.cta-buttons {
				justify-content: center;
			}
		}

        /* Section Styles */
        section {
            padding: 80px 0;
        }

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

        .section-subtitle {
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-description {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        .products {
            background: var(--gray-100);
        }

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

        .product-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15);
        }

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

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

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

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .product-content {
            padding: 30px;
        }

        .product-content h3 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .product-content p {
            color: var(--gray-600);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .product-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .product-features li {
            padding: 8px 0;
            color: var(--gray-600);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-features li i {
            color: var(--primary);
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .feature-card {
            text-align: center;
            padding: 35px 25px;
            background: var(--white);
            border-radius: 12px;
            border: 2px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Dealer Section */
        .dealer-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
        }

        .dealer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .dealer-info h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .dealer-info p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .benefits-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
        }

        .benefits-list li i {
            color: var(--accent);
            font-size: 20px;
        }

        .dealer-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .dealer-form h3 {
            margin-bottom: 25px;
            font-size: 24px;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #000;
            font-size: 15px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #000;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }

        /* Manufacturing Section */
        .manufacturing {
            background: var(--white);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: var(--gray-100);
            border-radius: 12px;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -12px;
            width: 24px;
            height: 2px;
            background: var(--primary);
            transform: translateY(-50%);
        }

        .process-step:last-child::before {
            display: none;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 15px;
        }

        .process-step h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--gray-600);
            font-size: 14px;
        }

        /* Project Showcase */
        .showcase {
            background: var(--gray-100);
        }

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

        .showcase-item {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            height: 300px;
        }

        .showcase-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .showcase-item:hover img {
            transform: scale(1.1);
        }

        .showcase-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            padding: 25px;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .showcase-item:hover .showcase-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .showcase-overlay h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        /* Customer Types */
        .customers {
            background: var(--white);
        }

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

        .customer-card {
            text-align: center;
            padding: 40px 25px;
            background: var(--gray-100);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .customer-card:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-5px);
        }

        .customer-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .customer-card:hover .customer-icon {
            color: var(--white);
        }

        .customer-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .customer-card p {
            color: var(--gray-600);
        }

        .customer-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Testimonials */
        .testimonials {
            background: var(--gray-100);
        }

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

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .testimonial-header {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
			overflow: hidden;
			flex-shrink: 0;
        }

		.testimonial-avatar img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}
        .testimonial-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .testimonial-info p {
            color: var(--gray-600);
            font-size: 14px;
        }

        .rating {
            color: var(--accent);
            margin-bottom: 15px;
        }

        .testimonial-text {
            color: var(--gray-600);
            line-height: 1.8;
            font-style: italic;
        }

        /* Bulk Order CTA */
        .bulk-cta {
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: var(--white);
            text-align: center;
        }

        .bulk-cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .bulk-cta p {
            font-size: 20px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Delivery Coverage */
        .delivery {
            background: var(--white);
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .city-item {
            padding: 20px;
            background: var(--gray-100);
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .city-item:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .city-item i {
            margin-right: 8px;
            color: var(--accent);
        }

        .city-item:hover i {
            color: var(--white);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

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

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

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

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

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            opacity: 0.7;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 42px;
            }

            .section-title {
                font-size: 32px;
            }

            .dealer-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .process-step::before {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .header-top .container {
                flex-direction: column;
                text-align: center;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-tagline {
                font-size: 16px;
            }

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

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

            .section-title {
                font-size: 28px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

/* ================= CONTACT PAGE ================= */

.contact-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-information {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-information h3 {
    margin-bottom: 20px;
}

.contact-information p {
    margin-bottom: 15px;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

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

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 992px){
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ================= BLOG PAGE ================= */

.blog-hero {
    background: linear-gradient(135deg, var(--dark), var(--gray-800));
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.blog-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}
img.blog-img.wp-post-image
 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-image {
    height: 200px;
    background: var(--primary-light);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.blog-content p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Responsive */
@media(max-width: 992px){
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= BLOG DETAIL PAGE ================= */

.blog-detail-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-detail-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.blog-meta {
    font-size: 14px;
    opacity: 0.9;
}

.blog-detail-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.blog-detail-wrapper {
    max-width: 850px;
    margin: auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.featured-image {
    height: 350px;
    background: var(--primary-light);
    border-radius: 15px;
    margin-bottom: 40px;
}
img.post-featured-img {
    width: 100%;
    height: 350px;
    border-radius: 15px;
}
.blog-content h2 {
    margin: 30px 0 15px;
    font-size: 24px;
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--gray-600);
}

.blog-content ul {
    margin: 20px 0 20px 20px;
}

.blog-content ul li {
    margin-bottom: 10px;
    color: var(--gray-600);
}

blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px;
    background: var(--gray-100);
    margin: 30px 0;
    font-style: italic;
    color: var(--gray-800);
    border-radius: 8px;
}

.tags {
    margin-top: 40px;
}

.tag {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px 5px 0 0;
    background: var(--gray-200);
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none;
    color: var(--gray-800);
    transition: 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

.author-box {
    margin-top: 50px;
    padding: 30px;
    background: var(--gray-100);
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
}
img.staticAvatar {
    border-radius: 50%;
    height: 80px;
    width: 80px;
}
.author-info h4 {
    margin-bottom: 5px;
}

.post-navigation {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-nav-link {
    flex: 1;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-800);
    transition: 0.3s;
}

.post-nav-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Responsive */
@media(max-width:768px){
    .blog-detail-wrapper {
        padding: 30px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .post-navigation {
        flex-direction: column;
    }
}

/* ================= ABOUT PAGE ================= */

.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 110px 0 90px;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 400px;
    background: var(--primary-light);
    border-radius: 20px;
}
.about-image img {
	width:100%;
    height: 400px;
	border-radius: 20px;
}
.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-600);
}

/* Services */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--gray-100);
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Stats */
.stats-section {
    padding: 70px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:992px){
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

@media(max-width:600px){
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   MAIN SERVICES DETAIL
========================= */

.main-services {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* IMAGE SIDE */
.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;   /* Important */
    display: block;
    border-radius: 15px;
}

/* TEXT SIDE */
.service-text {
    flex: 1;
}

.service-text h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.service-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-text ul {
    padding-left: 18px;
}

.service-text ul li {
    margin-bottom: 10px;
}

/* Alternate layout */
.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}
@media(max-width:992px){

    .service-detail {
        gap: 40px;
    }

    .service-image img {
        height: 320px;
    }
}

@media(max-width:768px){

    .service-detail {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-image img {
        height: 250px;
    }

    .service-text h2 {
        font-size: 26px;
    }

    .service-text ul {
        text-align: left;
        display: inline-block;
    }
}

/* ================= LEGAL PAGES (Privacy / Terms) ================= */

.legal-hero {
    background: linear-gradient(135deg, var(--dark), var(--gray-800));
    color: var(--white);
    padding: 100px 0 70px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.legal-hero p {
    font-size: 14px;
    opacity: 0.8;
}

.legal-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.legal-wrapper {
    max-width: 900px;
    margin: auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.legal-wrapper p {
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 15px;
}

.legal-wrapper ul {
    margin: 15px 0 20px 20px;
}

.legal-wrapper ul li {
    margin-bottom: 8px;
    color: var(--gray-600);
    font-size: 15px;
}

@media(max-width:768px){
    .legal-wrapper {
        padding: 30px;
    }
}
/* ================= SERVICES PAGE ================= */

.services-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 110px 0 90px;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Main Services */
.main-services {
    padding: 80px 0;
    background: var(--gray-100);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) .service-text {
    direction: ltr;
}

.service-image {
    height: 350px;
    background: var(--primary-light);
    border-radius: 20px;
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 15px;
    color: var(--gray-600);
}

.service-text ul {
    margin-left: 20px;
    margin-top: 15px;
}

.service-text ul li {
    margin-bottom: 8px;
    color: var(--gray-600);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    padding: 30px;
    background: var(--gray-100);
    border-radius: 15px;
    transition: 0.3s;
}

.process-step:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-8px);
}

/* Why Choose Us */
.why-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    padding: 35px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

/* CTA */
.services-cta {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 20px;
}

.services-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.services-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:992px){
    .service-detail {
        grid-template-columns: 1fr;
    }

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

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

@media(max-width:600px){
    .process-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}



input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
    width: 100%;
}