/* Global Styles */
:root {
    --primary-color: #C5A47E;  /* Warm brass color */
    --secondary-color: #2B2D42;  /* Deep navy */
    --accent-color: #E6C35C;  /* Golden accent */
    --text-color: #2B2D42;
    --light-bg: #F8F8F8;  /* Lighter background */
    --white: #FFFFFF;
    --dark-bg: #1A1A1A;
    --gradient-primary: linear-gradient(135deg, #C5A47E 0%, #E6C35C 100%);
    --gradient-dark: linear-gradient(135deg, #2B2D42 0%, #1A1A1A 100%);
    --gradient-light: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    --gradient-brass: linear-gradient(135deg, #C5A47E 0%, #E6C35C 50%, #C5A47E 100%);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #F5F5F5;  /* Light gray background */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
.d-none {
    display: none !important;
}

/* Header Styles */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-divider {
    width: 100%;
    border: none;
    border-top: 2px solid var(--primary-color);
    opacity: 0.8;
}

.tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
    padding: 0.5rem;
    z-index: 1002;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none !important;
    }

    .header-logo {
        height: 60px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.75rem;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 164, 126, 0.1);
}

.mobile-nav-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-menu {
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.close-menu:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    border-radius: 5px;
}

.mobile-nav-links a:hover {
    background: rgba(197, 164, 126, 0.1);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.1), rgba(230, 195, 92, 0.1));
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    z-index: 3;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(197, 164, 126, 1);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.5);
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Products Section */
.products-section {
    padding: 5rem 1rem;
    background: var(--light-bg);
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.3));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Add a view details button to each product card */
.product-card::after {
    content: 'View Details';
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover::after {
    background: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-content p {
    max-width: 1000px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}
.about-content li {
    display: flex;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.3s;
}

.stats-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Process Section */
.process-section {
    padding: 5rem 1rem;
    background: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 1rem;
    background: var(--white);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.contact-form.visible {
    opacity: 1;
    transform: translateX(0);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

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

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

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, rgb(218 207 207 / 95%), rgb(236 228 228 / 95%));
    color: var(--text-color);
    padding: 4rem 2rem 2rem;
    position: relative;
    border-top: 1px solid rgba(197, 164, 126, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    padding: 1rem;
}

.footer-logo {

    height: 60px;
    margin-bottom: 1.5rem;
}

.company-description {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-section.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-section.contact-info ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(197, 164, 126, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .company-info {
        grid-column: 1 / -1;
    text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.8rem;
    }
}

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

.hero-content,
.product-card,
.stat-item,
.process-step {
    animation: fadeIn 1s ease-out;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--white);
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.modal-details {
    padding: 2rem;
}

.modal-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.modal-description {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-specs {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.modal-specs h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specs-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.specs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-list li:last-child {
    border-bottom: none;
}

.contact-btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Responsive adjustments for modal */
@media (min-width: 768px) {
    .modal-content {
        flex-direction: row;
    }
    
    .modal-image {
        width: 40%;
        height: auto;
        border-radius: 10px 0 0 10px;
    }
    
    .modal-details {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .modal-content {
        width: 95%;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .specs-list {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation Classes */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Spacing */
.products-section,
.about-section,
.process-section,
.contact-section {
    padding: 100px 0;
    overflow: hidden;
}

/* Section Headings */
h2 {
    text-align: center;
    margin-bottom: 50px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

h2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Welcome Section */
.welcome-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.95));
    text-align: center;
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.welcome-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Featured Products */
.featured-products {
    padding: 4rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.95), rgba(255, 255, 255, 0.95));
    position: relative;
    overflow: hidden;
}

.featured-products h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.product-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.product-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 0 1rem;
    width: 100%;
}

.category-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(197, 164, 126, 0.1);
    position: relative;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.2);
    z-index: 2;
}

.category-card img {
    width: 80%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.category-card h3 {
    padding: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.5rem;
    margin: 0;
}

.category-card .btn {
    display: block;
    margin: 1rem auto;
    width: 80%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
}

.product-slider-controls button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.product-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(197, 164, 126, 1);
}

.product-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.5);
}

.product-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design for Product Slider */
@media (max-width: 1024px) {
    .category-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 2rem 1rem;
    }

    .featured-products h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-slider {
        overflow: visible;
    }
    
    .product-slides {
        overflow: visible;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .product-slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .featured-products h2 {
        font-size: 1.8rem;
    }

    .category-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .category-card h3 {
        font-size: 1.3rem;
        padding: 1rem;
    }

    .product-slider-controls button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.05), rgba(230, 195, 92, 0.05));
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 45, 66, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    color: var(--primary-color);
}

