


/*services styling
  <style>
    /* Reset some basic styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Body and global styles */
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      line-height: 1.6;
    }

    /* Tiles Services section styling */
    #tiles-services {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
      margin: 0 auto;
    }

    #tiles-services h2 {
      font-size: 36px;
      color: #333;
      margin-bottom: 30px;
    }

    #tiles-services p {
      font-size: 18px;
      color: #555;
      margin-bottom: 50px;
    }

    /* Service Cards Container */
    .services-container {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      justify-items: center;
    }

    .service-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      max-width: 350px;
      text-align: center;
    }

    .service-card img {
      width: 100%;
      height: auto;
      border-bottom: 2px solid #f1f1f1;
    }

    .service-card h3 {
      font-size: 24px;
      color: #333;
      margin-top: 20px;
    }

    .service-card p {
      font-size: 16px;
      color: #777;
      margin: 10px 20px;
    }

    /* Hover effect for the service cards */
    .service-card:hover {
      transform: translateY(-10px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      #tiles-services h2 {
        font-size: 30px;
      }

      .service-card h3 {
        font-size: 22px;
      }

      .service-card p {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      #tiles-services h2 {
        font-size: 26px;
      }

      .service-card h3 {
        font-size: 20px;
      }

      .service-card p {
        font-size: 14px;
      }
    }
  </style>

/* Container styling */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:1px; /* Space between videos */
  flex-wrap: wrap;
  padding:px;
}

/* Individual video styling */
.video-item {
  flex: 1;
  max-width: 400px; /* Ensures each video doesn't exceed 400px */
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border-radius: 8px; /* Optional: Adds rounded corners */
  overflow: hidden;
  background-color: #000; /* Optional: Makes sure videos have a black background when not playing */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Optional: Adds shadow for a better look */
}

video {
  width: 100%; /* Makes videos responsive */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Optional: Rounded corners for the video player */
}

/* Responsive design */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
    align-items: center;
  }

  .video-item {
    max-width: 100%;
    margin-bottom: 20px;
  }
}


/* Basic Styles for Contact Us Section */
<style>
    /* Reset some basic styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Body and global styles */
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      line-height: 1.6;
    }

    /* Contact section styling */
    #contact-us {
      background-color: #fff;
      padding: 50px 20px;
      text-align: center;
      margin: 0 auto;
      max-width: 900px;
    }

    #contact-us h2 {
      font-size: 32px;
      color: #333;
      margin-bottom: 20px;
    }

    #contact-us p {
      font-size: 18px;
      color: #555;
      margin-bottom: 40px;
    }

    /* Form styling */
    .contact-form {
      display: grid;
      gap: 20px;
      justify-items: stretch;
      max-width: 600px;
      margin: 0 auto;
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Label styling */
    .contact-form label {
      font-size: 16px;
      color: #333;
      margin-bottom: 8px;
      display: block;
    }

    /* Input and textarea field styling */
    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 4px;
      width: 100%;
      box-sizing: border-box;
    }

    .contact-form textarea {
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #28a745;
    }

    /* Button styling */
    .contact-form button {
      background-color: #28a745;
      color: #fff;
      padding: 15px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
    }

    .contact-form button:hover {
      background-color: #218838;
    }

    /* Responsive Design */

    /* Tablet and up (screen width <= 768px) */
    @media (max-width: 768px) {
      .contact-form {
        padding: 20px;
        gap: 15px;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 10px;
        font-size: 15px;
      }

      .contact-form button {
        padding: 12px;
        font-size: 15px;
      }
    }

    /* Mobile Design (screen width <= 480px) */
    @media (max-width: 480px) {
      #contact-us h2 {
        font-size: 28px;
      }

      #contact-us p {
        font-size: 16px;
      }

      .contact-form {
        padding: 15px;
        gap: 10px;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 8px;
        font-size: 14px;
      }

      .contact-form button {
        padding: 10px;
        font-size: 14px;
      }
    }
  </style>
