/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: black;
}

html {
    scroll-behavior: smooth;
}



body {
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0px; /* Adjust this to match your header height! */
    background-color: #000000 !important;
}




.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

header {
    background-color: #fde6d7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;      /* or 1400px, as you like */
    margin: 0 auto;
    padding: 1rem 20px;     /* padding for breathing room */
    width: 100%;
    box-sizing: border-box;
}



.logo {
    width: 180px;
}

.logo img {
    width: 140%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}
h2 {
    color: #c8a97e;
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #c8a97e;
}

/* Navigation Styles */
.nav-menu {
    transition: transform 0.3s ease-in-out;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    margin-left: 30px;
}

.nav-menu ul li:last-child {
    margin-right: 0;
}

.nav-menu ul li a {
    color: #000;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #000;
}

.nav-menu ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #c8a97e;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover:after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 0px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu ul li {
        margin: 15px 0;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        color: #333;
    }

    .nav-menu ul li a:hover {
        color: #c8a97e;
    }

    header {
        padding: 15px 0;
    }

    .logo {
        width: 150px;
    }

    .header-container {
        padding: 0 15px;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        transform: translateX(0);
    }

    .hamburger {
        display: none !important;
    }
}
/* Hero Slider */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.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;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

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

.hero-slider .btn {
    color: white;
    background-color: rgba(200, 169, 126, 0.2);
    border: 2px solid #c8a97e;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-slider .btn:hover {
    background-color: rgba(200, 169, 126, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    text-align: center;
}

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

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay h3 {
    margin-bottom: 10px;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 90%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #c8a97e;
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(200,169,126,0.3);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-content {
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #c8a97e;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 2rem;
    color: #c8a97e;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #222;
}

.feature-item p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top-color: #c8a97e;
}

.mission-card i {
    font-size: 2.5rem;
    color: #c8a97e;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    color: white;
}

.gallery-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    text-align: center;
}

