/* Custom styles to complement Tailwind CSS */
:root {
    --primary: #007BFF;
    --secondary: #0056b3;
}

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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.hero-slider {
    position: relative;
    height: 80vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/*logo home*/
.logo-home {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.slider-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-controls .dot.active {
    background-color: white;
}

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

/* Root Variables - Updated with brand colors */
:root {
    --color-primary: #6D6E71; /* Gray */
    --color-secondary: #F7941D; /* Orange */
    --color-blue: #F7941D; /* Changed from blue to orange */
    --color-yellow: #ffc82c; /* Yellow */
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #e0e0e0;
    --color-white: #ffffff;
    --transition-standard: all 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.56;
    text-decoration: none;
    color: #6D6E71;
    background-color: #F9F9F9;
    margin: 0;
    padding: 0;
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    body { font-size: 14px; }
}

/* Utility Classes */
.text-primary { 
  --tw-text-opacity: 1;
  color: rgb(247 148 29 / var(--tw-text-opacity, 1)); /* #F7941D */
}
.bg-primary { background-color: var(--color-primary); }
.hover\:text-primary:hover { 
  --tw-text-opacity: 1;
  color: rgb(247 148 29 / var(--tw-text-opacity, 1)); /* #F7941D */
}
.hover\:bg-primary:hover { background-color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-blue { color: var(--color-blue); }
.bg-blue { background-color: var(--color-blue); }
.text-yellow { color: var(--color-yellow); }
.bg-yellow { background-color: var(--color-yellow); }

/* Navigation Styles */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-size: larger;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F7941D; /* Changed from var(--color-blue) to orange */
    transition: width 0.3s ease;
}

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

/* Mobile Menu Animation */
.mobile-menu {
    /* transform: translateY(-100%); */
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

/* Logo Animation */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #F7941D; /* Changed from var(--color-blue) to orange */
  }

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    padding: 6rem;
}

.hero-slide.active {
    opacity: 1;
}


.hero-slide-1 {
      background-image: linear-gradient(#F7941D, rgba(247, 148, 29, 0.37)), url('../images/slider/3.jpg'); /* Changed from blue to orange */
}

.hero-slide-2 {
    background-image: linear-gradient(#F7941D, rgba(247, 148, 29, 0.37)), url('../images/slider/4.png'); /* Changed from blue to orange */
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--color-secondary);
    transform: scale(1.2);
}
/*a bout css*/
.about-section {
    padding: 4rem 0;
    position: relative;
}

.about-section:nth-child(even) {
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 49, 146, 0.2), rgba(46, 49, 146, 0));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: #F7941D; /* Changed from var(--color-blue) to orange */
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-text h3 i {
    color: #F7941D; /* Changed from var(--color-blue) to orange */
    font-size: 1.75rem;
}

.about-text p {
    color: #4a5568;
    line-height: 1.7;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #F7941D; /* Changed from var(--color-blue) to orange */
    transition: width 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.value-card:hover::before {
    width: 8px;
}

.value-card h3 {
    color: #F7941D; /* Changed from var(--color-blue) to orange */
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-card h3 i {
    font-size: 1.5rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.about.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.about.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.5; 
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

/* Shape Divider Styles */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 46px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #f9fafb;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Feature Card Styles */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Client Logo Styles */
.client-logo {
    filter: grayscale(100%) opacity(80%);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    filter: none;
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
}

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

.about-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.objective-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    transition: transform 0.3s ease;
}

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

.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.1);
}

.submit-button {
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 49, 146, 0.2);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Page Styles */
.gallery-section {
    padding: 4rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* References Page Styles */
.references-section {
    padding: 4rem 0;
}

.reference-logo {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    color: white;
    padding: 4rem 0 2rem;
    background-color: rgb(109, 110, 113) !important;
  }

.footer h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.footer .social-links a:hover {
    background-color: #F7941D; /* Changed from var(--color-blue) to orange */
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in;
}

/* Custom hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Custom shadows */
.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom gradients */
.gradient-primary {
    background: linear-gradient(135deg, #F7941D 0%, #e58718 100%); /* Changed from blue gradient to orange gradient */
}

/* Custom form styles */
.form-input {
    display: block;
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Custom button styles */
.btn-primary {
    padding: 0.5rem 1rem;
    background-color: #3b82f6;
    color: white;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    padding: 0.5rem 1rem;
    background-color: #e5e7eb;
    color: #1f2937;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

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

/* Custom card styles */
.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom section spacing */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Custom container width */
.container-custom {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Custom grid layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Custom image styles */
.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Custom text styles */
.text-gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Custom loading spinner */
.spinner {
    animation: spin 1s linear infinite;
    height: 1.25rem;
    width: 1.25rem;
    color: #3b82f6;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Custom alert styles */
.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #ecfdf5;
    color: #047857;
}

.alert-error {
    background-color: #fef2f2;
    color: #b91c1c;
}

.alert-warning {
    background-color: #fffbeb;
    color: #92400e;
}

.alert-info {
    background-color: #fff8f0; /* Changed from blue-tinted to orange-tinted */
    color: #F7941D; /* Changed from blue to orange */
}

/* Custom table styles */
.table-custom {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-custom th {
    padding: 0.75rem 1.5rem;
    background-color: #f9fafb;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-custom td {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Custom modal styles */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(107, 114, 128, 0.5);
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

.modal-content {
    position: relative;
    top: 5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem;
    border-width: 1px;
    width: 24rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    background-color: white;
}

/* Custom tooltip styles */
.tooltip {
    visibility: hidden;
    position: absolute;
}

.tooltip-trigger:hover .tooltip {
    visibility: visible;
    z-index: 50;
}

/* Custom responsive utilities */
@media (max-width: 640px) {
    .mobile-hidden {
        display: none;
    }
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
} 

/*Add custom CSS for the logos grid*/
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.logo-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* General Styles */
.product-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.product-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.product-gallery {
    flex: 1;
    max-width: 50%;
}

.product-gallery .main-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail-grid {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    max-width: 100%;
}

.product-title {
    font-size: 2rem;
    color: #F7941D;
    margin-bottom: 10px;
}

.product-reference span {
    font-weight: bold;
    color: #6D6E71;
}

.product-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-highlights h2 {
    font-size: 1.5rem;
    color: #F7941D;
    margin-bottom: 10px;
}

.product-highlights ul {
    list-style: disc;
    padding-left: 20px;
}

.product-actions {
    margin-top: 20px;
}

.cta-button {
    background-color: #F7941D;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #D87A1A;
}

.cta-button.secondary {
    background-color: #6D6E71;
    margin-left: 10px;
}

.cta-button.secondary:hover {
    background-color: #5A5B5E;
}

/* Specifications Section */
.product-specs {
    margin-bottom: 40px;
}

.product-specs h2 {
    font-size: 1.8rem;
    color: #F7941D;
    margin-bottom: 20px;
}

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

.product-specs th,
.product-specs td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.product-specs th {
    color: #6D6E71;
    font-weight: bold;
}

/* Applications Section */
.product-applications h2 {
    font-size: 1.8rem;
    color: #F7941D;
    margin-bottom: 10px;
}

.product-applications ul {
    list-style: disc;
    padding-left: 20px;
}

/* Gallery Section */
.product-gallery-full h2 {
    font-size: 1.8rem;
    color: #F7941D;
    margin-bottom: 20px;
}

.gallery-grid {
    display: flex;
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Accessories Section */
.related-accessories h2 {
    font-size: 1.8rem;
    color: #F7941D;
    margin-bottom: 20px;
}

.accessories-grid {
    display: flex;
    gap: 20px;
}

.accessory-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.accessory-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.accessory-card h3 {
    font-size: 1.2rem;
    color: #6D6E71;
    margin-bottom: 10px;
}

.accessory-card p {
    color: #6D6E71;
    font-size: 0.9rem;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 37.5rem;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-controls {
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #fff;
}

/* Testimonials Section */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Logo Grid Improvements */
.logos-carousel .grid > div {
    transition: all 0.3s ease;
}

.logos-carousel .grid > div:hover {
    transform: scale(1.05);
}

/* Header Styles - Enhanced with brand colors */
.nav-container {
    transition: var(--transition-standard);
    border-bottom: 1px solid rgba(109, 110, 113, 0.1); /* Using brand gray with transparency */
}

.nav-container.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.logo-container img {
    transition: height 0.3s ease;
}

.nav-link {
    position: relative;
    overflow: hidden;
    color: var(--color-primary); /* Using brand gray for text */
}

.nav-link:hover {
    color: var(--color-secondary); /* Using brand orange for hover */
}

/* Menu item animation */
.menu-item-animation {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

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

/* Mobile menu - Enhanced with brand colors */
.mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--color-white);
    border-left: 3px solid var(--color-secondary); /* Brand orange border */
}

/* Hover effect for desktop menu items - Updated with brand colors */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary); /* Brand orange underline */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active menu item */
.nav-link.active {
    color: var(--color-secondary); /* Brand orange for active items */
    font-weight: 500;
}

/* Contact button pulse effect - Updated with brand orange */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.4); /* Brand orange with transparency */
    }
    70% {
        box-shadow: 0 0 0 10px rgba(247, 148, 29, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
    }
}

/* Contact button styling */
.nav-container a[href="contact.php"] {
    background-color: var(--color-secondary); /* Brand orange background */
    animation: pulse 2s infinite;
    transition: var(--transition-standard);
}

.nav-container a[href="contact.php"]:hover {
    background-color: #e58718; /* Darker shade of brand orange */
    transform: translateY(-2px);
}

/* Top bar styling - Updated with brand colors */
.top-bar {
    background: linear-gradient(90deg, var(--color-primary) 0%, #5a5b5e 100%); /* Gradient using brand gray */
}

.top-bar a:hover {
    color: var(--color-secondary); /* Brand orange for hover states */
}

/* Social media icons */
.social-icon {
    transition: var(--transition-standard);
    color: var(--color-white);
}

.social-icon:hover {
    color: var(--color-secondary); /* Brand orange for hover */
    transform: translateY(-2px);
}

/* Mobile menu enhancements */
@media (max-width: 768px) {
    .mobile-menu {
        width: 100%;
        height: 100vh;
    }
    
    .mobile-menu .nav-link {
        border-left: 3px solid transparent;
        transition: var(--transition-standard);
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        border-radius: 0.25rem;
    }
    
    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link.active {
        border-left-color: var(--color-secondary); /* Brand orange border */
        background-color: rgba(247, 148, 29, 0.05); /* Very light brand orange background */
        padding-left: 1.25rem;
    }
    
    .mobile-menu .nav-link.active {
        background-color: rgba(247, 148, 29, 0.1); /* Slightly darker for active state */
    }
    
    /* Mobile contact button */
    .mobile-menu a[href="contact.php"] {
        background-color: var(--color-secondary); /* Brand orange */
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.375rem;
        font-weight: 500;
        transition: var(--transition-standard);
        text-align: center;
        display: block;
        margin-top: 1rem;
    }
    
    .mobile-menu a[href="contact.php"]:hover {
        background-color: #e58718; /* Darker shade of brand orange */
    }
}

/* Custom button styles with brand colors */
.btn-primary {
    background-color: var(--color-secondary); /* Brand orange */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: var(--transition-standard);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #e58718; /* Darker shade of brand orange */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-primary); /* Brand gray */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: var(--transition-standard);
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #5a5b5e; /* Darker shade of brand gray */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--color-secondary); /* Brand orange border */
    color: var(--color-secondary);
    background-color: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: var(--transition-standard);
    font-weight: 500;
}

.btn-outline:hover {
    background-color: var(--color-secondary); /* Brand orange */
    color: white;
    transform: translateY(-2px);
}

/* Card styles with brand colors */
.card {
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-standard);
    overflow: hidden;
    border-top: 3px solid var(--color-secondary); /* Brand orange accent */
}

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

/* Section titles with brand colors */
.section-title {
    color: var(--color-primary); /* Brand gray */
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary); /* Brand orange underline */
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Accent text colors */
.text-accent {
    color: var(--color-secondary); /* Brand orange */
}

.text-muted {
    color: var(--color-primary); /* Brand gray */
    opacity: 0.8;
}

/* Custom list styles */
.custom-list {
    list-style: none;
    padding-left: 1.5rem;
}

.custom-list li {
    position: relative;
    margin-bottom: 0.5rem;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary); /* Brand orange bullet */
}

/* Divider with brand colors */
.divider {
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(109, 110, 113, 0.1) 0%, 
        rgba(109, 110, 113, 0.5) 50%, 
        rgba(109, 110, 113, 0.1) 100%); /* Gradient using brand gray */
    margin: 2rem 0;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-primary {
    background-color: var(--color-secondary); /* Brand orange */
    color: white;
}

.badge-secondary {
    background-color: var(--color-primary); /* Brand gray */
    color: white;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid var(--color-secondary); /* Brand orange */
    color: var(--color-secondary);
}

/* Form input styles */
.form-input {
    border: 1px solid var(--color-gray-medium);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: var(--transition-standard);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary); /* Brand orange */
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1); /* Brand orange with transparency */
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary); /* Brand gray */
    font-weight: 500;
}

/* Custom checkbox */
.custom-checkbox {
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: #fff;
    border: 1px solid var(--color-gray-medium);
    border-radius: 0.25rem;
    transition: var(--transition-standard);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--color-secondary); /* Brand orange */
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--color-secondary); /* Brand orange */
    border-color: var(--color-secondary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 0.45rem;
    top: 0.2rem;
    width: 0.25rem;
    height: 0.5rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