/* General styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.order-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

/* Flex container to arrange products side by side */
.tiles-container {
  display: flex;
  flex-direction: row; /* Items will be aligned in a row (side by side) */
  justify-content: space-between; /* Space between tiles */
  gap: 20px; /* Optional: Adds space between tiles */
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

/* Individual tile product styling */
.tile-product {
  display: flex;
  flex-direction: column; /* Stack the contents (image, title, input, button) vertically */
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%; /* Ensures the tiles take up about 30% of the available space */
}

.tile-product img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.tile-product h3 {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333;
}

.tile-product p {
  font-size: 1em;
  color: #555;
}

.tile-product label {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
}

.tile-product input[type="number"] {
  width: 80px;
  padding: 5px;
  margin-top: 5px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.place-order-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 1em;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.place-order-btn:hover {
  background-color: #0056b3;
}

.place-order-btn:focus {
  outline: none;
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
  .tiles-container {
    flex-direction: column; /* Stack tiles vertically on smaller screens */
    align-items: center;
  }

  .tile-product {
    width: 100%; /* Tiles take full width on smaller screens */
    margin-bottom: 20px;
  }

  .place-order-btn {
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .order-form {
    padding: 15px;
  }

  .place-order-btn {
    padding: 14px;
    font-size: 1.1em;
  }
}

	/* Request Form Section Styling */
/* Request Form Section Styling */
#request-form {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

#request-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

#request-form p {
  font-size: 16px;
  margin-bottom: 30px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

form textarea {
  resize: vertical;
}

/* Submit Button with success background */
form button {
  background-color: #28a745;  /* Success background color */
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button Hover effect */
form button:hover {
  background-color: #218838;  /* Darker shade on hover */
  transform: scale(1.05);  /* Slightly enlarge the button */
}

	/* Testimonials Section Styling */
/* Basic styling for the section */
#testimonials {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

#testimonials h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

#testimonials p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

/* Testimonial slider styling */
.testimonial-slider {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* Individual testimonial styling */
.testimonial {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%; /* Default to 3 testimonials per row on desktop */
  box-sizing: border-box;
}

.testimonial p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* Responsive Design */

/* Tablet View (screen widths up to 768px) */
@media (max-width: 768px) {
  .testimonial-slider {
    justify-content: center; /* Center the testimonials */
  }

  .testimonial {
    width: 45%; /* 2 testimonials per row */
  }
}

/* Mobile View (screen widths up to 480px) */
@media (max-width: 480px) {
  #testimonials h2 {
    font-size: 28px;
  }

  #testimonials p {
    font-size: 16px;
  }

  .testimonial-slider {
    justify-content: center; /* Center the testimonials */
    gap: 10px; /* Smaller gap on mobile */
  }

  .testimonial {
    width: 100%; /* 1 testimonial per row */
    margin-bottom: 20px; /* Space between testimonials */
  }

  .testimonial p {
    font-size: 14px; /* Slightly smaller text on mobile */
  }

  .testimonial h4 {
    font-size: 16px;
  }
}


	/* Blog Section Styling */
/* General Styling for Blog Section */
#blog {
  padding: 2rem;
  background-color: #f9f9f9;
}

#blog h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#blog p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.blog-post {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px; /* Fixed height for all images */
  object-fit: cover; /* Ensures images are cropped to fit the size without distortion */
  border-radius: 8px;
}

.blog-post h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.blog-post p {
  font-size: 1rem;
  color: #777;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #007BFF;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-posts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .blog-posts {
    grid-template-columns: 1fr;
  }
}


	/* Basic reset for body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Navbar container styling */
.navbar {
  display: flex;
  justify-content: center; /* Center the links horizontally */
  background-color: #333;
  padding: 10px 0;
  margin: 0;
}

/* Styling for the navbar links */
.navbar a {
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

/* Hover effect for links */
.navbar a:hover {
  background-color: #575757;
}

/* Active link styling */
.navbar a.active {
  background-color: #4CAF50;
  color: white;
}

/* Optional: Make navbar links stack vertically on small screens */
@media screen and (max-width: 600px) {
  .navbar {
    flex-direction: column; /* Stack links vertically */
  }

  .navbar a {
    text-align: left; /* Align text to the left on smaller screens */
  }
}
	/* General reset and box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Grid container for images */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Flexible grid with equal columns */
  gap: 20px;
  padding: 20px;
}

/* Styling for each cell in the grid */
.cell {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cell:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.cell img {
  width: 100%; /* Ensure the image takes up the full width */
  height: 200px; /* Fixed height for uniform image size */
  object-fit: cover; /* Crop and fill the space without stretching */
}

/* Styling for the title below each image */
.cell h1 {
  font-size: 1.25em;
  text-align: center;
  padding: 10px;
  color: #333;
}

/* Optional: Video container styling */
.video-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.video-container video {
  width: 400px;
  height: 500px;
  object-fit: cover;
}
	/* Container for the portfolio grid */
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Adjusts number of columns based on screen size */
  gap: 20px;
  padding: 20px;
  justify-items: center; /* Center portfolio items within grid */
}

