    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* TOP BAR */
.top-bar {
    background: #8ee9ee;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.top-left span {
    margin-right: 20px;
}

.top-right a {
    margin-left: 12px;
    color: #000;
}

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    padding: 10px 18px;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    display: none;
    min-width: 180px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dropdown-menu li a {
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 35px 8px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle {
    display: none;
    font-size: 22px;
    margin-left: 15px;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    background: url('../hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 600px;
    padding-left: 60px;
}

.hero-content .tag {
    background: #ff6600;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 48px;
    margin: 20px 0;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 25px;
}

.btn {
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 600;
}

.btn.primary {
    background: #fff;
    color: #000;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: 100%;
        background: #fff;
        transition: 0.3s;
    }

    .nav ul {
        flex-direction: column;
    }

    .nav.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}



/* ABOUT SECTION */
.about-section {
    background: #f7f9fb;
    padding: 80px 0;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title span {
    color: #6a00ff;
}

.about-intro {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 30px;
    color: #333;
}

.about-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6a00ff;
    font-size: 14px;
}

.about-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-heading span {
    color: #6a00ff;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    max-width: 950px;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-intro,
    .about-section p {
        font-size: 16px;
    }
}


/* PROCESS SECTION */
.process-section {
    background: #fff;
    padding: 90px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.process-item {
    position: relative;
    padding: 0 15px;
}

.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 45px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #ccc,
        #ccc 6px,
        transparent 6px,
        transparent 12px
    );
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.process-icon img {
    width: 100%;
    height: auto;
}

.process-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}





/* SERVICES SECTION */
.services-section {
    background: #fff;
    padding: 90px 0;
}

.services-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.services-title span {
    color: #6a00ff;
}

.services-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    max-width: 1100px;
}

/* TEXT HIGHLIGHTS */
.highlight-red {
    color: #e63946;
    font-weight: 500;
}

.highlight-purple {
    color: #6a00ff;
    font-weight: 500;
}

/* CTA BANNER */
.cta-banner {
    margin-top: 60px;
    background: radial-gradient(circle at left, #444, #111);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.cta-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fff;
    color: #000;
}

.cta-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 28px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}
/* PRINTING PROCESS TEXT SECTION */
.printing-process {
    background: #f7f9fb;
    padding: 80px 0;
}

.process-title {
    font-size: 26px;
    font-weight: 600;
    color: #6a00ff;
    margin-bottom: 20px;
}

.printing-process p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 1100px;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-title {
        font-size: 22px;
    }

    .printing-process p {
        font-size: 15px;
    }
}


/* BLOG SECTION */
.blog-section {
    background: #f7f9fb;
    padding: 90px 0;
}

.blog-header {
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.blog-header h2 span {
    color: #6a00ff;
}

.blog-subtitle {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6a00ff;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.blog-card {
    background: transparent;
}

.blog-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-date {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 55px;
    height: 55px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date .day {
    font-size: 18px;
}

.blog-date .month {
    font-size: 11px;
}

/* CONTENT */
.blog-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    color: #6a00ff;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 15px;
    line-height: 1.4;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header h2 {
        font-size: 26px;
    }
}









/* NEWSLETTER */
.newsletter-section {
    padding: 80px 15px;
}

.newsletter-box {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(120deg, #f7a7a7, #5a7bff, #22d3ee);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 40px;
    opacity: 0.8;
}

.newsletter-left h2 {
    font-size: 32px;
    line-height: 1.3;
}

.newsletter-right {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: #fff;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col h5 {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 6px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #6a00ff;
}

.footer-socials a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.iso {
    font-weight: 600;
    border: 1px solid #000;
    padding: 5px 10px;
    font-size: 12px;
}

.back-to-top {
    text-decoration: none;
    color: #6a00ff;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-left h2 {
        font-size: 24px;
    }
}



/* HERO SLIDER */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding-left: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero-content {
        padding: 20px;
    }
}






.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    padding: 12px 0;
    display: inline-block;
}

/* Dropdown hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 100;
}

/* Dropdown items */
.dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    color: #333;
    white-space: nowrap;
}

/* SHOW ONLY ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover effects */
.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* Rotate arrow on hover */
.dropdown:hover i {
    transform: rotate(180deg);
    transition: 0.3s;
}




