/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    scrollbar-width: none;
    scroll-behavior: smooth;
}
body {
    line-height: 1.6;
    color: #fff;
    background: #1e1e1e;
    position: relative;
    width: 100%;
    letter-spacing: 0.05rem;
}
a {
    text-decoration: none;
    color: inherit;
}

header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
}

/* Top bar */
.top-bar {
    background-color: #1e1e1e;
    color: white;
    padding: 10px 20px;
}
.top-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
}
.nav-contact-info,
.nav-social-links {
    display: flex;
    gap: 20px;
}

.nav-contact-info a,
.nav-social-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}
.icon {
    width: 16px;
    height: 16px;
}

/* Main navigation */
.main-nav {
    background-color: #1e1e1e;
    color: white;
    padding: 10px 20px;
    border-top: 1px solid #333;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-direction: row-reverse; */
    max-width: 100%;
    margin: 0 auto;
}

.logo img {
    width: 60px;
}

.logo {
    font-size: 25px;
    font-weight: bold;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 400;
}
.logo span {
    margin-left: 5px;
    color: #4caf50;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 400;
}

.logo-subtitle {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    width: 70%;
    justify-content: space-evenly;
    gap: 20px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
}

.nav-links a.active {
    color: #4caf50; /* Highlight color for active link */
    font-weight: bold; /* Optional: make the active link bold */
    transition: 0.3s ease; /* Optional: add a smooth transition */
}

.nav-links a.activeContact {
    background-color: white; /* White background */
    color: #4caf50; /* Highlight text color */
    font-weight: bold; /* Optional: make it bold */
    transition: 0.3s ease;
}

.contact-btn {
    background-color: #00a651;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.6s ease;
}

.contact-btn:hover {
    background-color: #0e6438;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero section */
.hero {
    background-image: url("https://www.ensingerplastics.com/-/media/ensinger/images/industries/building/building-gradiation-540-60694967.ashx?rev=7b45a328d6af4d39bfbc675dc7cbf0e7 ");
    background-size: cover;
    background-position: center;
    height: calc(100vh - 300px);
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 20px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.495);
}
.hero-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    color: white;
    text-align: center;
    background-color: transparent;
    animation: slideUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
}
.hero h1 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}
.hero p {
    font-size: 12px;
    max-width: 60%;
}

/* Product section */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 40px;
}

/* Sidebar Styles */
.sidebar {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px;
    color: #333;
    height: fit-content;
}

.category-list {
    list-style: none;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
}