.stat-label {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 2rem;
    }

    .stats-container {
        gap: 2rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 3rem 1rem;
    }

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

    .stat-item {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Banner Styles */
.banner-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.banner-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-item.active {
    opacity: 1;
}

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

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--text-color);
    background: linear-gradient(to top, 
        rgba(248, 248, 248, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    padding: 3rem;
}

.banner-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.banner-controls button {
    background: var(--secondary-color);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--white);
}

.banner-controls button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.banner-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        height: 60vh;
    }

    .banner-content {
        padding: 2rem;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .banner-dots {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 50vh;
    }

    .banner-content {
        padding: 1.5rem;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-dots {
        bottom: 80px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header */
    .navbar {
        padding: 1rem 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero Section */
    .hero-section {
        height: 400px;
        margin-top: 60px;
    }

    .hero-content {
        padding: 1.5rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    /* Banner */
    .banner-container {
        height: 50vh;
    }

    .banner-content {
        padding: 1.5rem;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    /* Products Section */
    .products-section {
        padding: 3rem 1rem;
    }

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

    .product-card {
        margin-bottom: 1.5rem;
    }

    /* Stats Section */
    .stats-section {
        padding: 3rem 1rem;
    }

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

    .stat-item {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    /* Footer */
    .main-footer {
        padding: 3rem 1rem 1rem;
    }

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

    .footer-section {
        padding: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
        padding-left: 2rem;
    }

    .footer-section ul li i {
        font-size: 1rem;
        width: 1.2rem;
    }

    .footer-section ul li span {
        font-size: 1rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    /* Process Section */
    .process-section {
        padding: 3rem 1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .process-step i {
        font-size: 2rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 3rem 1rem;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

    .welcome-content p {
        font-size: 1rem;
    }

    /* Featured Products */
    .featured-products {
        padding: 3rem 1rem;
    }

    .product-slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .category-card {
        width: 95%;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-section {
        height: 530px;
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .banner-container {
        height: 40vh;
    }

    .banner-content h2 {
        font-size: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Our Units Section */
.our-units {
    padding: 0rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.95));
}

.our-units h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.units-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.unit-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.2);
}

.unit-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.unit-card h3 {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.3rem;
    margin: 0;
}

@media (max-width: 768px) {
    .our-units {
        padding: 3rem 1.5rem;
    }
    
    .units-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .our-units {
        padding: 2rem 1rem;
    }
    
    .units-container {
        grid-template-columns: 1fr;
    }
}

/* Cable Gland Section */
.cable-gland-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.95), rgba(255, 255, 255, 0.95));
}

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

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

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

.cable-gland-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cable-gland-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(197, 164, 126, 0.1);
    text-decoration: none;
    display: block;
}

.cable-gland-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.2);
}

.card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: var(--transition);
}

.cable-gland-card:hover .card-image::after {
    background: linear-gradient(to bottom, 
        rgba(197, 164, 126, 0.1) 0%,
        rgba(197, 164, 126, 0.3) 100%
    );
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cable-gland-card:hover .card-image img {
    transform: scale(1.05);
}

.cable-gland-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 0.5rem;
    text-align: center;
    margin: 0;
    transition: var(--transition);
}

.cable-gland-card:hover h3 {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cable-gland-section {
        padding: 3rem 1rem;
    }

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

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

    .cable-gland-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 250px;
    }

    .cable-gland-card h3 {
        font-size: 1.3rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cable-gland-section {
        padding: 2rem 1rem;
    }

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

    .card-image {
        height: 200px;
    }

    .cable-gland-card h3 {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgb(218 207 207 / 95%), rgb(236 228 228 / 95%));
    color: var(--text-color);
    padding: 3rem 0;
    margin-top: 80px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgb(218 207 207 / 95%), rgb(236 228 228 / 95%));
    z-index: 1;
}

.header-content {
    max-width: 1200px;
    margin: 0 1rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

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

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

.breadcrumb .separator {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Responsive Design for Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0;
    }

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

    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .header-content {
        padding: 0 1rem;
    }
}

/* Product Details Section */
.product-details-section {
    padding: 2rem 1rem;
    background: var(--light-bg);
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.product-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.product-details-tables {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.size-chart {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.size-chart h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
}

table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: rgba(197, 164, 126, 0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-details-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-details-section {
        padding: 1.5rem 1rem;
    }

    .product-info h2 {
        font-size: 1.8rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .size-chart {
        padding: 1rem;
    }

    .size-chart h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    table th,
    table td {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-details-section {
        padding: 1rem;
    }

    .product-info h2 {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .size-chart {
        padding: 0.8rem;
    }

    .size-chart h3 {
        font-size: 1.2rem;
    }

    table th,
    table td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Product Overview Section */
.product-overview-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

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

.overview-content {
    text-align: center;
}

.overview-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.feature-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Product Catalog Section */
.product-catalog-section {
    padding: 4rem 2rem;
    background: var(--white);
}

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

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalog-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.catalog-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.catalog-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.catalog-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: var(--light-bg);
    padding: 1rem;
}

.item-details {
    padding: 1.5rem;
    text-align: center;
}

.item-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    transition: var(--transition);
}

.catalog-item:hover .item-details h3 {
    color: var(--accent-color);
}

/* Application Section */
.application-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.application-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.application-container h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.application-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.application-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.application-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.application-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-overview-section,
    .product-catalog-section,
    .application-section {
        padding: 3rem 1rem;
    }

    .overview-content h2,
    .catalog-header h2,
    .application-container h2 {
        font-size: 2rem;
    }

    .overview-content p,
    .catalog-header p {
        font-size: 1rem;
    }

    .feature-item,
    .application-item {
        padding: 1.5rem;
    }

    .feature-item i,
    .application-item i {
        font-size: 2rem;
    }

    .catalog-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-overview-section,
    .product-catalog-section,
    .application-section {
        padding: 2rem 1rem;
    }

    .overview-content h2,
    .catalog-header h2,
    .application-container h2 {
        font-size: 1.8rem;
    }

    .feature-item h3,
    .application-item h3 {
        font-size: 1.2rem;
    }

    .catalog-item img {
        height: 180px;
    }

    .item-details {
        padding: 1rem;
    }

    .item-details h3 {
        font-size: 1.1rem;
    }
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.h-100{
    height: 100px;
}

.d-flex{
    display: flex;
}
.h-75{
    height: 75px;;
}
.ms-10{
    margin-left: 10px;
}

/* Google Maps Section Styles */
.map-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.map-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-brass);
    border-radius: 2px;
}

.map-container {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    border-radius: 12px;
    transition: var(--transition);
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.map-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.map-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.map-info-item div {
    flex: 1;
}

.map-info-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.map-info-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.map-info-item .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-brass);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.map-info-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.4);
}

/* Responsive Design for Map Section */
@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }
    
    .map-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-info-item {
        padding: 1.25rem;
    }
    
    .map-info-item h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 2rem 0;
    }
    
    .map-section .container {
        padding: 0 1rem;
    }
    
    .map-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .map-info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .map-info-item i {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .map-info-item h4 {
        font-size: 1rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 28px;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}



@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* About Page Clean Styles */
.about-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    line-height: 1.8;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Lists Styling */
.features-list,
.products-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.features-list li,
.products-list li,
.contact-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 164, 126, 0.2);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.features-list li:last-child,
.products-list li:last-child,
.contact-list li:last-child {
    border-bottom: none;
}

.features-list li strong,
.products-list li strong,
.contact-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Highlight Text */
.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin: 40px 0 20px 0;
    font-weight: 500;
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin: 20px 0 30px 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
    display: inline-block;
}

.cta-buttons .btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.cta-buttons .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.4);
}

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

.cta-buttons .btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0 30px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0 60px;
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.6rem;
    }
    
    .lead-paragraph {
        font-size: 1.2rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        padding: 25px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 15px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .features-list li,
    .products-list li,
    .contact-list li {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        padding: 20px 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}