.gallery-btn:hover {
    background: white;
    color: #c8a97e;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-btn {
    transform: translateY(0);
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Wider container for the section */
.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Strengths Section */
.strengths-section {
    padding: 80px 0;
    background: white;
}

/* Single-row grid for 5 columns */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.strength-card {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.strength-icon {
    font-size: 3rem;
    color: #c8a97e;
    margin-bottom: 20px;
}

.strength-card h3 {
    margin-bottom: 15px;
    color: #222;
}

/* Responsive: stack columns on small screens */
@media (max-width: 1100px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    width: 3px;
    background: #c8a97e;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-step {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #c8a97e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    top: 20px;
}

.process-step:nth-child(odd) .step-number {
    right: -25px;
}

.process-step:nth-child(even) .step-number {
    left: -25px;
}

.step-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-content h3 {
    color: #c8a97e;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #c8a97e;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #c8a97e;
    opacity: 0.3;
    font-family: serif;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #c8a97e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1484154218962-a197022b5858?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

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

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #c8a97e;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    margin-right: 15px;
    color: #c8a97e;
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: none;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c8a97e;
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: #c8a97e;
    outline: none;
}

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

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contact-info, .contact-form {
    width: 100%;
  }
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px 12px 0;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: black;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 16px;
  color: #777;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #c8a97e;
}









/* Product Page Styles */
.product-page {
    padding-top: 90px;
}

.product-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

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

.product-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.product-details {
    padding: 80px 0;
}

.product-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.features-list li {
    text-align: left;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.features-list i {
    color: #c8a97e;
    margin-right: 10px;
}

.product-gallery {
    margin-top: 80px;
}

.product-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

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

/* Footer Styles */
footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-main {
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    /*transition: transform 0.3s ease, opacity 0.3s ease;*/
}

.footer-logo img:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 25px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(200, 169, 126, 0.3);
    transition: left 0.3s ease;
}

.footer-social a:hover::before {
    left: 0;
}

.footer-social a:hover {
    background: #c8a97e;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #c8a97e, transparent);
}

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

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

.footer-section a {
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c8a97e;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    color: #c8a97e;
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
}

.contact-info i {
    color: #c8a97e;
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.copyright {
    font-size: 0.9rem;
    color: #fff;
}

#current-year {
    color: #c8a97e;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #c8a97e;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu ul li {
        margin: 15px 0;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        color: #333;
    }

    .nav-menu ul li a:hover {
        color: #c8a97e;
    }

    header {
        padding: 15px 0;
    }

    .logo {
        width: 150px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-section li {
        margin-bottom: 0;
    }
    
    .footer-section a {
        padding-left: 0;
    }
    
    .footer-section a::before {
        display: none;
    }
    
    .footer-section a:hover {
        padding-left: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .process-timeline:before {
        left: 30px;
    }
    
    .process-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .process-step:nth-child(even) {
        left: 0;
    }
    
    .step-number {
        left: 5px !important;
        right: auto !important;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-overlay {
        bottom: 0;
        background: rgba(0,0,0,0.5);
    }
    
    .gallery-overlay h3,
    .gallery-btn {
        transform: translateY(0);
        opacity: 1;
    }

    .product-hero {
        height: 50vh;
    }
    
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-content h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
        right: 0;
    }
    
    .experience-badge span {
        font-size: 1.8rem;
    }
    
    .experience-badge p {
        font-size: 0.7rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .footer-logo img {
        width: 160px;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        transform: translateX(0);
    }

    .hamburger {
        display: none !important;
    }
}

.black-button {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.black-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: 0;
}

.black-button:hover::before {
    left: 0;
}

.black-button:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Ensure Hero Section Text is White */
.hero-slider .slide-content h1,
.hero-slider .slide-content p {
    color: white !important;
}

/* Ensure Contact Section Text is White */
.contact-section,
.contact-section h2,
.contact-section p,
.contact-section label,
.contact-section input,
.contact-section textarea,
.contact-section select {
    color: white !important;
}

/* Ensure Product Overlay Text is White */
.product-card:hover .product-overlay h3,
.product-card:hover .product-overlay p {
    color: white !important;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    color: white;
}

/* Updated Footer Styles (to match modular-kitchen.css) */
/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 60px 0 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.footer__description {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: #c8a97e;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(200, 169, 126, 0.5);
}

.footer__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: #c8a97e;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #c8a97e;
    transition: width 0.3s ease;
}

.footer__links a:hover {
    color: #c8a97e;
}

.footer__links a:hover::after {
    width: 100%;
}

.footer__contact-list {
    list-style: none;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #fff;
    font-size: 0.9rem;
}

.footer__contact-list li span {
    color: #fff;
    flex: 1;
}

.footer__contact-list i {
    color: #c8a97e;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1rem;
}

.footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    background: #111;
    text-align: center;
}

.footer__copyright {
    color: #fff;
    font-size: 0.85rem;
}

.footer__copyright #current-year {
    color: #c8a97e;
    font-weight: 600;
}

.footer__legal {
    margin-top: 10px;
}