.clients-section {
    padding: 70px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

/* Hover Effect */
.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile spacing */
@media (max-width: 576px) {
    .clients-grid {
        gap: 25px;
    }
}




.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
}

.tag {
    color: #a855f7;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 52px;
    margin: 15px 0;
}

.hero-buttons {
    margin-top: 25px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
}

.btn.primary {
    background: #7c3aed;
    color: #fff;
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}










.category-section {
    background: #fff;
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
}

.category-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #999 #eee;
    padding-bottom: 10px;
}

.category-wrapper::-webkit-scrollbar {
    height: 6px;
}

.category-wrapper::-webkit-scrollbar-track {
    background: #eee;
}

.category-wrapper::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.category-item {
    min-width: 110px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
}

.category-item i {
    width: 60px;
    height: 60px;
    background: #e25a1b;
    color: #fff;
    border-radius: 14px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.category-item span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Hover & Active */
.category-item:hover i,
.category-item.active i {
    background: #e25a1b;
    transform: translateY(-4px);
}






/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 30px;
    background: #f5f5f5;
}

.page-header h1 {
    margin-bottom: 8px;
}

/* HERO */
.offset-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: linear-gradient(135deg, #ff2d55, #1da1f2);
    color: #fff;
}

.offset-text h2 {
    font-size: 48px;
}

.offset-text span {
    font-weight: 800;
}

.offset-image img {
    max-width: 380px;
}

/* CONTENT */
.offset-content {
    padding: 60px;
}

.offset-content h3 {
    color: #1da1f2;
    margin-bottom: 10px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.product-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .offset-hero {
        flex-direction: column;
        text-align: center;
    }

    .offset-text h2 {
        font-size: 34px;
    }

    .offset-image img {
        margin-top: 30px;
    }
}






.offset-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

/* Banner image */
.offset-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Content */
.offset-text {
    position: relative;
    z-index: 2;
}

.offset-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000; /* change to white if image is dark */
}

.offset-text span {
    color: #ff2d55;
}

/* Responsive */
@media (max-width: 768px) {
    .offset-hero {
        height: 280px;
        padding-left: 30px;
    }

    .offset-text h2 {
        font-size: 32px;
    }
}





.product-link {
    text-decoration: none;
    color: inherit;
}

.product-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}
.product-card p {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}



  .top-bar {
    background: #111;
    color: #fff;
    font-size: 14px;
}

.top-bar .container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left & Right */
.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icons */
.top-left i,
.top-right i {
    color: #ff7a00; /* optional accent */
}

/* Social icons */
.top-right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* 🔹 MOBILE VIEW */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-left {
        flex-direction: column;
        gap: 5px;
        order: 1; /* phone & email first */
    }

    .top-right {
        order: 2;
        justify-content: center;
    }
}
 .product-section {
  padding: 40px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 15px 0 8px;
  font-weight: 700;
}

.product-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.product-card .btn {
  display: inline-block;
  padding: 10px 18px;
  background: #ff6a00;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background: #e85c00;
}


/* VIEW MORE SMALL BOX */
.view-more-box {
    align-self: flex-start;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #ff6a00;
    border: 2px solid #ff6a00;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

/* HOVER EFFECT */
.view-more-box:hover {
    background: #ff6a00;
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.3);
}


/* VIEW MORE BUTTON */
.view-more-box {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ff6a00;
  border: 2px solid #ff6a00;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-more-box:hover {
  background: #ff6a00;
  color: #fff;
  box-shadow: 0 6px 15px rgba(255,106,0,.3);
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 12px;
  position: relative;
}

.popup-box h3 {
  margin-bottom: 15px;
}

.popup-box label {
  font-size: 13px;
  font-weight: 600;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-box button {
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}












* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 16px;
}
.category-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.category-item {
  flex: 0 0 auto;
  min-width: 120px;
  text-align: center;
}

@media (max-width: 768px) {
  .category-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .category-item {
    min-width: 100px;
    font-size: 13px;
  }
}
.page-header {
  background: #111;
  color: #fff;
  padding: 50px 16px;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
}

.page-header p {
  font-size: 14px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 24px;
  }
}
.offset-hero {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.offset-hero img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .offset-hero {
    max-height: 250px;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card h3 {
  font-size: 18px;
  margin: 12px 0;
}

.product-card p {
  font-size: 14px;
  line-height: 1.5;
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .popup-box {
    width: 95%;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }

  .footer-col {
    margin-bottom: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
