/* --------------------------------------------------------  header style starts here --------------------------------------------------- */
/* General header styling */
/* styles.css */

* {
  box-sizing: border-box;
}

/* --------------------------------------------------------  header style ends here --------------------------------------------------- */

/* -------------------------------------------------------- section one the header and quote section starts here -----------------------------------*/
/* Section styling */
.print-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #fff8dc; /* Light yellow background */
  /* background-image: url('assets/home_page_image1.png');*/ /* Background image */
  background-position: bottom right;
  background-size: 20%; /* Adjust the size for 10% opacity effect */
  background-repeat: no-repeat;
  opacity: 100%; /* Reduce opacity to 10% */
  /* margin: 40px auto; */
  max-width: 1980px; /* Maximum width for larger screens */
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.image-container1 {
  flex: 1;
  margin-right: 30px;
  max-width: 70%; /* Restrict the container's width to 50% */
}

.left-image {
  width: 100%; /* Make the image responsive to its container */
  height: auto; /* Maintain aspect ratio */
  padding-left: 50px;
  max-width: 500px; /* Set a maximum width for the images */
  margin: 0 auto; /* Center the image horizontally */
}

.image-container {
  flex: 1;
  margin-right: 30px;
}

/* Text container styling */
.text-container {
  flex: 1;
  text-align: left;
  padding-left: 10px;
}

.section-title {
  font-family: "open sans", sans-serif;
  font-size: 64px; /* Larger font size */
  font-weight: 200; /* Thinner font */
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left; /* Align the text to the left */
  padding-left: 20px; /* Slight shift to the left */
}

/* Paragraph styling */
.section-paragraph {
  font-family: "open sans", sans-serif;
  font-size: 20px;
  font-weight: 300; /* Thinner font */
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left; /* Align the text to the left */
  padding-left: 20px; /* Shift slightly to the left */
}

/* Button styling */
.contact-us-button {
  font-family: "open sans", sans-serif;

  display: inline-block;
  padding: 12px 24px; /* Increased padding for a more prominent button */
  background-color: #ffc13c;
  color: #000000;
  border-radius: 8px; /* Slightly rounded corners for a modern look */
  text-decoration: none;
  font-size: 15px; /* Slightly larger font size for better readability */
  margin-top: 30px;
  margin-left: 10px; /* Remove the left margin for better alignment */
  text-align: center;
  border-radius: 15px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
}

/* Hover effect */
.contact-us-button:hover {
  background-color: #ffb412; /* Darken the background on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

/* Align button with title and paragraph */
.section-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
  padding-left: 20px; /* Same padding as the title and paragraph */
}

.section-title,
.section-paragraph {
  text-align: left; /* Keep text left-aligned */
  margin-bottom: 20px;
}

.section-paragraph {
  max-width: 700px; /* Limit width to keep content tidy */
}

.contact-us-button-container {
  margin-top: 20px;
}

/* Responsive styling */
@media (max-width: 768px) {
  .print-section {
    flex-direction: column;
    text-align: center;
  }

  .image-container {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 40px; /* Smaller font for tablets */
  }

  .section-paragraph {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 32px; /* Smaller font for mobile */
  }

  .section-paragraph {
    font-size: 16px;
  }
}
/* -------------------------------------------------------- section one the header code section ends here -----------------------------------*/
/*-----------------------------------------------section two code starts here ---------------------------------------------------*/
.what-we-do-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 20px 0; /* Space around the section */
}

/* Left line */
.line-left {
  flex: 1;
  height: 2px;
  background-color: #333;
  margin-right: 20px;
  max-width: 200px; /* Limit line width on larger screens */
}

/* Title styling with NunitoSans-Bold */
.what-we-do-title {
  font-family: "NunitoSans-Bold", "NunitoSans", sans-serif; /* Bold for title */
  font-size: 37px; /* Font size */
  font-weight: bold; /* Bold weight */
  line-height: 45px; /* Line height */
  text-transform: capitalize; /* Title case (capitalize first letter of each word) */
  color: #333;
  text-align: center;
  margin: 0 20px; /* Space between lines and title */
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0); /* No shadow */
}

/* Right line */
.line-right {
  flex: 1;
  height: 2px;
  background-color: #333;
  margin-left: 20px;
  max-width: 200px; /* Limit line width on larger screens */
}

/* Responsive Design */
@media (max-width: 768px) {
  .what-we-do-section {
    flex-direction: column; /* Stack title and lines vertically on small screens */
    align-items: center;
  }

  .line-left,
  .line-right {
    flex: none;
    width: 50%; /* Reduce line width on smaller screens */
    margin: 10px 0; /* Add space between title and lines */
  }

  .what-we-do-title {
    font-size: 24px; /* Smaller title on mobile */
    margin: 0;
  }
}

