:root {
    --primary: #fff;
}

body {
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

/* #region NAVBAR */
.navbar {
    width: 100%;
    background: linear-gradient(90deg, rgb(28, 27, 27) 0%, rgb(26, 23, 23) 100%);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: fixed;
    top: 0;
    z-index: 999;
}

.navbar-title-link {
    text-decoration: none;
    color: inherit;

}

.navbar-container {
    display: flex;
    /* justify-content: center; */
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.navbar-logo {
    /* margin-right: 40px; */
    color: #f9f9f9;
    /* justify-self: start; */
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.navbar-logo-svg {
    width: 50px;
    height: auto;
}

.navbar-logo-svg path {
    fill: #f9f9f9;
    /* filter: invert(18%) sepia(95%) saturate(2582%) hue-rotate(191deg) brightness(90%) contrast(96%); */
}

.navbar-logo-svg:hover {
    /* filter: invert(43%) sepia(95%) saturate(2582%) hue-rotate(191deg) brightness(90%) contrast(96%); */
    /* animation: rainbowEffect 3s linear infinite; */
    animation: blueShades 3s ease-in-out infinite;
}

@keyframes blueShades {
    0% {
        filter: invert(43%) sepia(95%) saturate(2000%) hue-rotate(180deg) brightness(90%) contrast(96%);
    }

    15% {
        filter: invert(43%) sepia(95%) saturate(2200%) hue-rotate(190deg) brightness(90%) contrast(96%);
    }

    30% {
        filter: invert(43%) sepia(95%) saturate(2400%) hue-rotate(200deg) brightness(90%) contrast(96%);
    }

    45% {
        filter: invert(43%) sepia(95%) saturate(2600%) hue-rotate(210deg) brightness(90%) contrast(96%);
    }

    60% {
        filter: invert(43%) sepia(95%) saturate(2800%) hue-rotate(220deg) brightness(90%) contrast(96%);
    }

    75% {
        filter: invert(43%) sepia(95%) saturate(2600%) hue-rotate(210deg) brightness(90%) contrast(96%);
    }

    90% {
        filter: invert(43%) sepia(95%) saturate(2400%) hue-rotate(200deg) brightness(90%) contrast(96%);
    }

    100% {
        filter: invert(43%) sepia(95%) saturate(2200%) hue-rotate(190deg) brightness(90%) contrast(96%);
    }
}

@keyframes rainbowEffect {
    0% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(100%) contrast(100%);
    }

    /* Red */
    17% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(60deg) brightness(100%) contrast(100%);
    }

    /* Orange */
    33% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(120deg) brightness(100%) contrast(100%);
    }

    /* Yellow */
    50% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(180deg) brightness(100%) contrast(100%);
    }

    /* Green */
    67% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
    }

    /* Blue */
    83% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(300deg) brightness(100%) contrast(100%);
    }

    /* Indigo */
    100% {
        filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(360deg) brightness(100%) contrast(100%);
    }

    /* Violet */
}

.fa-typo3 {
    margin-left: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 10px;
    list-style: none;
    text-align: center;
    width: 60vw;
    justify-content: end;
    margin-right: 2rem;
}

.nav-menu btn {
    text-decoration: none;
}