/* Individual portfolio item card styling */
.portfolio-item {
  display: flex; /* Use flexbox to align image and text side by side */
  flex-direction: column; /* Arrange image and description vertically */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow around the card */
  transition: transform 0.3s ease-in-out; /* Smooth hover transition */
  background-color: #fff; /* Background color for card */
}

/* Portfolio image styling */
.portfolio-img {
  width: 100%; /* Make the image fill the width of its container */
  height: auto; /* Maintain the aspect ratio of the image */
  display: block; /* Remove any inline space beneath the image */
  border-bottom: 2px solid #ddd; /* Optional: Add a border between the image and description */
}

/* Information box styling, appears below the image or next to it */
.portfolio-info {
  padding: 15px;
  text-align: left; /* Align text to the left for the description */
  background-color: #f9f9f9;
  flex-grow: 1; /* Make sure the description area grows to fill space */
}

/* Title styling inside the portfolio item */
.portfolio-info h3 {
  margin: 0;
  font-size: 18px;
  color: #333; /* Dark color for readability */
  font-weight: bold;
  margin-bottom: 10px; /* Add spacing below the title */
}

/* Description styling (optional for longer descriptions) */
.portfolio-info p {
  color: #666; /* Lighter color for description */
  font-size: 14px; /* Smaller font size for description */
  line-height: 1.6; /* Increase line height for readability */
  margin-top: 0; /* Remove any default margin */
}

/* Hover effect for portfolio items */
.portfolio-item:hover {
  transform: translateY(-10px); /* Slight lift when hovered */
}

/* Optional: Link styling (optional for handling interaction) */
.portfolio-link {
  text-decoration: none; /* Remove default link styling */
  color: inherit; /* Inherit text color */
}

	/* Container for the portfolio grid */
.portfolio {
  display: grid;
  grid-template-columns : repeat(auto-fill, minmax(300px, 1fr)); 
  gap: 20px;
  padding: 20px;
  justify-items: center; 
  align-items: center;  
}

/* Individual portfolio item card styling */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow around the card */
  transition: transform 0.3s ease-in-out; /* Smooth hover transition */
  background-color: #fff; /* White background for the card */
  display: flex; /* Align image and info side by side */
  flex-direction: column; /* Stack image and info vertically */
}

/* Portfolio image styling */
.portfolio-img {
  width: 100%; /* Make the image fill the width of its container */
  height: auto; /* Maintain the aspect ratio of the image */
  display: block; /* Remove inline space beneath the image */
  border-bottom: 2px solid #ddd; /* Optional: Add border to separate the image from text */
}

/* Information box styling */
.portfolio-info {
  padding: 20px;
  text-align: left; /* Align text to the left for a more structured layout */
  background-color: #f9f9f9;
  flex-grow: 1; /* Allow the text section to grow */
}

/* Title inside the portfolio item */
.portfolio-info h3 {
  margin: 0;
  font-size: 22px;
  color: #333; /* Dark color for readability */
  font-weight: bold;
  margin-bottom: 10px; /* Add space below the title */
}

/* Description text inside portfolio item */
.portfolio-info p {
  color: #666; /* Lighter color for description */
  font-size: 16px; /* Set a good font size for readability */
  line-height: 1.6; /* Line height for better spacing */
  margin-top: 0;
}

/* Bullet points for skills or tools used */
.portfolio-info ul {
  margin: 10px 0;
  padding-left: 20px;
}

.portfolio-info ul li {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Hover effect for portfolio items */
.portfolio-item:hover {
  transform: translateY(-10px); /* Lift effect when hovered */
}

/* Optional: Link styling (if used for portfolio links) */
.portfolio-link {
  text-decoration: none; /* Remove default link styling */
  color: inherit; /* Inherit text color */
}

/* Media Queries for Larger Screens */
@media (min-width: 1200px) {
  .portfolio-item {
    flex-direction: row; /* On large screens, align image and text side by side */
  }

  .portfolio-info {
    padding: 20px 30px;
    text-align: left; /* Keep the text aligned left for readability */
    width: 50%; /* Set width for the info section when items are side by side */
  }

  .portfolio-img {
    width: 50%; /* Set width for the image on larger screens */
  }
}

@media (max-width: 767px) {
  .portfolio-info h3 {
    font-size: 18px; /* Adjust title font size on small screens */
  }

  .portfolio-info p {
    font-size: 14px; /* Adjust description font size for readability */
  }
}
