/* General Styles */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode {
  background-color: black;
  color: white;
}

#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

#theme-toggle:hover {
  transform: scale(1.1);
}


/* General Navigation Styling */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 40px;
}

.menu {
  display: flex;
  flex: 1; /* Allow the menu to take up available space */
  justify-content: center; /* Center the menu items */
  gap: 20px; /* Space between links */
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}


header {
    margin-top: 01px;
    position: relative;
    background-image: url('images/small_banner.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
    min-height: 200px;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

@media (max-width: 767px) {
    header {
        padding: 20px 10px;
        min-height: 120px;
    }

    header .header-content h1 {
        font-size: 1.5rem;
    }

    header .header-content p {
        font-size: 0.9rem;
    }
}

.container {
    padding: 20px;
}

.section {
    text-align: center; /* Centers the heading and content inside the section */
}

.products-row {
    display: flex;
    justify-content: center; /* Center the products horizontally */
    align-items: center; /* Center the content vertically if needed */
    flex-wrap: wrap; /* Allow wrapping if multiple products are present */
    gap: 20px; /* Space between product cards */
}

.product {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align the image and text */
    text-align: center; /* Center text content */
    background: #f8f9fa; /* Light background for the product card */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

/* Ensure the images are the correct size for thumbnails */
.thumbnail {
    width: 100%; /* Makes the image responsive */
    max-width: 150px; /* Sets the maximum size of the thumbnail */
    height: auto; /* Keeps the aspect ratio intact */
    object-fit: cover; /* Ensures images don't stretch */
    margin-bottom: 10px;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input, 
.contact-form textarea, 
.contact-form button {
    padding: 10px;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.contact-form button {
    background-color: #333;
    color: white;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}

footer {
    background-color: #2a3d4f;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Service Section Styles */
.service-section {
    padding: 50px 20px;
    background-color: #fff;
}

.service-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #f0f0f0;
    margin: 15px;
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card h3 {
    font-size: 1.5em;
    color: #2C3E50;
}

.service-card p {
    font-size: 1em;
    margin: 10px 0;
    color: #555;
}

.cta-button {
    background-color: #2C3E50;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 20px;
	text-align: center;

}

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

/* About Page Section */
.about-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.about-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.about-section img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Custom Quilling Services Section */
#shop {
    padding: 40px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

#shop h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #fff8f0;
}

.product img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.product:hover h3 {
    color: #ff6600;
}

.product p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.product:hover p {
    color: #333;
}

.buy-now {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-now:hover {
    background-color: #555;
}

@media (max-width: 480px) {
    .products {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 100%;
        max-width: 300px;
    }
}

a:focus, button:focus {
    outline: 2px dashed #333;
    outline-offset: 2px;
}

/* Gallery Section */
.gallery-section {
    text-align: center;
    padding: 20px;
}

.gallery-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    justify-items: center;
    align-items: center;
}

.image-item img {
    width: 80%;
    max-width: 500px;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Social Links */
.social-link {
    text-decoration: none;
    color: white;
    margin-right: 10px;
}

.social-link i {
    margin-right: 5px;
}

.social-link:hover {
    color: #007bff;
}

/* Client Logos Section */
.client-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.client-logo {
    width: 100px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section {
   padding: 20px;
   text-align: center;
}

.products-row {
   display: flex;
   justify-content: center; /* Center the content */
   gap: 20px; /* Space between the products */
   margin: 20px 0;
}

.product {
   background: #f8f9fa;
   border: 1px solid #ddd;
   border-radius: 8px;
   padding: 15px;
   text-align: left;
   max-width: 300px; /* Optional: Set a fixed width for consistency */
   flex: 1; /* Allow flexible resizing */
}

.uniform-image {
   width: 100%;
   height: auto;
   border-radius: 8px;
}

.product h3 {
   font-size: 20px;
   margin: 10px 0;
}

.product p {
   font-size: 14px;
   line-height: 1.5;
   color: #555;
}

/* General section styling */
.section {
   padding: 20px;
   text-align: center;
   margin-bottom: 40px; /* Space between sections */
}

/* Styling for each row of products */
.products-row {
   display: flex; /* Display products side-by-side */
   justify-content: center; /* Center the products horizontally */
   gap: 20px; /* Add space between products */
   margin: 20px 0;
   flex-wrap: wrap; /* Wrap the products to the next line on small screens */
}

/* Individual product box styling */
.product {
   background: #f8f9fa;
   border: 1px solid #ddd;
   border-radius: 8px;
   padding: 15px;
   text-align: left;
   max-width: 300px;
   flex: 1 1 calc(33.333% - 20px); /* Flexbox-based layout for responsive columns */
   box-sizing: border-box;
}

.uniform-image {
   width: 100%;
   height: auto;
   border-radius: 8px;
}

.product h3 {
   font-size: 20px;
   margin: 10px 0;
}

.product p {
   font-size: 14px;
   line-height: 1.5;
   color: #555;
}

/* Responsive layout: stack products on smaller screens */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        width: 80%; /* Smaller size on smaller screens */
    }
}

@media (max-width: 480px) {
   .product {
      flex: 1 1 100%; /* One product per row on small screens */
   }
}
.whatsapp-icon {
   display: inline-flex;
   align-items: center;
   font-size: 24px;
   color: #25D366; /* WhatsApp green color */
   text-decoration: none;
   padding: 10px 15px;
   border: 2px solid #25D366;
   border-radius: 50px;
   transition: background-color 0.3s, color 0.3s;
}

.whatsapp-icon:hover {
   background-color: #25D366;
   color: white;
}

.whatsapp-icon i {
   margin-right: 8px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.zoom-controls button {
    background-color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}

.zoom-controls button:hover {
    background-color: #ddd;
}
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.video-item {
    width: 300px;
    text-align: center;
}

video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

video:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between the image and the text */
}

.about-photo {
    width: 300px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for aesthetics */
}


.client-logos {
display: flex;
justify-content: center;
gap: 20px;
align-items: center;
flex-wrap: wrap;
}

.client-logo {
max-width: 100px;
height: auto;
        }


/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: auto;
  height:250px;
}

/* Dark mode */
.dark-mode {
  background-color: #121212;
  color: white;
}

/* Gallery */
.gallery-image {
  width: 100%;
  height: auto;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
/* Floating Images Container */
.floating-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Individual Floating Image */
.floating-image {
    margin: 20px;
    animation: floatEffect 4s ease-in-out infinite; /* Animation for floating */
}

/* Floating Effect Keyframe */
@keyframes floatEffect {
    0% {
        transform: translateY(0); /* Start at original position */
    }
    50% {
        transform: translateY(-10px); /* Move 10px up */
    }
    100% {
        transform: translateY(0); /* Return to original position */
    }
}

/* Optional: Dark Mode adjustments */
.dark-mode .floating-image img {
    filter: brightness(0.8); /* Darker images in dark mode */
}

.floating-image img {
    width: 200px; /* Adjust the size of the image */
    height: auto;
}