.footer__legal a {
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #c8a97e;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer__logo {
        margin: 0 auto 20px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer__links li {
        margin-bottom: 0;
    }

    .footer__contact-list {
        justify-content: center;
    }

    .footer__contact-list li {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footer__contact-list i {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .footer__legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer__logo {
        width: 150px;
    }

    .footer__title {
        font-size: 1.2rem;
    }

    .footer__social a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer__description,
    .footer__links a,
    .footer__contact-list li,
    .footer__copyright,
    .footer__legal a {
        font-size: 0.8rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 60px 0 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    width: 180px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.footer__description {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social a i {
    color: #fff !important;
}

.footer__social a:hover {
    background: #c8a97e;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(200, 169, 126, 0.5);
}

.footer__social a:hover i {
    color: #fff !important;
}

.footer__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: #c8a97e;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #c8a97e;
    transition: width 0.3s ease;
}

.footer__links a:hover {
    color: #c8a97e;
}

.footer__links a:hover::after {
    width: 100%;
}

.footer__contact-list {
    list-style: none;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #fff;
    font-size: 0.9rem;
}

.footer__contact-list li span {
    color: #fff;
    flex: 1;
}

.footer__contact-list i {
    color: #c8a97e;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1rem;
}

.footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    background: #111;
    text-align: center;
}

.footer__copyright {
    color: #fff;
    font-size: 0.85rem;
}

.footer__copyright #current-year {
    color: #c8a97e;
    font-weight: 600;
}

.footer__legal {
    margin-top: 10px;
}

.footer__legal a {
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #c8a97e;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer__logo {
        margin: 0 auto 20px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer__links li {
        margin-bottom: 0;
    }

    .footer__contact-list {
        justify-content: center;
    }

    .footer__contact-list li {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footer__contact-list i {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .footer__legal {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer__logo {
        width: 150px;
    }

    .footer__title {
        font-size: 1.2rem;
    }

    .footer__social a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer__description,
    .footer__links a,
    .footer__contact-list li,
    .footer__copyright,
    .footer__legal a {
        font-size: 0.8rem;
    }
}


.form-message {
  margin-top: 15px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(10px);
}

.form-message.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Ensure input text and textarea content is black */
.form-control {
  color: black !important;
  background-color: #fff; /* Ensure good contrast */
  border: 1px solid #ccc;
}

/* Placeholder styling for all browsers */
.form-control::placeholder {
  color: #555 !important;
  opacity: 1; /* Ensure full opacity */
}

/* WebKit browsers */
.form-control::-webkit-input-placeholder {
  color: #555 !important;
}

/* Firefox 19+ */
.form-control::-moz-placeholder {
  color: #555 !important;
  opacity: 1;
}

/* IE 10+ */
.form-control:-ms-input-placeholder {
  color: #555 !important;
}

/* Edge */
.form-control::-ms-input-placeholder {
  color: #555 !important;
}

/* Input Text Should Be Black */
.contact-form .form-control {
  color: black !important;
  background-color: #fff !important;
  border: 1px solid #ccc;
}

/* Placeholder Text Should Be Black */
.contact-form .form-control::placeholder,
.contact-form .form-control::-webkit-input-placeholder,
.contact-form .form-control:-ms-input-placeholder,
.contact-form .form-control::-ms-input-placeholder,
.contact-form .form-control::-moz-placeholder {
  color: black !important;
  opacity: 1 !important;
}
.contact-form .form-control {
  background-color: #fff !important;
}
/* Fix form input and placeholder text colors inside contact section */
.contact-form .form-group input,
.contact-form .form-group textarea {
  color: black !important;
  background-color: #fff !important;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #555 !important;
  opacity: 1 !important;
}

.contact-form .form-group input:-ms-input-placeholder,
.contact-form .form-group textarea:-ms-input-placeholder {
  color: #555 !important;
}

.contact-form .form-group input::-ms-input-placeholder,
.contact-form .form-group textarea::-ms-input-placeholder {
  color: #555 !important;
}
.contact-section,
.contact-section h2,
.contact-section p,
.contact-section select {
    color: white !important;
}

.contact-section input,
.contact-section textarea {
    color: #000 !important;
}

.contact-section label {
    color: #777 !important;
}
}

/* Style the label to act as a placeholder initially */
.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 16px;
    color: #777 !important;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Move the label up when the input is focused or has a value */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: #c8a97e !important;
}

/* Reinforce input field styling */
.contact-form .form-group input,
.contact-form .form-group textarea {
    background: #fff !important;
    color: #000 !important;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 12px 12px 12px 0;
    outline: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reinforce placeholder styling */
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #666 !important;
    opacity: 1 !important;
    text-shadow: none !important;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

.contact-form .form-group input::-webkit-input-placeholder,
.contact-form .form-group textarea::-webkit-input-placeholder,
.contact-form .form-group input::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder,
.contact-form .form-group input:-ms-input-placeholder,
.contact-form .form-group textarea:-ms-input-placeholder,
.contact-form .form-group input::-ms-input-placeholder,
.contact-form .form-group textarea::-ms-input-placeholder {
    color: #666 !important;
    opacity: 1 !important;
    text-shadow: none !important;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}


.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #c8a97e;
}


html, body {
    background-color: #000000 !important;
    color: #ffffff; /* Optional: set text color to white for readability */
}
h1, h2, h3, h4, h5, h6 {
    color: #c8a97e;
}



.about-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}


.about-text p {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}


.black-button {
    display: inline-block;
    background-color: #c8a97e;
    color: #fff !important;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.strengths-section {
    padding: 80px 0;
    background: #1a1a1a;
}



.process-section {
    padding: 80px 0;
    background: #000000;
}

.testimonials-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

header {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-menu ul li a {
    color: #c8a97e;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}



.about-text p {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}


/* Features Section: Black background, white text, 4 in a row */
.features-section {
    background: #111217;
    padding: 60px 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.features-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.features-section .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #d3d6db;
    margin-bottom: 48px;
    font-weight: 400;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.features-section .feature-card {
    background: #181a22;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    padding: 36px 28px 32px 28px;
    text-align: center;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    border: 1px solid #23242a;
}

.features-section .feature-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 12px 32px rgba(0,0,0,0.32);
    border-color: #3a7afe;
}

.features-section .feature-icon {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.features-section .feature-card:hover .feature-icon {
    color: #3a7afe;
}

.features-section .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.features-section .feature-card p {
    font-size: 1rem;
    color: #d3d6db;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .features-section .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .features-section {
        padding: 36px 0;
    }
    .features-section .section-title {
        font-size: 2rem;
    }
}


.features-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c8a97e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}


.features-section .feature-card {
    background: #181a22;
    border-radius: 18px;
    box-shadow: 0 6px 24px #c8a97e;
    padding: 36px 28px 32px 28px;
    text-align: center;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    border: 1px solid #23242a;
}

.features-section .feature-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
    border-color: #c8a97e;
}


.features-section .section-subtitle {
    text-align: left;
    font-size: 1.15rem;
    color: #d3d6db;
    margin-bottom: 48px;
    font-weight: 400;
}

.features-section .section-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c8a97e;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.nav-menu ul li a {
    color: #c8a97e;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    text-decoration: none; /* Remove underline by default */
}

.nav-menu ul li a:hover,
.nav-menu ul li a:focus {
    color: #fff;
    text-decoration: none; /* Remove underline on hover/focus */
}


/* Base menu styling */
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: #000;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    display: block;
    padding: 1rem 1.5rem;
    color: #c8a97e;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

/* Hover and focus styles */
.nav-menu ul li a:hover,
.nav-menu ul li a:focus {
    color: #fff;
    text-decoration: none;
}

/* Submenu styles */
.nav-menu .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 210px;
    background: #111;
    border: 1px solid #c8a97e;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.nav-menu .submenu li a {
    padding: 0.75rem 1.25rem;
    color: #c8a97e;
    background: #111;
}

.nav-menu .submenu li a:hover,
.nav-menu .submenu li a:focus {
    background: #c8a97e;
    color: #000;
}

/* Show submenu on hover */
.nav-menu ul li.has-submenu:hover > .submenu,
.nav-menu ul li.has-submenu:focus-within > .submenu {
    display: block;
}

/* Responsive: Stack menu vertically on small screens */
@media (max-width: 900px) {
    .nav-menu ul {
        flex-direction: column;
        background: #000;
    }
    .nav-menu ul li {
        width: 100%;
    }
    .nav-menu .submenu {
        position: static;
        min-width: 100%;
        border-radius: 0 0 8px 8px;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0px;
    }
}

/* Base menu styling */
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: #000;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #c8a97e;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.nav-menu .has-submenu > a .arrow {
    font-size: 0.7em;
    margin-left: 7px;
    transition: transform 0.3s;
}