@media (max-width: 480px) {
  .what-we-do-title {
    font-size: 20px; /* Even smaller font for very small screens */
  }

  .line-left,
  .line-right {
    width: 40%; /* Reduce the width of lines further for very small screens */
  }
}

.parent-container {
  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 100%; /* Full width of the parent */
  height: auto; /* Adjust height as necessary */
}

/* Paper and Board Support Section */
.Paper-and-board-support {
  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  width: 80%; /* Set to a percentage or adjust as needed */
  max-width: 1155px; /* Limit the maximum width */
  height: auto; /* Allow height to adjust based on content */
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 300; /* Use 300 for a lighter weight if 'lighter' isn't working */
  line-height: 1.2; /* Adjusted line height for less space */
  text-align: center; /* Center the text */
  color: #606060;
  padding: 0; /* No padding */
  margin: 5px 0; /* Margin of 5px above and below */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .Paper-and-board-support {
    width: 80%; /* Adjust width to 80% on smaller screens */
    font-size: 14px; /* Slightly smaller font size */
    margin: 5px auto; /* Center text with 5px margin on top and bottom */
  }
}

@media (max-width: 768px) {
  .Paper-and-board-support {
    width: 90%; /* Use more width on smaller devices */
    font-size: 12px; /* Further reduce font size */
    line-height: 1.8; /* Adjust line height for better readability */
    margin: 5px auto; /* Maintain 5px margin on top and bottom */
  }
}

@media (max-width: 480px) {
  .Paper-and-board-support {
    width: 95%; /* Almost full-width on mobile */
    font-size: 10px; /* Smaller font size for very small screens */
    line-height: 1.6; /* Tighter line height for compact view */
    margin: 5px auto; /* Ensure 5px margin on top and bottom */
  }
}

/* Button Container Styling */
.button-container {
  display: flex;
  justify-content: center; /* Center the buttons horizontally */
  align-items: center; /* Center vertically if needed */
  flex-wrap: wrap; /* Allow buttons to wrap if needed */
  gap: 10px; /* Add space between the buttons */
  margin: 20px 0; /* Adjust top and bottom margins */
}

/* Button Styling */
/* Container for buttons and image */
.service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

