html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    font-family: "Poppins";
    scroll-behavior: smooth;
    margin: 0;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
}

ol,
ul,
menu {
    list-style: none;
}

:root {
    /* transition */
    --transition-1: 0.15s ease;
    --transition-2: 0.35s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);
}

/* ------------------
NAVBAR DESIGN
----------------- */

.header .btn {
    display: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* padding-block: 14px; */
    z-index: 4;
    transition: var(--transition-1);
}

.header.active {
    position: fixed;
    background-color: #4f4f4f;
    box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 64px 12px 64px;
    gap: 40px;
    background-color: #fcfcfc;
    box-shadow: 0px 8px 28px 0px rgba(178, 178, 178, 0.25);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    color: #2F2F2F;
    font-size: 30px;
    font-weight: 500;
}

.logo span {
    color: #FF0000;
}

.logo img {
    /* height: 55px; */
    /* width: 55px; */
    /* height: 30px; */
    width: 160px;
}

.logo-small img {
    width: 150px;
}

.nav-open-btn {
    color: #2F2F2F;
    font-size: 32px;
    padding: 4px;
    background-color: transparent;
    border: none;
}

.navbar {
    background-color: #fcfcfc;
    position: fixed;
    top: 0;
    float: right;
    right: -280px;
    width: 100%;
    max-width: 280px;
    min-height: 100%;
    padding: 20px;
    visibility: hidden;
    z-index: 2;
    transition: 0.25s var(--cubic-in);
}

.navbar.active {
    /* transform: translateX(280px); */
    right: 0;
    visibility: visible;
    transition: 0.5s var(--cubic-out);
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px 30px;
}

.navbar-top a {
    font-size: 24px;
    text-transform: uppercase;
    color: #2F2F2F;
    font-weight: 500;
}

.navbar-top a span {
    color: #FF0000;
}

.nav-close-btn {
    display: flex;
    color: #2F2F2F;
    font-size: 35px;
    padding: 4px;
    float: right;
    background-color: transparent;
    border: none;
}

.navbar-link {
    color: #2F2F2F;
    font-size: 15px;
    font-weight: 500;
    padding-block: 12px;
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: #4f4f4f7d;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-2);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.contact-button {
    /* background-color: #ff2323; */
    background-color: #2F2F2F;
    color: #fcfcfc;
    padding: 8px 24px;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: "Poppins";
    transition: 0.3s ease;
}

.contact-button:hover {
    transition: 0.3s ease;
    background-color: #4f4f4f;
}


/* ------------------
HERO DESIGN
----------------- */

.hero {
    position: relative;
    background-color: #1b1b1b;
    height: 650px;
    width: 100%;
    background-image: url('./hero-bg2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 40px;
    /* background-position: center; */
    overflow: hidden;
    padding: 40px 64px 40px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.social-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 999;
}

.social-hero ion-icon {
    font-size: 24px;
    color: #fcfcfc;
    opacity: 1;
}

.social-hero a {
    opacity: 1;
    text-decoration: none;
    color: #fcfcfc;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero-content h1 {
    margin: 0;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 36px;
    width: 50%;
}

.hero-content p {
    margin: 0;
    font-family: "poppins";
    color: #e5e5e5;
    font-size: 16px;
    width: 50%;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 24px;
    flex-direction: row;
    align-items: center;
}

.btn-primary {
    background-color: #454545;
    color: #ffffff;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d3d3d;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    /* border: 2px solid #fff; */
    box-shadow: inset 0 0 0 2px #fff;
    border-radius: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

.btn-secondary:hover {
    background-color: #fcfcfc2b;
    color: #ffffff;
}


/* ------------------
ABOUT DESIGN
----------------- */

.about {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px 64px;
}

.about-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.about-header .about-title {
    background-color: #f0f0f0;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 18px;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
}

.about-content {
    width: 65%;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}

.about-content h2 {
    font-weight: 600;
    font-size: 30px;
    margin: 0;
    width: 80%;
}

.about-header-content p {
    text-align: justify;
    margin: 20px 0px 40px 0px;
}

.about-features {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 180px;
    background-color: #fff;
    padding: 30px 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    width: 200px;
}

.feature-card h4 {
    margin: 0;
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
}

.feature-card ion-icon {
    font-size: 22px;
    color: #6d6d6d;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    color: #454545;
    font-weight: 500;
}

.feature-card svg {
    width: 24px;
    height: 24px;
}


/* ------------------
SERVICES DESIGN
----------------- */

.services-section {
    padding: 0px 64px 100px 64px;
    /* background: linear-gradient(to bottom, #ffffff, #f8f9fa); */
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    color: #333;
    /* margin-bottom: 40px; */
    margin: 0 0 16px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 0;
    color: #2c3e50;
}

.view-all-btn {
    display: inline-block;
    margin-top: 30px;
    font-family: "Poppins";
    padding: 10px 20px;
    background-color: #c31315;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #a61517;
}


/* ------------------
TESTIMONIALS DESIGN
----------------- */

#testimonials {
    padding: 0px 64px 100px 64px;
    /* background-color: #fcfcfc; */
    display: flex;
    justify-content: center;
    align-items: center;
}

#testimonials h1 {
    font-size: 32px;
    font-family: "Poppins";
}