.nav-menu .has-submenu:hover > a .arrow,
.nav-menu .has-submenu:focus-within > a .arrow {
    transform: rotate(180deg);
}

.nav-menu ul li a:hover,
.nav-menu ul li a:focus {
    color: #fff;
    text-decoration: none;
}

/* Submenu with glassmorphism */
.nav-menu .submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: rgba(24, 22, 18, 0.85);
    backdrop-filter: blur(7px);
    border-radius: 0 0 14px 14px;
    border: 1px solid rgba(200, 169, 126, 0.15);
    box-shadow: 0 12px 32px rgba(200, 169, 126, 0.12);
    transform: translateY(10px) scaleY(0.97);
    transition: 
        opacity 0.3s cubic-bezier(.4,2,.6,1), 
        transform 0.3s cubic-bezier(.4,2,.6,1),
        visibility 0s linear 0.3s;
    z-index: 10;
}

.nav-menu .has-submenu:hover > .submenu,
.nav-menu .has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    transition: 
        opacity 0.3s cubic-bezier(.4,2,.6,1), 
        transform 0.3s cubic-bezier(.4,2,.6,1),
        visibility 0s;
}

/* Submenu items with icon bullets */
.nav-menu .submenu li a {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    color: #c8a97e;
    background: transparent;
    border-left: 3px solid transparent;
    transition: 
        background 0.2s, 
        color 0.2s, 
        border-color 0.2s;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    position: relative;
}

