/* Global Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #3b82f6;
  --text-color: #333;
  --light-text: #666;
  --lighter-text: #999;
  --bg-light: #f8fafc;
  --bg-dark: #1e293b;
  --white: #ffffff;
  --light-gray: #f1f5f9;
  --medium-gray: #e2e8f0;
  --dark-gray: #94a3b8;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 3rem;
}

/* Header Styles */

header {
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0; /* Added padding */
}

header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex; /* Add this */
  justify-content: space-between; /* Add this */
  align-items: center; /* Add this */
}

header .logo img {
  height: 50px; /* Adjust as needed */
  width: auto; /* Maintain aspect ratio */
}

header nav ul {
  display: flex;
  gap: 30px;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

header nav ul li a {
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
}

header nav ul li a:hover {
  color: #2563eb;
}

header nav ul li.active a {
  color: #2563eb;
}

header nav ul li.active a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
}

header .logo img {
  max-width: 160px; /* Adjust as needed */
  height: auto;
}

/* Hamburger Icon Styles */
.hamburger {
  display: none; /* Hidden on desktop */
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  top: 8px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 10px 20px;
  }

  header nav ul {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hamburger {
    display: block; /* Show on mobile */
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

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

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

  /* Animate hamburger to X when active */
  .hamburger.active .hamburger-inner {
    background-color: transparent;
  }

  .hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Overlay when menu is open */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
.no-scroll {
  overflow: hidden;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 180px 0 100px;
  margin-top: 80px;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--white);
}

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.about p {
  margin-bottom: 15px;
}

/* Services Highlight */
.services-highlight {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.service-card p {
  padding: 0 20px 20px;
  color: var(--light-text);
}

/* CTA Section */
.cta {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.cta .btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--light-gray);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p,
.footer-col a {
  color: var(--dark-gray);
  margin-bottom: 10px;
  display: block;
}

.footer-col a:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
  margin-top: 80px;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.printing-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/printing-header.jpg');
  background-size: cover;
  background-position: center;
}

/* Services Detail Page */
.services-detail {
  padding: 80px 0;
}

.service-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.tab-btn {
  padding: 12px 24px;
  background-color: var(--medium-gray);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-item img {
  flex: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Service item container */
.service-item {
  display: flex;
  flex-wrap: wrap; /* Allows items to stack on small screens */
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}

/* Reverse layout for alternate items */
.service-item.reverse {
  flex-direction: row-reverse;
}

/* Image container */
.service-image-container {
  flex: 1;
  min-width: 300px; /* Prevents image from getting too small */
}

/* Responsive image */
.service-image {
  width: 100%;
  height: auto;
  max-height: 400px; /* Prevents images from being too tall */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Text container */
.service-text {
  flex: 1;
  min-width: 300px; /* Matches image min-width */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .service-image-container,
  .service-text {
    min-width: 100%;
  }
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.service-text ul {
  margin-left: 20px;
}

.service-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-text ul li:before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.reason-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Mobile Apps Page */
.app-dev-process {
  padding: 80px 0;
  background-color: var(--white);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.app-dev-services {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.app-service {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.app-service h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.app-service p {
  padding: 0 20px 20px;
  color: var(--light-text);
}

.app-portfolio {
  padding: 80px 0;
  background-color: var(--white);
}

.portfolio-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 8px 20px;
  background-color: var(--medium-gray);
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.tech-stack {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.tech-item {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
}

.tech-item img {
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.cta-app {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

/* Printing Page */
.printing-intro {
  padding: 80px 0;
  background-color: var(--white);
}

.printing-intro .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.printing-intro-text {
  flex: 1;
}

.printing-intro-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.printing-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.printing-services {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.printing-category {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.printing-category h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.printing-category h3 i {
  color: var(--primary-color);
}

.printing-category ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.printing-category ul li:before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.printing-gallery {
  padding: 80px 0;
  background-color: var(--white);
}

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

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.printing-materials {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.material-item {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.material-item:hover {
  transform: translateY(-5px);
}

.material-item img {
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.printing-process {
  padding: 80px 0;
  background-color: var(--white);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  position: relative;
}

.process-step .step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.printing-cta {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

/* Contact Page */
.contact-info {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.contact-method {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-method i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-method p {
  margin-bottom: 20px;
  color: var(--light-text);
}
.thankyou {
  grid-column: 1 / -1;
  text-align: center;
  color: green;
  font-size: 16px;
  display: none;
}
.map-link,
.email-link,
.call-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-link:hover,
.email-link:hover,
.call-link:hover {
  background-color: var(--secondary-color);
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--white);
}

.form-container {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.map-container {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.business-hours {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.day {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.day h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-buttons .btn i,
.cta-buttons .btn-secondary i {
  margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about .container,
  .printing-intro .container {
    flex-direction: column;
  }

  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 15px;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .form-container {
    padding: 30px 20px;
  }
}