.category-header::after {
    content: "▼";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-header.active::after {
    transform: rotate(180deg);
}

.category-list {
    list-style: none;
    margin-top: 10px;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-list.active {
    max-height: 0px;
}

.category-item {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background-color: rgba(0, 150, 80, 0.1);
}

.category-item.active {
    background-color: #009650;
    color: white;
}

/* Main Content Styles */
.main-content h1 {
    font-size: 2.5rem;
}

.description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    font-size: 15px;
}

.product-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.product-name {
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.product-code {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.modal-image {
    flex: 1 1 300px;
    margin-right: 30px;
}

.modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-details {
    flex: 1 1 300px;
}

.modal-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.modal-details p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

#modal-enquiry-btn {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#modal-enquiry-btn:hover {
    background-color: #45a049;
}

/* Enquiry Form Styles */
.enquiry-form {
    display: none;
}

.enquiry-form.active {
    display: block;
}

.enquiry-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.enquiry-form button[type="submit"] {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.enquiry-form button[type="submit"]:hover {
    background-color: #45a049;
}

.hidden {
    display: none;
}

.product-info.hidden {
    display: none;
    
}

.product-info {
    margin-bottom: 20px;
   
}

.product-info .form-control {
    background-color: #f0f0f0;
}

/* Filter Tab Styles */
.tab-filter {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    gap: 10px;
    margin: 20px 0; /* Add some margin for spacing */
}

.filter-tab {
    background-color: transparent; /* Transparent background */
    color: #ffff;
    border: 2px solid transparent; /* Transparent border for hover effect */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding for better click area */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transitions */
}

.tab-filter.hidden {
    display: none;
}

.filter-tab:hover {
    background-color: rgba(
        0,
        150,
        80,
        0.1
    ); /* Light green background on hover */
    border-color: #009650; /* Green border on hover */
}

.filter-tab.active {
    background-color: #009650; /* Active tab background color */
    color: white; /* White text for active tab */
    border-color: #007a3d; /* Darker green border for active tab */
}

/* Responsive design for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tab-filter {
        width: 100%;
        gap: 0;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

#page-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    background-color: transparent;
    transition: background-color 0.4s ease;
    border: 2px solid #ffffff62;
}

.page-number:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-number.active {
    background-color: white;
    color: #1e1e1e;
}

.next-btn,
.prev-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.next-btn:hover,
.prev-btn:hover {
    background-color: rgba(250, 247, 247, 0.8);
}

.faqs {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section {
    max-width: 1200px;
}

.faq-title {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    background-color: #ffffff;
}

.faq-question {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    width: 60%;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
    color: #333;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0px 24px;
}

/* contact */

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    color: white;
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(103, 100, 100, 0.502);
}

.contact-form {
    animation: slideUp 0.6s ease-out;
}

.form-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
}



.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.product-info {
    grid-template-columns: repeat(2, 1fr);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
}

.country-code {
    /* width: 100%; */
    padding: 10px;
    background: white;
    color: #333;
    border: 2px solid transparent;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-input {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 2px solid transparent;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hide arrows for number input in Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4834d4;
    outline: none;
    box-shadow: 0 0 0 4px rgba(72, 52, 212, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #4834d4;
    color: white;
    border: none;
    width: 100%;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #3a2bb3;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 0.8s linear infinite;
}

.contact-info {
    animation: slideUp 0.6s ease-out 0.2s backwards;
    flex-direction: column;
}

.info-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    animation: slideRight 0.5s ease-out forwards;
    opacity: 0;
}

.info-item:nth-child(1) {
    animation-delay: 0.3s;
}
.info-item:nth-child(2) {
    animation-delay: 0.4s;
}
.info-item:nth-child(3) {
    animation-delay: 0.5s;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #1e1e1e;
}

.info-text {
    font-size: 16px;
    color: #f5f5f5;
}

/* Success message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
}

.success-message.show {
    transform: translateX(0);
    opacity: 1;
}

/* footer */

.footer {
    background-color: #1e1e1e;
    color: white;
    padding: 60px 0 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-contact span {
    font-size: 14px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.05px;
    font-weight: 400;
}

.footer-logo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4834d4;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.footer-logo:hover::after {
    transform: translateX(0);
}

.footer-logo span {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.05px;
    font-weight: 400;
    margin-left: 5px;
    color: #4caf50;
}

.footer-logo img {
    width: 175px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: #4834d4;
    transform: translateY(-3px);
}

.social-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4834d4;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-link {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.quick-link::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: white;
    padding-left: 20px;
}

.quick-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #999;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #4834d4;
    transform: rotate(360deg);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-keywords {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 50px 20px 10px;
    line-height: 1.5;
}

.footer-keywords span {
    padding: 0 10px;
    display: inline-block;
}

.footer-keywords span:not(:last-child) {
    border-right: 1px solid gray;
}

.footer-keywords span:hover {
    color: white;
}

.footer-keywords {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 50px 20px 10px;
    line-height: 1.5;
}

.footer-keywords span {
    padding: 0 10px;
    display: inline-block;
}

.footer-keywords span:not(:last-child) {
    border-right: 1px solid gray;
}

.footer-keywords span:hover {
    color: white;
}

/* Responsive design */

@media (max-width: 768px) {
    .logo img {
        width: 50px;
    }

    .logo {
        font-size: 16px;
    }

    .nav-contact-info span {
        display: none;
    }
    .top-bar-content {
        justify-content: space-between;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #1e1e1ee8;
        backdrop-filter: blur(5px);
        padding: 20px;
        z-index: 1000;
        width: 100%;
        animation: slided 1s ease;
    }

    .hero {
        height: calc(100vh - 400px);
    }

    .hero h1 {
        font-size: 30px;
    }
    .hero p {
        font-size: 13px;
        max-width: 100%;
    }

    .container {
        grid-template-columns: 1fr;
    }

    .category-list {
        max-height: 0px;
    }

    .category-list.active {
        max-height: 1000px;
    }

    #category-title {
        font-size: 35px;
        text-align: center;
    }

    .description {
        font-size: 15px;
        text-align: center;
    }

    .product-grid {
        /* grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .product-code {
        font-size: 12px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        width: 100%;
    }

    .faq-answer {
        width: 100%;
        font-size: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .quick-links {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-contact {
        width: 100%;
        align-items: center;
    }

    .footer-contact span {
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slided {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