:root {
    /* colors */
    --ta0-color-primary-hsl: 250, 84%, 54%;
    --ta0-color-bg-hsl: 0, 0%, 100%;
    --ta0-color-contrast-high-hsl: 230, 7%, 23%;
    --ta0-color-contrast-higher-hsl: 230, 13%, 9%;
    --ta0-color-contrast-lower-hsl: 240, 4%, 85%;
    --ta0-color-contrast-low-hsl: 240, 4%, 65%;
    --ta0-color-contrast-medium-hsl: 225, 4%, 47%;

    /* spacing */
    --ta0-space-4xs: 0.125rem;
    --ta0-space-3xs: 0.25rem;
    --ta0-space-2xs: 0.375rem;
    --ta0-space-sm: 0.75rem;
    --ta0-space-md: 1.25rem;
    --ta0-space-lg: 2rem;

    /* typography */
    --ta0-text-sm: 0.833rem;
}

@media(min-width: 64rem) {
    :root {
        /* spacing */
        --ta0-space-4xs: 0.1875rem;
        --ta0-space-3xs: 0.375rem;
        --ta0-space-2xs: 0.5625rem;
        --ta0-space-sm: 1.125rem;
        --ta0-space-md: 2rem;
        --ta0-space-lg: 3.125rem;

        /* typography */
        --ta0-text-sm: 1rem;
    }
}

/* icons */
.ta0-icon {
    height: var(--ta0-size, 1em);
    width: var(--ta0-size, 1em);
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
}

.ta0-icon--xl {
    --ta0-size: 64px;
}

/* component */


/* utility classes */
.ta0-margin-top-4xs {
    margin-top: var(--ta0-space-4xs);
}

.ta0-color-contrast-medium {
    --ta0-color-o: 1;
    color: hsla(var(--ta0-color-contrast-medium-hsl), var(--ta0-color-o, 1));
}

.ta0-block {
    display: block;
}

.ta0-text-sm {
    font-size: var(--ta0-text-sm);
}

.ta0-border {
    --ta0-border-o: 1;
    border: var(--ta0-border-width, 1px) var(--ta0-border-style, solid) hsla(var(--ta0-color-contrast-lower-hsl), var(--ta0-border-o, 1));
}

.ta0-radius-50\% {
    border-radius: 50%;
}

.ta0-height-lg {
    height: 3rem;
}

.ta0-width-lg {
    width: 3rem;
}

.ta0-margin-bottom-3xs {
    margin-bottom: var(--ta0-space-3xs);
}

.ta0-flex-shrink-0 {
    flex-shrink: 0;
}

.ta0-items-center {
    align-items: center;
}

.ta0-flex-column {
    flex-direction: column;
}

.ta0-flex {
    display: flex;
}

.ta0-margin-bottom-md {
    margin-bottom: var(--ta0-space-md);
}

.ta0-line-height-md {
    line-height: 1.4;
}

.ta0-sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    white-space: nowrap;
}

.ta0-margin-bottom-sm {
    margin-bottom: var(--ta0-space-sm);
}

.ta0-text-center {
    text-align: center;
}

.ta0-padding-md {
    padding: var(--ta0-space-md);
}

.ta0-radius-md {
    border-radius: 12px;
}

.ta0-bg-contrast-lower {
    --ta0-bg-o: 1;
    /* background-color: hsla(var(--ta0-color-contrast-lower-hsl), var(--ta0-bg-o, 1)); */
    background-color: #eeeeee;
}

.ta0-gap-sm {
    gap: var(--ta0-space-sm);
}

.ta0-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    justify-content: center;
}

.ta0-grid>div {
    grid-column: span 6;
    text-align: center;
}

.ta0-grid>* {
    min-width: 0;
    grid-column-end: span 12;
}

.ta0-margin-bottom-lg {
    margin-bottom: var(--ta0-space-lg);
}

