:root {
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fb923c;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    
 /* background: #f97316; */
    padding: 0.5rem;
    /* border-radius: 0.5rem; */
    color: rgb(67, 57, 249);
    font-size: 2rem;
    
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.logo-text p {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.nav-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.nav-btn:hover {
    background: #dbeafe;
    color: #f97316;
}

.nav-btn.active {
    background:linear-gradient(135deg, #f97316, #1e40af);;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-contact {
    text-align: right;
}

.header-contact p {
    font-size: 0.875rem;
    color: #6b7280;
}

.header-contact .phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: #7d4e2d;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.mobile-menu-btn:hover {
    background: #f3f4f6;
}

.nav-mobile {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-btn-mobile {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
    text-align: left;
}

.nav-btn-mobile:hover {
    background: #dbeafe;
}

.nav-btn-mobile.active {
    background: #f97316;
    color: white;
}

.mobile-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-contact p {
    font-size: 0.875rem;
    color: #6b7280;
}

.mobile-contact .phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f97316;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #f97316;
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #f97316;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #ea580c);
    color: white;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/back2.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    line-height: 1.6;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a, #ea580c);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #dbeafe;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.product-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #6b7280;
}

/* Services */
.services {
    padding: 4rem 0;
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #dbeafe;
}

.service-icon {
    background: #f97316;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #ea580c;
}

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
}

/* Stats */
.stats {
    padding: 4rem 0;
    /* background: #1e3a8a; */
    color: white;
     background: linear-gradient(135deg, #f97316, #1e40af);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #dbeafe;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f97316, #1e40af);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.company-story {
    padding: 4rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: #f97316;
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: bold;
}

.badge-text {
    font-size: 0.875rem;
}

.mission-vision {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    background: #f97316;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
}

.core-values {
    padding: 4rem 0;
    background: white;
}

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

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #dbeafe;
}

.value-icon {
    background: #f97316;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #ea580c;
}

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

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b7280;
}

.achievements {
    padding: 4rem 0;
    background: #1e3a8a;
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.achievements-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.achievements-content p {
    font-size: 1.25rem;
     color: #0c70e2;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.achievement-item i {
    color: #0c70e2;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.achievement-item span {
   color: #0c70e2;
    font-size: 1.125rem;
}

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

.stat-box {
    background: #1e40af;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: #93c5fd;
}

/* Products Page Styles */
.product-filters {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.filter-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f6f3f3;
    color: #374151;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: #dbeafe;
    color: #f97316;
}

.filter-btn.active {
    background: #f97316;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.products-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.products-count {
    margin-bottom: 2rem;
}

.products-count p {
    color: #6b7280;
}

.product-categories {
    padding: 4rem 0;
    background: white;
}

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

.category-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: #dbeafe;
}

.category-icon {
    background: #f97316;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: #ea580c;
}

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

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #6b7280;
}

/* Brands Page Styles */
.brand-values {
    padding: 4rem 0;
    background: white;
}