.nav-item {
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-links {
    color: #f9f9f9;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 1rem;
    height: 100%;
    box-sizing: border-box;
}

.nav-links:hover {
    border-bottom: 4px solid #f9f9f9;
    transition: all 0.2s ease-out;
}

.fa-bars {
    color: #f9f9f9;
}

.fa-times {
    color: #f9f9f9;
}

.nav-links-mobile {
    display: none;
}

.menu-icon {
    display: none;
}

.navbar-title {
    flex-grow: 1;
    text-align: center;
    color: #f9f9f9;
    font-size: 1.8rem;
}

/* Hamburger Menu */
.menu-icon {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 960px) {

    .navbar-container {
        /* LOGO in the Middle */
        /* justify-content: center; */
    }

    .navbar-logo {
        /* LOGO left */
        margin-left: 20px;
        margin-right: 0;
        flex-grow: 0;
        /* LOGO in the Middle */
        /* position: absolute;
        left: 50%;
        transform: translateX(-50%);  */
    }

    .navbar-title {
        flex-grow: 1;
        text-align: center;
    }

    .nav-menu .btn {
        align-self: center;
        margin-right: 20px;
    }

    .nav-menu .btn--outline {
        width: 80%;
        margin: 0 auto;
        display: block;
        font-size: 1.5rem;
        padding: 15px 20px;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 90vh;
        position: absolute;
        top: 60px;
        left: -100%;
        opacity: 1;
        transition: all 0.5s ease;
        background: #242222;
        z-index: 2;
        justify-content: start;
        padding: 0;
    }

    .nav-menu.active {
        background: #242222;
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 1;
    }

    .menu-icon {
        display: block;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
    }

    .nav-links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    .nav-links:hover {
        background-color: #fff;
        color: #000;
        transition: all 0.3s ease-out;
    }

    .navbar-title {
        display: none;
    }
}

@media screen and (max-width: 600px) {

    .navbar-title {
        display: none;
    }
}

/* #endregion Navbar */

/* #region VIDEO */
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.hero-container {
    /* background: url('/images/img-home.jpg') center center/cover no-repeat; */
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.hero-container>h1 {
    /* color: #fff; */
    color: #f9f9f9;
    font-size: 100px;
    margin-top: -100px;
}

.hero-container>h1 span {
    display: block;
    font-weight: 400;
}

.hero-container>p {
    margin-top: 8px;
    color: #f9f9f9;
    font-size: 32px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
        'Lucida Sans', Arial, sans-serif;
}

.hero-btns {
    margin-top: 32px;
}

.hero-btns .btn {
    margin: 6px;
}

.rainbow-text {
    color: white;
}

.rainbow-text:hover {
    /* background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff); */
    background: linear-gradient(to right, #BFD7ED, #60A3D9, #0074B7, #003B73, #0074B7, #60A3D9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {

    0%,
    100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

/* MEDIA QUERIES */
@media screen and (max-width: 960px) {
    .hero-container>h1 {
        font-size: 70px;
        margin-top: -150px;
    }
}

@media screen and (max-width: 768px) {
    .hero-container>h1 {
        font-size: 50px;
        margin-top: -100px;
    }

    .hero-container>p {
        font-size: 30px;
    }

    .btn-mobile {
        display: block;
        text-decoration: none;
    }

    .btn {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero-container>h1 {
        font-size: 45px;
    }

}

/* #endregion VIDEO */

/* #region CARDS */
.cards {
    padding: 4rem;
    background: #fff;
}

.cards h1 {
    color: #1470af;
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 40px;
}

.cards__container {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.cards__wrapper {
    position: relative;
    margin: 50px 0 45px;
    margin-left: -20px;
}

.cards__items {
    /* display: flex; */
}

.cards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin: 0 1rem;
    border-radius: 10px;
}

.cards__item__link {
    display: flex;
    flex-flow: column;
    width: 100%;
    box-shadow: 0 6px 20px rgba(56, 125, 255, 0.17);
    -webkit-filter: drop-shadow(0 6px 20px rgba(56, 125, 255, 0.017));
    filter: drop-shadow(0 6px 20px rgba(56, 125, 255, 0.017));
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.cards__item__pic-wrap {
    position: relative;
    width: 100%;
    padding-top: 67%;
    overflow: hidden;
    /* padding-top: 56.25%; */
}

.fade-img {
    animation-name: fade-img;
    animation-duration: 2s;
}

.cards__item__pic-wrap::after {
    content: attr(data-category);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 8px;
    max-width: calc((100%) - 60px);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    background-color: #074d81;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
}

.cards__item__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cards__item__img:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.cards__item__info {
    /* padding: 20px 30px 30px; */
    margin-top: -20px;
    padding: 20px;
    text-align: center;
}

.cards__item__text {
    color: #252e48;
    font-size: 1.2rem;
    line-height: 24px;
    background-color: rgba(33, 150, 243, 0.1);
    border-radius: 5px;
    padding: 20px;
    font-weight: 400;
}

@media only screen and (min-width: 1200px) {
    .content__blog__container {
        width: 84%;
    }
}

@media only screen and (min-width: 1024px) {
    .cards__items {
        display: flex;
    }
}

@media only screen and (max-width: 1024px) {
    .cards__item {
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 600px) {
    .cards__item__pic-wrap::after {
        font-size: 1.5rem;
    }

    .cards__item__text {
        font-size: 1rem;
    }

    .cards__wrapper {
        margin: 50px -25px 45px;
        /* margin: 50px 0px 45px; */
    }

    .cards {
        padding-bottom: 0.3rem;
        padding-left: 2rem;
    }

    .cards__container {
        margin-top: -40px;
    }
}

@media only screen and (max-width: 500px) {
    .cards__wrapper {
        /* margin: 50px -45px 45px; */
        /* margin-left: -45px; */
        margin-top: 50px;
        margin-bottom: 45px;
        margin-left: -40px;
        margin-right: -5px;
    }

    .cards {
        /* padding-bottom: 0.1rem;
        padding-left: 4rem; */
        /* padding: 4rem 1rem; */
        padding-top: 4rem;
        padding-bottom: 0.1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cards__item__img:hover {
        transform: translate(-50%, -50%);
        /* Removes the zoom effect */
    }
}

@media only screen and (max-width: 400px) {
    .cards__item__text {
        font-size: 0.8rem;
    }

    .cards__item__pic-wrap::after {
        font-size: 1.2rem;
    }

}

/* #endregion CARDS */

/* #region PRICING */
.pricing-section {
    background-color: #f9f9f9;
    color: #1470af;
    padding: 40px 20px;
    text-align: center;

}

.pricing-content {
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.pricing-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-section h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #1470af;
    margin-top: 0px;
    margin-bottom: 40px;
}

.pricing-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.pricing-section .bold-price {
    font-size: 2.2rem;
    font-weight: bold;
}

.pricing-section p {
    font-size: 1rem;
    line-height: 1.5;
}

/* #endregion PRICING */

/* #region ABOUT */
.about-section {
    background-color: #1470af;
    color: #fff;
    padding: 50px 6rem;
    text-align: center;
}

.about-content {
    opacity: 0;
    transition: opacity 1.2s ease-out;
    will-change: opacity;
}

.about-content.visible {
    opacity: 1;
}

.about-section h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 40px;
}

.about-section p {
    font-size: 1.3rem;
    line-height: 1.5;
}

@media screen and (max-width: 600px) {
    .about-section {
        padding: 50px 2rem;
    }

    .about-section p {
        font-size: 1.2rem;
    }
}

/* #endregion ABOUT */

/* #region CONTACT */
.contact-section {
    background-color: #f9f9f9;
    color: #1470af;
    padding: 90px 0;
    /* display: flex;
    justify-content: center; */
    /* align-items: center; */
    text-align: center;
}

.contact-section h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-top: 0px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    flex-direction: row;
}

.message-text {
    font-size: 1.6rem;
    margin-bottom: 45px;
}

.contact-info {
    flex: 1;
    max-width: 40%;
    text-align: left;
}

.contact-hours {
    /* margin-top: 20px; */
    color: #1470af;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    padding-left: 20px;
}

.contact-hours h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-hours p {
    margin: 5px 0;
    font-weight: 400;

}

.contact-link {
    display: block;
    margin: 10px 0;
    color: #1470af;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-link i {
    margin-right: 10px;
}

.contact-form {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #1470af;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    width: auto;
    padding: 10px 20px;
    margin-top: 10px;
    align-self: center;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    /* color: #888;
    opacity: 1; */
    color: #1470af;
    opacity: 0.6;
    font-family: 'PT Sans', sans-serif;
}

.contact-form button {
    background-color: transparent;
    color: #1470af;
    border: 2px solid #1470af;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form button:hover {
    background-color: #1470af;
    color: #ffffff;
}

.fa-envelope,
.fa-phone {
    font-size: 40px;
}

.fa-envelope,
.fa-phone {
    margin-bottom: 35px;
    margin-left: 20px;
}

.form-container {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the content */
}

.contact-form {
    width: 100%;
    /* Rest of the styles */
}

#thankYouMessage {
    width: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    text-align: center;
    /* Center the text */
    display: none;
    /* Initially hidden */
}

#thankYouMessage h2 {
    color: #1470af;
    text-align: center;
    /* Add more styling as needed */
}

#thankYouMessage p {
    text-align: center;
    /* Add more styling as needed */
}


@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 25rem;
    }
}

@media screen and (max-width: 600px) {

    .contact-form input,
    .contact-form textarea {
        width: 20rem;
    }
}

@media screen and (max-width: 500px) {

    .form-container {
        max-width: 70%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 16rem;
    }
}

@media screen and (max-width: 400px) {

    .form-container {
        max-width: 60%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 14rem;
    }

    .contact-content {
    
        align-items: start;
        
    }
}

/* #endregion CONTACT */

/* #region BUTTONS */
.btn {
    padding: 8px 20px;
    border-radius: 2px;
    outline: none;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background-color: var(--primary);
    color: #242424;
    border: 1px solid var(--primary);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary);
    padding: 8px 20px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease-out;
    text-decoration: none;
}

