/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #ffffff;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #353131;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color:black;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-outline:hover {
    background-color: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

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

.btn-white:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
}

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

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

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--bg-secondary), var(--border-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder.large {
    width: 400px;
    height: 300px;
    font-size: 4rem;
}

.image-placeholder i {
    font-size: 3rem;
}

/* Featured Services Section */
.featured-services {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.feature-tag {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

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

/* CTA Section */
.cta {
    padding: 40px 0;
    background: #000;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.cta .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-white {
    background-color: #d4b89e;
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: none;
}

.btn-white:hover {
    background-color: #c9a98a;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background-size: 100px 100px;
    background-color: #b9b9b9;
    color: #000; /* All text in footer is black */
    padding: 60px 0 20px;
}

.footer * {
    color: #000 !important; /* Force all child elements to use black text */
}

/* Specific overrides for elements that might have other colors */
.footer-section p {
    color: #000 !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.footer-bottom p {
    color: #000 !important;
}

.social-link {
    color: #000 !important;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.centered-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-section .logo {
    margin-bottom: 1.5rem;
}

.footer-section .logo img {
    max-height: 80px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Page Header */
.page-header {
    padding: 20px 0 60px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
    text-align: center;
}

.header-content h1 {
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

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

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

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

.product-category-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: transparent;
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

/* Products Grid */
.products-grid {
    padding: 30px 0;
    background-color: #f9f7f3;
}

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

.product-card {
    background: white;
    width: 100%;
    max-width: 350px;
    padding: 5px;
    margin: auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    border: 1px solid #ddd;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

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

.product-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #d4b89e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: none;
}

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

.overlay-btn {
    background-color: #d4b89e;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: none;
    font-size: 0.9rem;
}

.overlay-btn:hover {
    background-color: #c9a98a;
    color: black;
}

.product-content {
    padding: 1.25rem;
}

.product-category {
    color: #d4b89e;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-title {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.product-features {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.feature-tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-features .feature-tag {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    background-color: #f9f9f9; /* A light gray background */
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}

.product-link {
    color: #d4b89e;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: none;
    font-size: 0.9rem;
}

.product-link:hover {
    gap: 0.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

.benefit-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-secondary);
}

/* Product Detail Page */
.product-details {
    padding: 30px 0;
    background-color: #f9f7f3;
}

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

.product-visual {
    position: static;
}

.main-image {
    margin-bottom: 1rem;
}

.main-image .image-placeholder {
    width: 100%;
    height: 350px;
    background: #d4b89e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.image-gallery {
    display: flex;
    gap: 0.75rem;
}

.gallery-item {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: none;
}

.gallery-item.active {
    border-color: #d4b89e;
}

.gallery-item .image-placeholder.small {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.25rem;
}

.product-info {
    padding-left: 1.5rem;
}

.price-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.description-section,
.features-section,
.technologies-section {
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.features-list i {
    color: #d4b89e;
    font-size: 0.9rem;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ddd;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #d4b89e;
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: none;
}

.btn-primary:hover {
    background-color: #c9a98a;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: none;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: none;
    box-shadow: none;
}

/* Process Section */
.process-section {
    padding: 40px 0;
    background-color: #f9f7f3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.step {
    text-align: center;
    position: relative;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #d4b89e;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background-color: #f9f7f3;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: none;
}

.faq-question:hover {
    background-color: #f9f7f3;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.faq-question i {
    color: #666;
    transition: none;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1.25rem 0;
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Related Services */
.related-services {
    padding: 40px 0;
    background-color: #f9f7f3;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.related-item {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: none;
    transition: none;
    border: 1px solid #ddd;
}

.related-item:hover {
    transform: none;
    box-shadow: none;
}

.related-icon {
    width: 50px;
    height: 50px;
    background: #d4b89e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.related-icon i {
    color: black;
    font-size: 1.25rem;
}

.related-item h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.related-item p {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.related-link {
    color: #d4b89e;
    text-decoration: none;
    font-weight: 500;
    transition: none;
    font-size: 0.9rem;
}

.related-link:hover {
    color: #c9a98a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero-container,
    .about-content,
    .product-layout,
    .story-content,
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .product-info {
        padding-left: 0;
    }

    .product-visual {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Should match header height */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography adjustments */
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .breadcrumb {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .btn {
        padding: 10px 20px;
    }

    /* Grid adjustments */
    .services-grid,
    .grid,
    .benefits-grid,
    .process-steps,
    .related-grid,
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

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

    /* Spacing adjustments */
    .hero,
    .about-preview,
    .featured-services,
    .products-grid,
    .why-choose-us,
    .product-details,
    .process-section,
    .faq-section,
    .related-services,
    .cta,
    .about-story,
    .mission-values,
    .team-section,
    .stats-section,
    .our-process,
    .admin-section {
        padding: 40px 0;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding-top: 100px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    /* Filter controls */
    .filter-controls {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    /* Product card adjustments */
    .product-card {
        width: 100%;
        max-width: 350px;
    }

    .product-image {
        height: 140px;
    }

    .product-content {
        padding: 0.8rem;
    }

    .product-title {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .product-features {
        display: none;
    }

    .product-price {
        background-color: #d4b89e;
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: var(--border-radius);
        box-shadow: inset 0 1px 3px 0 rgb(0 0 0 / 0.2);
        font-size: 0.9rem;
    }

    /* Category card adjustments */
    .category-card-content {
        padding: 1rem;
    }

    .category-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .category-card p {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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

    /* Hero graphic adjustments */
    .hero-image {
        order: -1; /* Move image above text */
    }
    
    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .floating-card i {
        font-size: 1.25rem;
    }
    
    .process-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 20px;
        top: 50px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 { font-size: 2rem; }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .service-card,
    .product-card,
    .benefit-item,
    .related-item,
    .value-item,
    .timeline-content {
        padding: 0.5rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 0.75rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .image-gallery {
        gap: 0.5rem;
    }

    .gallery-item {
        width: 60px;
        height: 60px;
    }

    .tech-tags {
        gap: 0.5rem;
    }

    .tech-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-graphic {
        width: 250px;
        height: 250px;
    }

    .hero-circle {
        width: 200px;
        height: 200px;
    }
    
    .footer-bottom p {
        font-size: 0.875rem;
    }
}
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    background-color: white;
    position: relative;
    z-index: 1001;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-main {
    height: 40px;
    margin-right: 10px;
}

.logo-secondary {
    height: 30px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #333;
}

nav a.admin-link {
    color: #d4b89e;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        border-top: 1px solid #ddd;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}



/* ADD THE FOLLOWING AT THE END OF style.css */

/* Category Page Styles */
.categories-grid {
    padding: 30px 0;
    background-color: #f9f7f3;
}

.category-card {
    background: white;
    border-radius: 4px;
    box-shadow: none;
    transition: none;
    border: 1px solid #ddd;
    display: block;
    text-decoration: none;
    color: #333;
    height: 100%;
}

.category-card:hover {
    transform: none;
    box-shadow: none;
    border-color: #d4b89e;
}

.category-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-icon {
    font-size: 2rem;
    color: #d4b89e;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1; /* Ensures footer link aligns */
}

.category-link {
    font-weight: 500;
    color: #d4b89e;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: none;
    margin-top: auto; /* Pushes the link to the bottom */
    font-size: 0.9rem;
}
.category-card:hover .category-link {
    gap: 0.5rem;
}



/* --- START: Admin & Dashboard Styles --- */
.admin-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.admin-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.admin-card {
    background: white;
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.admin-card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background-color: #fcfcfd;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}
.admin-card-header i {
    color: var(--primary-color);
}

.admin-card-body {
    padding: 2rem;
}

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

.admin-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fff;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.admin-form textarea {
    min-height: 80px;
}

.category-list .category-item {
    margin-bottom: 2rem;
}
.category-list .category-item:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.category-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

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

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}
.product-item:last-child {
    border-bottom: none;
}

.product-item:hover {
    background-color: var(--bg-secondary);
}

.product-item .product-name {
    font-weight: 500;
    color: var(--text-secondary);
}

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

.btn-admin {
    padding: 0.25rem 0.85rem;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 20px;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
    font-weight: 500;
}

.btn-admin-edit { background-color: var(--primary-color); }
.btn-admin-edit:hover { background-color: var(--primary-dark); transform: scale(1.05); }
.btn-admin-delete { background-color: #ef4444; }
.btn-admin-delete:hover { background-color: #dc2626; transform: scale(1.05); }

.edit-product-image-preview {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius);
}

.edit-product-image-preview p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.edit-product-image-preview img {
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    margin-top: 0.5rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}



/* Enhanced Admin Styles for Professional Look */
.admin-section {
    padding: 20px 0;
    background-color: #f9f7f3;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}



.admin-card {
    background: white;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: none;
    box-shadow: none;
}

.admin-card:hover {
    transform: none;
    box-shadow: none;
}

.admin-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #ddd;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-card-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.admin-card-header i {
    color: #d4b89e;
}

.admin-card-body {
    padding: 1.5rem;
}

.admin-form .form-group {
    margin-bottom: 1rem;
}

.admin-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: none;
    background-color: #fff;
    box-shadow: none;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: #d4b89e;
    box-shadow: none;
}

.admin-form textarea {
    min-height: 80px;
    resize: vertical;
}

.admin-form input[type="number"] {
    appearance: none;
}

/* Category List Styles */
.category-list .category-item {
    margin-bottom: 1rem;
    background: #f9f7f3;
    border-radius: 4px;
    padding: 1rem;
    box-shadow: none;
    border: 1px solid #ddd;
}

.category-list .category-item:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #ddd;
}

.category-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-header h3 i {
    color: #d4b89e;
}

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

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: none;
    border-bottom: 1px solid #ddd;
}

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

.product-item:hover {
    background-color: #f0f0f0;
}

.product-item .product-name {
    font-weight: 500;
    color: #333;
    flex: 1;
}

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

.btn-admin {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 4px;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: none;
    font-weight: 500;
    box-shadow: none;
}

.btn-admin-edit {
    background-color: #d4b89e;
}

.btn-admin-edit:hover {
    background-color: #c9a98a;
    transform: none;
    box-shadow: none;
}

.btn-admin-delete {
    background-color: #dc2626;
}

.btn-admin-delete:hover {
    background-color: #b91c1c;
    transform: none;
    box-shadow: none;
}

.edit-product-image-preview {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f9f7f3;
    border: 1px dashed #ddd;
    border-radius: 4px;
}

.edit-product-image-preview p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.edit-product-image-preview img {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    box-shadow: none;
}

/* Responsive Improvements */



/* Dashboard Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    padding: 0 10px;
}

.stat-card {
    background: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: none;
    text-align: center;
    border: 1px solid #ddd;
}

.stat-card i {
    font-size: 1.5rem;
    color: #d4b89e;
    margin-bottom: 0.5rem;
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #999;
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ddd;
}

.empty-state p {
    margin: 0;
    font-size: 1rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

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

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

.current-images {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.current-images img {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

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


/* Site Description Section */
.site-description-section {
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    position: relative;
    margin: 40px 0;
}

.site-description-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.site-description-section .container {
    position: relative;
    z-index: 2;
}

.site-description-section .section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #d4b89e;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 20px;
    background-color: rgba(212, 184, 158, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .site-description-section {
        padding: 80px 20px;
    }
    
    .site-description-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .description-content {
        font-size: 1rem;
        padding: 15px;
    }
}
/* Collaborators Section */
.collaborators-section {
  background-color: #363230; /* Dark background from image */
  color: #f0f0f0;
  padding: 60px 0;
}
.collaborators-section .section-header {
  margin-bottom: 40px;
}
.collaborators-section h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 15px; /* Space for the line */
}
/* Decorative line above the title */
.collaborators-section h2::before {
  content: '';
  position: absolute;
  top: -15px; /* Position above the title */
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color, #d4b89e); /* Gold color */
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.collaborator-card {
  text-align: center;
}
.collaborator-logo {
  margin-bottom: 20px;
  height: 160px; /* Sets a uniform height for the logo area */
  display: flex;
  align-items: center;     /* Vertically centers the logo */
  justify-content: center; /* Horizontally centers the logo */
}
.collaborator-logo:hover {
    transform: scale(1.05);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;

/* Horizontally centers the logo */
}

.collaborator-logo img {
  /* Sizing: Constrain logos without distorting them */
  max-width: 150px;
  max-height: 150px;
  
  /* Let the browser figure out the best dimensions */
  width: auto;
  height: auto;
  
  /* REMOVED: border-radius, border, object-fit */
}
.collaborator-name {
  color: var(--primary-color, #d4b89e);
  font-size: 1.4em;
  font-weight: 500;
  min-height: 44px; /* Ensures consistent alignment */
}
.collaborator-tagline {
  color: #f5b506;
  font-size: 1em;
  margin-top: 5px;
  margin-bottom: 15px;
  font-weight: bold;
}
.collaborator-details {
  list-style: none;
  padding: 0;
  /* This centers the list block while keeping text left-aligned */
  display: inline-block;
  text-align: left;
}
.collaborator-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px; /* Space for the bullet */
}
/* Custom bullet point */
.collaborator-details li::before {
  content: '•';
  color: var(--primary-color, #d4b89e);
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .collaborators-grid {
    grid-template-columns: 1fr; /* Stack cards vertically on mobile */
  }
  .collaborator-name {
      min-height: auto; /* Remove fixed height on mobile */
  }
}