.ta0-max-width-adaptive-lg {
    max-width: 32rem;
}

@media(min-width: 48rem) {
    .ta0-max-width-adaptive-lg {
        max-width: 48rem;
    }
}

@media(min-width: 64rem) {
    .ta0-max-width-adaptive-lg {
        max-width: 64rem;
    }
}

@media(min-width: 80rem) {
    .ta0-max-width-adaptive-lg {
        max-width: 80rem;
    }
}

.ta0-container {
    width: calc(100% - 2*var(--ta0-space-md));
    /* margin-left: auto;
    margin-right: auto; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ta0-margin-right-2xs {
    margin-right: var(--ta0-space-2xs);
}

.ta0-flex-wrap {
    flex-wrap: wrap;
}

.ta0-margin-bottom-2xs {
    margin-bottom: var(--ta0-space-2xs);
}

.ta0-color-contrast-low {
    --ta0-color-o: 1;
    color: hsla(var(--ta0-color-contrast-low-hsl), var(--ta0-color-o, 1));
}

.ta0-margin-x-auto {
    margin-left: auto;
    margin-right: auto;
}

.ta0-border-2 {
    --ta0-border-width: 2px;
}

.ta0-border-bg {
    --ta0-border-o: 1;
    border-color: hsla(var(--ta0-color-bg-hsl), var(--ta0-border-o, 1));
}

.ta0-bg-opacity-30\% {
    --ta0-bg-o: 0.3;
}

.ta0-bg-opacity-50\% {
    --ta0-bg-o: 0.5;
}

@media(min-width: 64rem) {
    .ta0-margin-top-auto\@md {
        margin-top: auto;
    }

    .ta0-flex-column\@md {
        flex-direction: column;
    }

    .ta0-flex\@md {
        display: flex;
    }

    .ta0-col-4\@md {
        grid-column-end: span 4;
    }
}



/* ----------------------------------------------------------------------------------------------------
RESPONSIVE DESIGN
---------------------------------------------------------------------------------------------------- */

/* @media (min-width: 992px) and (max-width: 1080px) {
    .contact-button {
        display: none;
    }
} */

@media (min-width: 1080px) {
    #contact-link {
        display: none;
    }
}

@media (min-width: 550px) {
    .header .btn {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-inline-start: auto;
    }
}

@media (min-width: 992px) {

    .overlay,
    .nav-open-btn,
    .navbar-top {
        display: none;
    }

    .navbar,
    .navbar.active {
        all: unset;
        /* margin-inline-start: auto; */
    }

    .header .btn {
        margin-inline-start: 0;
    }

    .navbar-list {
        display: flex;
        gap: 25px;
    }

    .navbar-item:not(:last-child) {
        border-bottom: none;
    }

    .navbar-link {
        position: relative;
        font-size: 16px;
        transition: 0.3s ease;
        color: #2F2F2F;
        font-weight: 500;
    }

    .navbar-link::after {
        content: '';
        position: absolute;
        bottom: 9px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #2F2F2F;
        transition: width 0.3s ease;
    }

    .navbar-link:hover {
        color: #000;
    }

    .navbar-link:hover::after {
        width: 100%;
    }

    /* .navbar-link:hover {
        color: #000;
        transition: 0.3s ease;
    } */
}