.btn--medium {
    padding: 8px 20px;
    font-size: 20px;
}

.btn--large {
    padding: 12px 26px;
    font-size: 20px;
}

.btn--medium:hover,
.btn--large:hover {
    background: #fff;
    color: #242424;
    transition: all 0.3s ease-out;
    transition: 250ms;
    /* transform: translateY(-2px); */
}

/* #endregion BUTTONS */

/* #region FOOTER */
.footer-container {
    background-color: #242424;
    /* padding: 1.5rem 0 2rem 0; */
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-media-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    /* margin: 40px auto 0 auto; */
    margin: 10px auto;
}

.humanoid-logo img {
    height: 50px;
    width: auto;
}

.website-rights {
    color: #fff;
    margin-bottom: 16px;
}

@media screen and (max-width: 820px) {
    .footer-container {
        padding: 0.5rem 0;
        /* Further reduced padding for smaller screens */
    }

    .social-media-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-logo {
        margin-bottom: 20px;
        /* Adjusted margin */
    }

    .website-rights {
        margin-bottom: 10px;
        /* Adjusted margin */
    }
}


/* #endregion FOOTER */

/* #region TECH SUPPORT PAGE */
/* #region CIRCLE BACKGROUND */
.main-area {
    position: relative;
    background: #4e54c809;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    /* height: 100vh */
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    /* background: rgba(255, 255, 255, 0.8); */
    /* background: rgba(217, 219, 254, 1); */
    background: rgba(83, 92, 250, 0.3);
    animation: animate 20s linear infinite;
    bottom: -150px;
    z-index: -1;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-170vh) rotate(720deg);
        opacity: 0.1;
        border-radius: 50%;
    }
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    /* animation-duration: 12s; */
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    /* animation-delay: 4s; */
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    /* animation-duration: 18s; */
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    /* animation-duration: 45s; */
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    /* animation-duration: 35s; */
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    /* animation-duration: 11s; */
}

