@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Using Poppins as seen in many modern designs */
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Urdu Font Support */
body.lang-ur {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 18px;
    /* Slightly larger for Urdu legibility */
    line-height: 2;
    /* More breathing room for Nastaliq script */
}

body.lang-ur h1,
body.lang-ur h2,
body.lang-ur h3,
body.lang-ur h4 {
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 1.6;
    padding-bottom: 5px;
    /* Prevent cutting off low hanging letters */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

.text-red {
    color: #E31E24;
}

.text-white {
    color: #fff;
}

.text-dark {
    color: #1a1a1a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: inherit;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #E31E24;
    color: #fff;
    border: 2px solid #E31E24;
}

.btn-primary:hover {
    background-color: transparent;
    color: #E31E24;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #E31E24;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
}

.logo span {
    color: #E31E24;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: #333;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #E31E24;
    background-color: #fce4e5;
    /* Light red background */
}

.nav-btn .btn {
    padding: 10px 25px;
}

/* Nav specific buttons */
.btn-nav-call {
    border: 2px solid #E31E24;
    color: #E31E24;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-nav-call:hover {
    background-color: #E31E24;
    color: #fff;
}

.btn-nav-quote {
    background-color: #E31E24;
    color: #fff;
    border: 2px solid #E31E24;
    transition: all 0.3s ease;
}

.btn-nav-quote:hover {
    background-color: #b3161b;
    /* Darker red */
    border-color: #b3161b;
    color: #fff;
}

#langToggle {
    margin-left: 10px;
    padding: 10px 15px;
    background: transparent;
    color: #E31E24;
    border: 2px solid #E31E24;
    transition: all 0.3s ease;
}