.brands-section {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.brand-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.brand-card > * {
    padding: 0 2rem;
}

.brand-card > *:first-child {
    padding-top: 2rem;
}

.brand-card > *:last-child {
    padding-bottom: 2rem;
}

.brand-logo {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.brand-logo.blue { background: #f97316; color: white; }
.brand-logo.green { background: #059669; color: white; }
.brand-logo.emerald { background: #10b981; color: white; }
.brand-logo.purple { background: #7c3aed; color: white; }
.brand-logo.orange { background: #ea580c; color: white; }
.brand-logo.indigo { background: #4f46e5; color: white; }

.brand-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.brand-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-products, .brand-features {
    margin-bottom: 1.5rem;
}

.brand-products h4, .brand-features h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.brand-products ul {
    list-style: none;
}

.brand-products li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.brand-products li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #f97316;
    border-radius: 50%;
}

.brand-features ul {
    list-style: none;
}

.brand-features li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-features i {
    color: #f97316;
}
.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 0;
    margin-left: 30px;
    margin-right: 30px;
}

.brand-logos img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logos img:hover {
    transform: scale(1.05);
}


/* Contact Page Styles */
.contact-info {
    padding: 4rem 0;
    background: white;
}

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

.contact-card {
    text-align: center;
    background: #f9fafb;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #f97316;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-desc {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-form-section {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-header i {
    color: #f97316;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.additional-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card.emergency {
    background: #fef2f2;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.info-card.emergency h3 {
    color: #991b1b;
}

.info-card ul {
    list-style: none;
    color: #6b7280;
}

.info-card li {
    margin-bottom: 0.75rem;
}

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

.location {
    border-left: 4px solid #f97316;
    padding-left: 1rem;
}

.location h4 {
    font-weight: 600;
    color: #111827;
}

.location p {
    color: #6b7280;
    font-size: 0.875rem;
}

.location .phone {
    color: #f97316;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #991b1b;
    margin: 0.5rem 0;
}

.emergency-note {
    color: #dc2626;
    font-size: 0.875rem;
}

.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #6b7280;
}

/* Footer Styles */
.footer {
    background: #111827;
    color: white;
}

.footer-main {
    padding: 3rem 0;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-logo .logo-icon {
    /* background: #f97316; */
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.9rem;
    color: #5d93ef;
    margin-bottom: 15px;
    cursor: pointer;
    
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #9ca3af;
    cursor: pointer;
   
}
.footer-logo h3:hover{
color: #0970ee;
}



.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-links a {
    background: #374151;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f97316;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: #111827;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: #0970ee;
    margin-top: 0.125rem;
    flex-shrink: 0;
    margin-left: 2px;
}
.contact-item  :hover{
    color: #72a9ed;
}
.contact-item span {
    color: whitesmoke;
}

.business-hours {
    margin-top: 1rem;
}

.business-hours h5 {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.business-hours p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-newsletter {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.newsletter-text p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem 0 0 0.5rem;
    color: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f97316;
}

.newsletter-form button {
    padding: 0.5rem 1.5rem;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ea580c;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop,
    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .story-grid,
    .achievements-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }

    .category-filters {
        justify-content: center;
    }

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

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .page-hero p {
        font-size: 1.125rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .products-grid,
    .services-grid,
    .values-grid,
    .categories-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Mobile Navigation Toggle */
.nav-mobile.show {
    display: flex;
}

/* Product Detail Styles */
.product-detail {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2585eb;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    width: 100px;
}

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

.product-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #f97316;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-action {
    width: 100%;
    background: #f97316;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-action:hover {
    background: #ea580c;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 2rem;
    height: 2rem;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* No Results State */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-results i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-btn,
    .nav-mobile {
        display: none;
    }
    
    .page {
        display: block !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* .pagination button {
  background: #f97316;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
}

.pagination button.active {
  background: #ea580c;
}

.pagination button:hover {
  background: #1e40af;
} */
 /* Pagination buttons - always visible numbers */
.pagination button,
#pagination-container button {
  background: #fff; /* white background by default */
  color: #374151;   /* dark gray text always visible */
  border: 1px solid #d1d5db; /* light gray border */
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

/* Hover effect - changes background color, keeps text readable */
.pagination button:hover,
#pagination-container button:hover {
  background: var(--accent-light);
  color: #fff; /* white text on hover */
}

/* Active page - solid border & accent background */
.pagination button.active,
#pagination-container button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}



/* Enhancements */

/* Enhanced hero styles */
.hero-enhanced { min-height: 70vh; display: grid; grid-template-columns: 1fr 420px; gap: 2rem; align-items: center; }
.hero-cards { display:flex; flex-direction:column; gap:1rem; }
.hero-card { position: relative; border-radius: 12px; overflow:hidden; box-shadow:0 10px 30px rgba(2,6,23,0.08); }
.hero-card img { width:100%; height:140px; object-fit:cover; display:block; transition:transform 0.5s ease; }
.hero-card:hover img { transform:scale(1.06); }
.hero-card-label { position:absolute; bottom:8px; left:8px; background:rgba(0,0,0,0.6); color:white; padding:6px 10px; border-radius:8px; font-weight:600; font-size:0.9rem; }
/* product card modern */
.product-card.product-detail { display:flex; flex-direction:column; border-radius:14px; overflow:hidden; background:linear-gradient(180deg, #ffffff, #fbfdff); box-shadow: 0 15px 35px rgba(2,6,23,0.06); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.product-card.product-detail .product-image { height: 220px; position:relative; }
.product-card.product-detail .product-image img { width:100%; height:100%; object-fit:cover; display:block; }
.product-card.product-detail .product-badge { position:absolute; top:12px; left:12px; background:rgba(37,99,235,0.95); color:white; padding:6px 10px; border-radius:8px; font-weight:600; font-size:0.85rem; }
.product-card.product-detail .product-info { padding:16px; display:flex; flex-direction:column; gap:12px; }
.product-card.product-detail .muted-text { color:#6b7280; font-size:0.95rem; }
.feature-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:6px; margin:0; }
.feature-item { display:flex; align-items:center; gap:8px; color:#374151; font-size:0.95rem; }
.feature-dot { width:8px; height:8px; background:#f97316; border-radius:50%; display:inline-block; }
/* quick view button */
.quickview-btn { margin-top:8px; align-self:flex-start; padding:8px 12px; border-radius:8px; background:#f97316; color:white; border:none; cursor:pointer; font-weight:600; }
/* subtle entrance */
@keyframes enterUp { from { transform: translateY(18px); opacity:0 } to { transform: translateY(0); opacity:1 } }
.enter-up { animation: enterUp 420ms cubic-bezier(.2,.9,.2,1) both; }
/* modal */
.modal-hidden { display:none; }
.modal-show { display:block; position:fixed; inset:0; z-index:2000; }
.modal-backdrop { position:fixed; inset:0; background:rgba(2,6,23,0.5); }
.modal-panel { position:fixed; left:50%; top:50%; transform:translate(-50%,-50%); width:90%; max-width:900px; background:white; border-radius:12px; box-shadow:0 30px 80px rgba(2,6,23,0.2); z-index:2001; overflow:hidden; }
.modal-close { position:absolute; right:12px; top:8px; font-size:28px; border:none; background:none; cursor:pointer; color:#374151; }
.modal-content { padding:24px; }
.modal-grid { display:grid; grid-template-columns: 1fr 1fr; gap:1rem; align-items:start; }
.modal-image img { width:100%; height:100%; object-fit:cover; border-radius:8px; max-height:420px; }
@media(max-width:900px) {
    .hero-enhanced { grid-template-columns: 1fr; padding-bottom:1rem; }
    .hero-cards { flex-direction:row; }
    .modal-grid { grid-template-columns: 1fr; }
}
/* small UI touches */
.btn-outline { background:transparent; border:2px solid white; color:white; }
.wow-fade-up { opacity:0; transform:translateY(8px); transition: all 700ms cubic-bezier(.2,.9,.2,1); }
.wow-fade-right { opacity:0; transform:translateX(-18px); transition: all 700ms cubic-bezier(.2,.9,.2,1); }
.wow-fade-left { opacity:0; transform:translateX(18px); transition: all 700ms cubic-bezier(.2,.9,.2,1); }
.wow-fade-up.visible, .wow-fade-right.visible, .wow-fade-left.visible { opacity:1; transform:none; }


/* Product grid alignment */
#products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.8rem;
    align-items: stretch;
}
.product-card.product-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card.product-detail:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.product-card.product-detail .product-image {
    height: 220px;
    overflow: hidden;
}
.product-card.product-detail .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card.product-detail:hover .product-image img {
    transform: scale(1.05);
}
.product-card.product-detail .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

/* Improved modal styling */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.modal-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}
.modal-info h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #111827;
}
.modal-info p {
    margin-bottom: 1rem;
    color: #4b5563;
}
.modal-info ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: #374151;
}
@media(max-width: 900px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
}


/* Alternate section backgrounds */
section:nth-of-type(even) {
    background-color: #f9fafb;
}
section:nth-of-type(odd) {
    background-color: #ffffff;
}


/* Category pills */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.category-nav button {
    background: #fff;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.category-nav button.active,
.category-nav button:hover {
    background: var(--accent);
    color: #fff;
}


/* Breadcrumb styling */
.breadcrumb {
    font-size: 0.9rem;
    margin: 1rem 0;
    color: #6b7280;
}
.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}


/* Pagination upgrade */
.pagination {
    display: flex;
    gap: 0.4rem;
    margin-top: 1.5rem;
    justify-content: center;
}
.pagination button {
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pagination button:hover {
    background: var(--accent-light);
    color: #fff;
}
.pagination button.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}


/* Mobile menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
}
.mobile-nav.open {
    display: flex;
    max-height: 400px;
}
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-nav-toggle { display: block; cursor: pointer; }
}


/* Consistent button styles */
.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--accent-dark);
}


/* Condensed pagination ellipses */
.pagination span,
#pagination-container span {
  padding: 0.5rem 0.75rem;
  color: #9ca3af;
}
/* Disabled state for prev/next if needed */
.pagination button:disabled,
#pagination-container button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