/* #endregion CIRCLE BACKGROUND */
.main-area {
    padding-top: 40px;
}

.content {
    /* position: relative; */
    z-index: 10;
    color: #fff;
    padding: 20px;
    margin-left: 8rem;
    margin-right: 8rem;
    text-align: center;
}

.text-content {
    /* position: absolute; 
    top: 30%; 
    left: 50%; 
    transform: translate(-50%, -50%);  */
    color: #333;
    /* text-align: center; 
    z-index: 10;
    width: 80%;
    padding: 20px; */
    margin-bottom: 30px;
    text-align: left;
    font-weight: 400;
}

.text-content h1 {
    font-size: 4rem;
    font-weight: 400;
}

.text-content h3 {
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    align-items: stretch;
    padding: 20px;
}

.grid-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.grid-item i {
    font-size: 6rem;
    color: cornflowerblue;
    margin-bottom: 20px;

    transition: .1s;
    position: relative;
    text-align: center;
}

.grid-item i::before {
    border-radius: 50%;
    transition: .1s;
    transform: scale(.9);
    z-index: -1;
  }

  .grid-item:hover i {
    color: cornflowerblue;
    text-shadow: 0 0 20px rgb(26, 99, 224);
  }
  
  /* .grid-item:hover i::before {
    transform: scale(2);
  } */

.grid-item h4 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #333;
    font-weight: 400;
}

.grid-item p {
    color: #666;
    /* Text color */
    text-align: left;



}

@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content {
        margin-left: 4rem;
        margin-right: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .content {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .content {
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }
}

/* #endregion TECH SUPPORT PAGE */

/* #region WEB DEVELOPMENT */
.card-section {
    background-color: white; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin: 20px auto; 
    padding: 20px; 
    max-width: 80%; 
    width: 100%; 
}


.card-section .container {
    max-width: 80%;
    margin: 0 auto;
    text-align: center; 
}

/* .card-section .container {
    max-width: 80%; 
    margin: 0 auto; 
    padding: 20px; 
    background-color: #fff; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

.card-section h1, .card-section h2 {
    text-align: center; 
    margin-bottom: 20px; 
}

.card-section p, .card-section ul {
    text-align: left; 
    color: #333;
}

.card-section ul {
    padding-left: 20px; 
}

.card-section ul li {
    margin-bottom: 10px;
}

.card-section:last-of-type {
    margin-bottom: 40px; /* Adjust the value as needed */
}

.card-section {
    transition: background-color 0.3s;
}

.card-section:hover {
    background-color: #8f94fb;
}

.card-section:hover h1,
.card-section:hover h2,
.card-section:hover p,
.card-section:hover li {
    color: white; /* Text color changes to white on hover */
    transition: color 0.3s; /* Smooth transition for text color */
}

.card-section * {
    color: inherit;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-section {
        padding: 10px;
        margin: 10px auto;
    }
}

@media (max-width: 420px) {
    .web-dev-title h1 {
        font-size: 2.5rem;
    }
}

/* #endregion WEB DEVELOPMENT */