.submenu-icon {
    color: #c8a97e;
    font-size: 0.7em;
    margin-right: 0.7em;
    transition: color 0.3s;
}

.nav-menu .submenu li a:hover,
.nav-menu .submenu li a:focus {
    background: #c8a97e;
    color: #181612;
    border-left: 3px solid #fff;
    padding-left: 1.7rem;
}

.nav-menu .submenu li a:hover .submenu-icon,
.nav-menu .submenu li a:focus .submenu-icon {
    color: #181612;
}

/* Responsive: Stack menu vertically on small screens */
@media (max-width: 900px) {
    .nav-menu ul {
        flex-direction: column;
        background: #000;
    }
    .nav-menu ul li {
        width: 100%;
    }
    .nav-menu .submenu {
        position: static;
        min-width: 100%;
        border-radius: 0 0 14px 14px;
        box-shadow: none;
        border-left: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        margin-bottom: 0.5rem;
    }
    .nav-menu .submenu li a {
        padding-left: 2rem;
    }
}


/*height in mobile phone reduced to 70% and 70VH*/
.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-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.products-section {
    padding: 5px 0;
    text-align: center;
}

.hero-slider .btn {
    cursor: pointer !important;
    color: #fff !important;
    /* Ensure it is above any overlay */
    position: relative;
    z-index: 2;
}


.products-section {
    padding: 55px 0;
    text-align: center;
}

.hero-slider .btn {
    cursor: pointer !important;
    color: #fff !important;
    z-index: 10;
    position: relative;
}

.explore-link-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.explore-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: linear-gradient(90deg, #c8a97e 0%, #e67e22 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 2em;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(200, 169, 126, 0.13);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
  margin-bottom: 0.5rem;
}

.explore-link-btn i {
  font-size: 1.2em;
  color: #fff;
  transition: color 0.3s;
}