/* Button container styling */
.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.service-button {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background-color: white;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-button.active {
  background-color: pink; /* Pink background when selected */
  color: white;
}
/* Initially hide the nav menu on mobile */
.nav-links {
  display: none;
}

/* Show the menu when the 'active' class is added */
.nav-links.active {
  display: block;
}

/* For desktop, show the nav menu by default */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.service-button {
  color: #767676; /* Dark pink color for text */
  background-color: transparent; /* Optional: Keep background transparent */
  border: 1px solid #767676; /* Dark pink border */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Changes cursor to pointer on hover */
  padding: 10px 20px; /* Add padding for better spacing */
  font-size: 16px; /* Adjust font size as needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}
.service-button:hover {
  color: #ffc13c; /* Dark pink color for text */
  border: 2px solid #fff8dc; /* Dark pink border */
  border-radius: 8px; /* Rounded corners */
  background-color: #fff8dc;
}

/* Image gallery */
.image-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.service-image {
  width: 200px; /* Set a fixed size for images */
  height: auto;
  display: none; /* Initially hide the images */
}

.service-image.show {
  display: block; /* Show the image when active */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
  }

  .button-container {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .service-button {
    width: 100%;
  }
}

/* Center the images horizontally using flexbox */
.image-display-container {
  display: flex;
  justify-content: center; /* Center the images horizontally */
  flex-wrap: wrap; /* Ensure the images wrap to the next line if necessary */
  gap: 20px; /* Optional: Add space between images */
  padding: 20px; /* Optional: Add padding around the container */
}

/* Ensure anchor tags don't shrink the content */
.image-display-container a {
  display: inline-block;
  text-decoration: none; /* Remove underline from the link */
}

/* Ensure the images are not shrunk and keep their dimensions */
.image-display-container img {
  max-width: 100%; /* Prevent images from exceeding their container */
  max-height: 100%; /* Prevent shrinking */
  display: block; /* Make images behave as block elements */
  margin: 0 auto; /* Ensure the images are centered inside the anchor */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .image-display-container img {
    max-width: calc(50% - 10px); /* 2 images per row for tablets */
    height: 300px; /* Keep images square */
    width: 300px; /* Keep images square */
  }
}

@media (max-width: 768px) {
  .image-display-container img {
    max-width: 100%; /* 1 image per row for smaller devices */
    height: auto; /* Maintain aspect ratio */
  }
}
@media only screen and (max-width: 600px) {
  .service-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}

.image-display-container img {
  width: 100%; /* Make images take full width of the container */
  max-width: 300px; /* Maximum width to maintain image size on large screens */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure image covers the container */
  display: block;
  margin: 10px auto; /* Space and center the image */
}
/* Adjust images and layout for smaller screens */

/* Media query for tablets and smaller devices */
@media (max-width: 768px) {
  .image-container {
    justify-content: center; /* Center images on smaller screens */
  }

  .image-container img {
    flex: 1 1 150px; /* Smaller base width for images */
    margin: 5px; /* Reduce margin */
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .image-container img {
    flex: 1 1 100%; /* Images take full width on mobile */
    margin: 5px 0; /* Margin only on top and bottom */
  }
}
/* Styling for the images */
.image {
  width: 200px;
  height: 200px;
  background-color: #f4f4f4;
  border: 2px solid #ccc;
  border-radius: 10px;
  margin: 0 10px;
  /* display: none; /* Hide images by default */
}

/* Display images when active */
.image.show {
  display: block;
}
/*-----------------------------------------------section two code ends here ---------------------------------------------------*/
/* Container for the text and lines */
.why-we-stand-out {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center vertically if necessary */
  margin: 40px 0; /* Adjust margins as needed */
}

/* Styling for the lines */
.line {
  flex: 1; /* Takes up the remaining space */
  height: 1px; /* Line thickness */
  background-color: #000; /* Line color */
  margin: 0 20px; /* Space between the text and lines */
}

/* Styling for the title */
.title {
  font-family: "NunitoSans-Bold", "NunitoSans", sans-serif; /* Bold for title */
  font-size: 37px; /* Font size */
  font-weight: bold; /* Bold weight */
  line-height: 45px; /* Line height */
  text-transform: capitalize; /* Title case (capitalize first letter of each word) */
  color: #333;
  text-align: center;
  margin: 0 20px; /* Space between lines and title */
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0); /* No shadow */
}
@media (max-width: 768px) {
  .title {
    font-size: 28px; /* Adjust font size for smaller screens */
  }

  .line {
    margin: 0 10px; /* Reduce the space between the lines and text on smaller screens */
  }
}

/* Section container to hold the cards */
.card-section {
  display: flex;
  justify-content: space-between; /* Space between cards */
  margin: 40px 0; /* Adjust margin as needed */
  gap: 20px; /* Space between the cards */
}

/* Styling for each card */
.card {
  width: 23%; /* Each card takes up 23% of the total width (4 cards in a row) */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Styling for the card image */
.card-image {
  width: 75px;
  height: 75px; /* Adjust height as needed */
  object-fit: cover; /* Ensures image doesn't stretch and maintains aspect ratio */
  border-radius: 5px;
  margin-bottom: 15px;
}

/* Card title styling */
.card-title {
  font-family: "NunitoSans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

/* Card content styling */
.card-content {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .card {
    width: 48%; /* Two cards per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%; /* Single card per row on very small screens */
  }
}
/* Section background and layout */
/* Section background and layout */
.impression-section {
  background-color: #fffad9; /* Set background color */
  padding: 60px 0; /* Padding on top and bottom */
}

.impression-content {
  display: flex;
  justify-content: space-between; /* Space between image and text */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Styling for the image */
.impression-image {
  flex: 1;
}

.impression-image-img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: to give a rounded border */
}

/* Styling for the content */
.impression-text {
  flex: 1;
  padding-left: 30px; /* Adds space between image and text */
}

.impression-title {
  font-family: "NunitoSans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.impression-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Same styling as previous for the Contact Us button */
.impression-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fff2a1; /* Button background color */
  color: #000;
  font-family: "NunitoSans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 33px; /* Rounded edges */
  text-align: center;
}

.impression-btn:hover {
  background-color: #ffeb8f; /* Slightly darker yellow on hover */
  transition: background-color 0.3s ease;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .impression-content {
    flex-direction: column;
    align-items: center;
  }

  .impression-image {
    margin-bottom: 20px;
  }

  .impression-text {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .impression-title {
    font-size: 28px;
  }

  .impression-description {
    font-size: 16px;
  }

  .impression-btn {
    font-size: 14px;
    padding: 12px 25px;
  }
}

/* Section styling */
.clients-section {
  background-color: #fff;
  padding: 40px 0; /* Padding on top and bottom */
  text-align: center;
}

/* Container for the title with lines */
.clients-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Styling for the lines */
.clients-line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  margin: 0 20px; /* Adds spacing between title and lines */
}

/* Styling for the title */
.clients-title {
  font-family: "NunitoSans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Content styling */
.clients-content {
  font-family: "openSans", sans-serif;
  font-weight: 100;
  font-size: 16px;
  color: #606060;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 0px;
  width: 90%; /* Controls the width of the content */
  line-height: 1.8;
  max-width: 800px; /* Ensures content doesn't stretch too wide */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .clients-title {
    font-size: 28px; /* Slightly smaller font on medium screens */
  }

  .clients-content {
    font-size: 16px; /* Adjust font size for readability */
    width: 90%; /* Wider content for smaller screens */
  }
}

@media (max-width: 480px) {
  .clients-title {
    font-size: 24px; /* Further reduce title font size on very small screens */
  }

  .clients-content {
    font-size: 14px; /* Smaller font for mobile */
    width: 95%; /* Make the content even more responsive */
  }

  .clients-line {
    margin: 0 10px; /* Reduce the margin for smaller screens */
  }
}
/* Section styling */
.client-logo-scrolling {
  background-color: #fff;
  padding: 15px 0;
  position: relative;
}

/* Scrolling container styling */
.client-logos-container {
  width: 95%;
  overflow: hidden;
  position: relative;
}

.client-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  animation: scroll 20s linear infinite;
}

.client-logo {
  width: 125px;
  height: auto;
  object-fit: contain;
  margin: 0 20px;
  margin-top: 10px;
  transition: transform 0.3s ease-in-out;
}

.client-logo:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

/* Animation for the scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .client-logo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .client-logo {
    width: 100px;
  }
}
/*----------------------------------------------------------------- footer code ------------------------------------------------ */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-logo-image {
  width: 150px;
  margin-bottom: 15px;
}

.footer-social-icons {
  margin: 15px 0;
}

.footer-icon {
  margin: 0 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .header .nav-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .button-container {
    flex-direction: column;
  }

  .card-section {
    flex-direction: column;
  }

  .impression-section {
    flex-direction: column;
    text-align: center;
  }

  .impression-image img {
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .text-content {
    padding: 15px;
  }

  .Precision-in-Print-Perfection-on-Paper {
    font-size: 1.5rem;
  }

  .Saraswathi-Offset-Printers-description {
    font-size: 0.9rem;
  }

  .service-button {
    padding: 8px 16px;
  }

  .contact-us-button {
    padding: 8px 16px;
  }

  .card {
    width: 100%;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-content {
    font-size: 0.9rem;
  }
}

.footer {
  background-color: white; /* White background */
  color: #606060; /* Text color */
  padding: 5px 10px; /* Padding for spacing */
  text-align: center; /* Center text */
  border-top: 1px solid #e0e0e0; /* Optional top border */
}

.footer-container {
  display: flex; /* Flexbox for layout */
  justify-content: space-between; /* Space between elements */
  align-items: center; /* Vertical alignment */
  max-width: 1200px; /* Max width of the footer */
  margin: 0 auto; /* Center the footer container */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Logo on the left */
.footer-logo {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* Align logo to the left */
}

.footer-logo img {
  width: 100px; /* Adjust logo size */
}

/* Social icons on the right */
.footer-social-icons {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Align social icons to the right */
  gap: 15px; /* Space between social icons */
}

.footer-social-icons a img {
  width: 25px;
  height: 25px; /* Adjust icon size */
}

/* Copyright text in the center */
.footer-content {
  flex: 2;
  text-align: center;
  font-size: 14px;
  color: #606060; /* Optional color adjustment */
}

/* Media query for smaller devices */
@media only screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stack footer elements vertically */
    align-items: center; /* Center align all content */
    text-align: center;
  }

  .footer-logo,
  .footer-content,
  .footer-social-icons {
    justify-content: center; /* Center everything on mobile */
    margin: 10px 0; /* Add margin for spacing */
  }

  .footer-logo img {
    width: 80px; /* Smaller logo for mobile */
  }

  .footer-social-icons a img {
    width: 20px; /* Smaller icons for mobile */
    height: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-container {
    padding: 10px; /* Smaller padding for very small screens */
  }

  .footer-logo img {
    width: 70px; /* Further reduce logo size */
  }

  .footer-content {
    font-size: 12px; /* Reduce font size for copyright text */
  }

  .footer-social-icons a img {
    width: 18px; /* Further reduce icon size */
    height: 18px;
  }
}
