
/* Hero Section with Carousel */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgb(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}
.hero-overlay h1 {
    font-size: 2.5rem;
    color: #fff;
}
.hero-overlay p {
    color: #ddd;
}
.hero-overlay .btn {
    background-color: red;
    border: none;
}

/* Service Highlights */
.service-highlights i {
    color: red;
    margin-bottom: 10px;
}
.service-highlights h5 {
    font-size: 1.1rem;
    color: #333;
}
.service-highlights p {
    color: #666;
}

/* Product Categories */
.product-categories .category-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}
.product-categories h5 {
    font-weight: bold;
    color: #333;
}
.view-all {
    color: red;
    text-decoration: none;
}

/* Main Product Categories */
.main-categories .main-category-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}
.main-categories h5 {
    font-size: 1.3rem;
    color: #333;
}
.testimonials {
  padding: 50px 20px;
  background-color: #f8f8f8;
  text-align: center;
}
.testimonials-header h2 {
  font-size: 24px;
  font-weight: bold;
}
.testimonials-header p {
  font-size: 16px;
  color: #666;
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold color for stars */
}
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  text-align: left;
}
.testimonial-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.testimonial-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.testimonial-card h4 {
  font-size: 16px;
  margin: 10px 0 5px;
}
.testimonial-card span {
  font-size: 12px;
  color: #888;
}
.our-clients {
  text-align: center;
  padding: 50px 20px;
}
.our-clients h2 {
  font-size: 24px;
  font-weight: bold;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.client-logos img {
  max-width: 120px;
  height: auto;
}
.printing-easy {
  text-align: center;
  padding: 50px 20px;
}
.printing-easy h2 {
  font-size: 24px;
  font-weight: bold;
}
.printing-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Printing Easy Section Icons */
.printing-easy .icon {
  font-size: 32px;
  color: red;
  margin-bottom: 10px;
}

.image-container {
  flex: 1;
  text-align: center;
}
.image-container img {
  max-width: 100%;
  height: auto;
}
.steps-container {
  flex: 1;
  padding: 0 20px;
}
.step h3 {
  font-size: 18px;
  color: red;
}
.step p {
  font-size: 16px;
  color: #666;
}

.about-hero {
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.about-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero .hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.why-choose-us .choose-grid, .our-process .process-grid, .testimonials .testimonial-grid, .partners .partners-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-choose-us h2, .our-process h2, .testimonials h2, .partners h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.testimonials .testimonial-item, .choose-item, .process-step {
    flex: 1 1 300px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.partners img {
    max-width: 150px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners img:hover {
    filter: grayscale(0%);
}

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

@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }

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

.mission {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/mission-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.team-member img {
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

.team-member h5 {
    margin-top: 10px;
    font-weight: bold;
}

/* General Contact Page Styling */
.contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9;
}

/* Hero Section */
/* Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 300px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 139, 0.5); /* Blue overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay h1 {
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Contact Content */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.contact-info {
    flex: 1 1 500px;
    text-align: left;
}

.contact-info h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-info-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact-info-box p {
    color: #555;
}

/* Contact Form Styling */
.contact-form {
    margin-top: 20px;
}

.contact-form h3 {
    color: #333;
    margin-bottom: 10px;
}

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

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-submit-btn {
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-submit-btn:hover {
    background-color: #004494;
}

/* Office Info */
.contact-office-info {
    flex: 1 1 300px;
    background: #f5f5f5;
    padding: 20px;
    text-align: left;
    border-radius: 8px;
}

.contact-office-info h3 {
    color: #333;
}

.contact-office-info p {
    color: #555;
    margin: 5px 0;
}
/* General styles for products page */
.container {
.card {
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: bold;
    margin-top: 10px;
}

.btn-danger {
    background-color: #ff0000;
    border: none;
    transition: background-color 0.3s;
}

.btn-danger:hover {
    background-color: #cc0000;
}

/* General styling for product pages */
.product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-section img {
    max-width: 300px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.hero-section .product-title {
    font-size: 2em;
    color: #333;
    font-weight: bold;
}

.hero-section .product-description {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
}

.details-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.customization-card {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.customization-card h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.customization-card select,
.customization-card input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

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

.action-area button {
    background: #e60000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-area button:hover {
    background: #b30000;
}