.explore-link-btn:hover, .explore-link-btn:focus {
  background: linear-gradient(90deg, #e67e22 0%, #c8a97e 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

.explore-link-btn:active {
  transform: scale(0.98);
}


.simple-btn {
  background-color: transparent;
  color: #c8a97e; /* golden text */
  border: 2px solid #c8a97e;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.simple-btn i {
  font-size: 18px;
  color: #c8a97e;
  transition: color 0.3s ease;
}

.simple-btn:hover {
  background-color: #c8a97e;
  color: #1a1a1a;
}

.simple-btn:hover i {
  color: #1a1a1a;
}


/*What's app*/


/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 10px;
    right: 5px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8a97e 0%, #c8a97e 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #c8a97e 0%, #c8a97e 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-btn span {
  transition: transform 0.3s ease;
}
.whatsapp-btn:hover span {
  transform: rotate(-5deg);
}

/* Responsive Design */
@media (max-width: 600px) {
  .floating-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .whatsapp-btn {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .floating-btn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .whatsapp-btn {
    bottom: 75px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}



@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #000000;
        /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
        padding: 1rem 0;
        align-items: center;
        justify-content: center;
    }
}


.slide {
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

/* Contact Section Button Styling */
.contact-action {
  display: block; /* Hidden by default, will show on mobile */
  text-align: center;
  margin-bottom: 20px;
}

/* Show the button only on mobile */
@media (max-width: 768px) {
  .contact-action {
    display: block;
    order: 1; /* Make it appear first in mobile layout */
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 3;
  }
}

.form-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-action-top {
  margin-bottom: 20px;
  text-align: center;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


.contact-action-top {
  margin-bottom: 20px;
  text-align: left;
  padding-left: 10px;
}

.product-heading {
  text-align: left;
  margin-bottom: 40px;
}

.product-heading .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.product-heading .section-subtitle {
  text-align: left;
  color: #d3d6db; /* optional subtle color */
  font-weight: 400;
}

.about-text p {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 10px;
}

.process-section, .h2, .h4 
{
padding-left: 8px;

}


/* =================================
   MENU ENHANCEMENT STYLES (with Icons)
   ================================= */

/* --- Main Menu Item Styling --- */
.nav-menu > ul > li > a {
    position: relative;
    padding: 20px 15px;
    transition: color 0.3s ease;
    display: flex; /* Helps align text and icon */
    align-items: center;
}

/* --- Animated Underline Effect on Hover --- */
.nav-menu > ul > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    transition: width 0.4s ease;
}

.nav-menu > ul > li:hover > a::after {
    width: 80%;
}

/* --- Dropdown Arrow Styling (UPDATED for Icon) --- */
.nav-menu .arrow {
    display: inline-block;
    margin-left: 8px; /* A bit more space for the icon */
    font-size: 12px;
    transition: transform 0.3s ease;
    line-height: 1; /* Helps vertical alignment */
}

.nav-menu .has-submenu:hover > a .arrow {
    transform: rotate(180deg);
}


/* --- Submenu Styling & Animation --- */
.nav-menu .submenu {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border-top: 3px solid #333;
    padding: 10px 0;
    margin-top: 0; /* Keeps the menu attached to the parent */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-menu .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Submenu Item Styling --- */
.nav-menu .submenu li {
    padding: 0;
}

.nav-menu .submenu li a {
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-menu .submenu li a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 25px;
}

/* --- Submenu Item Icon Styling (UPDATED) --- */
.nav-menu .submenu .submenu-icon {
    margin-right: 12px;
    font-size: 14px; /* Increased size for better icon visibility */
    color: #555;
    width: 20px; /* Gives each icon a fixed width for alignment */
    text-align: center; /* Centers the icon within the fixed width */
    transition: color 0.3s ease;
}

.nav-menu .submenu li a:hover .submenu-icon {
    color: #000; /* Makes icon color match text on hover */
}


/* =================================
   MOBILE MENU FIXES
   ================================= */

@media (max-width: 900px) {

    /* --- 1. Make the menu panel scrollable --- */
    .nav-menu.active {
      overflow-y: auto; /* This is the key for scrolling! */
    }

    /* --- 2. Hide submenus by default on mobile --- */
    .nav-menu .submenu {
      display: none; /* Hide submenu initially */
      opacity: 1; /* Reset desktop styles */
      visibility: visible;
      transform: none;
      position: static;
      background: #1a1a1a; /* Darker background for contrast */
      border-radius: 0;
      box-shadow: none;
      border: none;
      border-top: 1px solid #333;
      padding-left: 1rem; /* Indent submenu items */
      margin-top: 10px;
      margin-bottom: 10px;
    }

    /* --- 3. Show the submenu when its parent is active --- */
    .nav-menu li.submenu-active > .submenu {
      display: block; /* Show the active submenu */
    }
  
    /* --- 4. Style the parent item to indicate it's clickable --- */
    .nav-menu .has-submenu > a {
      /* This makes the entire link clickable, not just the text */
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    /* --- 5. Rotate the arrow icon when the submenu is open --- */
    .nav-menu li.submenu-active > a .arrow {
      transform: rotate(180deg);
    }
    
    /* --- Optional: Improve submenu item styling for mobile --- */
    .nav-menu .submenu li a {
        padding: 0.8rem 1rem;
        border: none;
    }
    
    .nav-menu .submenu li a:hover {
        background: #c8a97e;
        color: #000;
        padding-left: 1.2rem; /* Keep the hover effect if you like */
    }
    
    .nav-menu .submenu li a:hover .submenu-icon {
        color: #000;
    }
}