#langToggle:hover {
    background-color: #E31E24;
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 5% 200px;
    /* Adjusted top padding to 100px per user request, bottom 200px remains */
    color: #fff;
    margin-top: 0;
    /* Override if needed */
    position: relative;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-content h4 {
    color: #E31E24;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section overlapping */
.about-section {
    position: relative;
    padding: 50px 5%;
    /* Reduced top padding content starts pushed up */
    background: #fff;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: -100px;
    /* Overlap hero */
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background: #fff;
    padding: 40px;
    flex: 1;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-box.primary {
    background: #E31E24;
    color: #fff;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-box.primary .btn-link {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid #fff;
}

/* Intro Content */
.intro-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.intro-image .years-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #E31E24;
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

.years-badge .number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    direction: ltr;
    /* Fix Urdu number flipping */
    unicode-bidi: isolate;
}

.intro-text {
    flex: 1;
}

.intro-text h4 {
    color: #E31E24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: #0B132B;
    padding: 80px 5%;
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    color: #aaa;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Projects/Services Section */
.services-section {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h4 {
    color: #E31E24;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 36px;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    text-align: left;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more {
    color: #E31E24;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-show-more {
    padding: 8px 20px;
    font-size: 13px;
    border: 1px solid #E31E24;
    color: #E31E24;
    background: transparent;
    margin-top: 10px;
}

.btn-show-more:hover {
    background: #E31E24;
    color: #fff;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 5%;
    background: #1a1a1a;
    text-align: center;
}

.portfolio-section .section-header h2 {
    color: #fff;
}

.portfolio-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Worker/Why Choose Us Section */
.choose-us-section {
    padding: 100px 5%;
    background: #f4f6f9;
}

.choose-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-image {
    flex: 1;
}

.choose-image img {
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.choose-content {
    flex: 1;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E31E24;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: #E31E24;
    padding: 80px 5%;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    /* Pattern overlay if any, else simple red */
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content .btn {
    background: #fff;
    color: #E31E24;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #111;
    color: #aaa;
    padding: 80px 5% 20px;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #E31E24;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #E31E24;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tel-num {
    direction: ltr !important;
    /* Force LTR for phone numbers */
    unicode-bidi: isolate;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Mobile Nav Items hidden on desktop */
.mobile-nav-item {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {

    h1,
    .hero-content h1 {
        font-size: 1.8rem !important;
        /* Smaller size for mobile to prevent overflow */
        word-wrap: break-word;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .header {
        position: relative !important;
    }

    .hero {
        padding: 80px 5% 100px !important;
        /* Reset padding for mobile */
        height: auto;
        /* Allow auto height */
        min-height: 100vh;
        text-align: center;
    }

    .hero-content .btn {
        margin: 10px 0 !important;
        display: block;
        width: 100%;
    }

    .mobile-toggle {
        display: block !important;
        margin-left: 15px;
        /* Separation from Lang Toggle */
    }

    .about-features {
        flex-direction: column;
        margin-top: 0;
    }

    .intro-container,
    .choose-container {
        flex-direction: column;
    }

    .years-badge {
        right: 0;
        bottom: 0;
    }

    .nav-links {
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    /* Show buttons in mobile menu */
    .mobile-nav-item {
        display: block;
        margin-top: 10px;
    }

    .mobile-nav-item a {
        background-color: #E31E24;
        color: white !important;
        /* Force white text */
        text-align: center;
        display: block;
    }

    /* Hide header buttons on mobile */
    .nav-btn {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    .navbar {
        position: relative;
        padding: 1rem 3%;
        flex-wrap: wrap;
    }

    .logo img {
        height: 25px;
    }

    #langToggle {
        padding: 5px 10px;
        font-size: 12px;
        margin-left: 5px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Page Styles */
.gallery-header {
    margin-top: 70px;
    /* Offset for fixed header */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 2rem 10px;
    text-align: center;
}

.gallery-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-header p {
    font-size: 1.2rem;
    font-weight: 300;
}

.gallery-section {
    padding: 20px 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-count {
    font-size: 1.1rem;
    color: #6b7280;
    direction: ltr;
    /* Fix Urdu number flipping */
    unicode-bidi: isolate;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #E31E24 0%, #1a1a1a 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    direction: ltr;
    /* Fix Urdu number flipping */
    unicode-bidi: isolate;
}

.gallery-item:hover .gallery-item-title {
    opacity: 1;
    transform: translateY(0);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    font-weight: 300;
    z-index: 2001;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

.download-button {
    position: absolute;
    top: 2rem;
    right: 6rem;
    /* Adjusted to fit close button */
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2001;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-family: inherit;
}

.download-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    user-select: none;
    z-index: 2002;
}

.modal-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.loading-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-nav {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    .modal-prev {
        left: 1rem;
    }

    .modal-next {
        right: 1rem;
    }

    .download-button {
        top: 1rem;
        right: 4rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .close-modal {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    margin-bottom: -10px;
    /* Removes any small gap before footer if present */
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* RTL Support */
body[dir="rtl"] {
    font-family: 'Noto Nastaliq Urdu', 'Poppins', sans-serif;
    text-align: right;
}

body[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-links li:first-child {
    margin-left: 0;
}

body[dir="rtl"] .feature-box h3,
body[dir="rtl"] .feature-box p,
body[dir="rtl"] .intro-text h4,
body[dir="rtl"] .intro-text h2,
body[dir="rtl"] .intro-text p,
body[dir="rtl"] .section-header h4,
body[dir="rtl"] .section-header h2,
body[dir="rtl"] .choose-content h4,
body[dir="rtl"] .choose-content p,
body[dir="rtl"] .footer-col h3,
body[dir="rtl"] .footer-col p,
body[dir="rtl"] .gallery-header h1,
body[dir="rtl"] .gallery-header p {
    text-align: center;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: baseline;
}

body[dir="rtl"] .gallery-header {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

body[dir="rtl"] .section-header {
    text-align: center;
}

body[dir="rtl"] .feature-box .btn-link i {
    transform: rotate(180deg);
    margin-right: 5px;
    margin-left: 0;
}

body[dir="rtl"] .contact-info li i {
    margin-left: 10px;
    margin-right: 0;
}

body[dir="rtl"] .footer-col h3::after {
    right: 0;
    left: auto;
}

body[dir="rtl"] .input-group i {
    right: auto;
    left: 15px;
}

body[dir="rtl"] .input-group input,
body[dir="rtl"] .input-group textarea {
    padding-left: 15px;
    padding-right: 45px;
}

body[dir="rtl"] #langToggle {
    font-family: 'Poppins', sans-serif;
    /* Keep button font legible */
}

/* Fix Hero section alignment in RTL */
body[dir="rtl"] .hero-content {
    text-align: right;
    direction: rtl;
}

body[dir="rtl"] .hero-content .btn {
    margin-right: 0;
    margin-left: 15px;
}

/* ── Category Filter Tabs (Gallery Page) ────────────────────────────── */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.cat-tab {
    padding: 10px 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #E31E24;
    border-radius: 30px;
    color: #E31E24;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cat-tab:hover {
    background: #E31E24;
    color: #fff;
}

.cat-tab.active {
    background: #E31E24;
    color: #fff;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* ── Services Grid: 3-column layout for 7 product cards ─────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center the last lonely card when 7 cards gives a row of 1 */
.services-grid .service-card:last-child:nth-child(3n - 2) {
    grid-column: 2;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid .service-card:last-child:nth-child(3n - 2) {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        gap: 8px;
    }

    .cat-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
}