@media (max-width: 992px) {
    .logo {
        font-size: 24px;
    }

    .header .container {
        padding: 12px 24px;
    }

    .navbar-item:not(:last-child) {
        border-bottom: 1px solid #d6d6d69a;
    }

    .navbar-item:last-child {
        /* background-color: #ff2323; */
        background-color: #2F2F2F;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0px;
        border-radius: 100px;
    }

    .navbar-item:last-child a {
        color: #fcfcfc;
        width: 100%;
        margin: 0;
        text-align: center;
        font-weight: 600;
    }

    .navbar-item {
        padding: 8px 0px;
    }

    .navbar-list {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 1250px) {
    .about-features-mm {
        display: none;
    }
}

@media (max-width: 1250px) {
    .about-features {
        display: none;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .about-features-mm {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        /* justify-content: space-between; */
        gap: 30px;
        /* column-gap: 60px; */
    }
}

@media (max-width: 1170px) {
    .feature-card ion-icon {
        contain: none;
    }

    .footer {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 1150px) {
    .footer {
        flex-direction: column;
    }

    .footer::before {
        background-position: center right;
        background-size: 50% 100%;
    }
}

@media (max-width: 1024px) {
    .credits {
        padding: 20px 0px;
    }

    .about-header {
        flex-direction: column;
        gap: 20px;
    }

    .about-title {
        margin: 0;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        width: 100%;
    }

    .contact-footer ul li {
        width: 100%;
    }
}

@media (max-width: 630px) {
    .feature-card {
        width: 180px;
    }
}

@media (max-width: 590px) {
    .about-content h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 20px 20px;
        width: 160px;
    }
}

@media (max-width: 550px) {
    .about {
        margin-top: 50px;
    }
}

@media (max-width: 450px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
        text-align: justify;
    }

    .about-features-mm {
        gap: 20px;
    }

    .feature-card {
        width: 130px;
    }

    .feature-card p {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .feature-card h4 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* .about-features-mm {
        justify-content: center;
    } */

    .about-content {
        gap: 30px;
    }

    .about-header .about-title {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
    }

    .feature-card {
        width: auto;
    }
}




/* ------------------
RESPONSIVE STYLES
----------------- */

/* Tablet & Small Screens */
@media (max-width: 1024px) {

    /* Navbar */
    .header .container {
        padding: 12px 40px;
    }

    .logo img {
        width: 140px;
    }

    /* Hero Section */
    .hero {
        height: 550px;
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
        width: 60%;
    }

    .hero-content p {
        font-size: 15px;
        width: 70%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* About Section */
    .about {
        padding: 80px 40px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 28px;
        width: 100%;
    }

    /* Services Section */
    .services-section {
        padding: 0 40px 80px 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }

    /* Testimonials */
    #testimonials {
        padding: 0 40px 80px 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* Navbar */
    .header .container {
        padding: 12px 24px;
    }

    .logo img {
        width: 120px;
    }

    /* Hero Section */
    .hero {
        height: 480px;
        padding: 32px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 28px;
        width: 80%;
    }

    .hero-content p {
        font-size: 14px;
        width: 85%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* About Section */
    .about {
        padding: 60px 24px;
        text-align: center;
    }

    .about-header {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        align-items: center;
    }

    .about-content h2 {
        font-size: 26px;
        width: 90%;
    }

    .about-content p {
        font-size: 14px;
    }

    /* Feature Cards */
    .about-features-mm {
        justify-content: center;
        gap: 16px;
    }

    .feature-card {
        width: 180px;
        padding: 20px;
    }

    .feature-card h4 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* Services Section */
    .services-section {
        padding: 0 24px 60px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Testimonials */
    #testimonials {
        padding: 0 24px 60px 24px;
    }

    #testimonials h1 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .ta0-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* Adds spacing between testimonials */
        align-items: center;
        /* Centers testimonials */
    }

    .ta0-grid>div {
        width: 100%;
        /* Ensures testimonials take full width */
        max-width: 90%;
        /* Keeps them neatly sized on smaller screens */
        text-align: center;
        /* Centers the text inside */
    }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {

    /* Hero Section */
    .hero {
        height: 500px;
        padding: 24px;
    }

    .hero-content h1 {
        font-size: 22px;
        width: 100%;
        margin-top: 80px;
    }

    .hero-content p {
        font-size: 13px;
        width: 100%;
        margin: 0;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 6px 18px;
    }

    /* About Section */
    .about {
        padding: 50px 24px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 13px;
        text-align: justify;
    }

    .about-features-mm {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%;
    }

    .feature-card h4 {
        font-size: 14px;
    }

    /* Services Section */
    .services-section {
        padding: 0 24px 40px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 14px;
    }

    .view-all-btn {
        font-size: 12px;
        padding: 6px 14px;
    }

    /* Testimonials */
    #testimonials {
        padding: 0 24px 40px 24px;
    }

    #testimonials h1 {
        font-size: 20px;
    }
}

/* Extra Small Screens (Below 375px) */
@media (max-width: 374px) {

    /* Hero Section */
    .hero {
        height: 400px;
        padding: 16px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
    }

    /* About Section */
    .about {
        padding: 40px 12px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 12px;
    }

    .feature-card {
        width: 100%;
        padding: 16px;
    }

    /* Services Section */
    .services-section {
        padding: 0 12px 30px 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-card {
        padding: 12px;
    }

    /* Testimonials */
    #testimonials {
        padding: 0 12px 30px 12px;
    }

    #testimonials h1 {
        font-size: 18px;
    }
}


@media (min-width: 1440px) {

    .container,
    #contactus,
    #faqs,
    .about,
    .product-details,
    .products,
    .services-section,
    .hero,
    .footer-content,
    .copyright,
    .filter-section {
        padding-left: 120px;
        padding-right: 120px;
    }
}