:root {
    /* Brand Colors */
    --brand-color: #ba1111;
    /* Your primary dark red */
    --brand-color-darker: #5D0909;
    /* A slightly darker shade of your brand color */

    /* Optional: Other common colors you might need */
    --text-color-light: #ffffff;
    /* For text on dark backgrounds */
    --text-color-dark: #333333;
    /* For text on light backgrounds */
    --accent-color: #d49b00;
    /* An accent color, e.g., for buttons (from previous suggestion) */
    --background-light: #f8f8f8;
    /* A light background color */
    --clr-primary-400: #adadad;
}

/* body,
p,
a,
span,
div {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;

} */

.company-title{
    text-transform: uppercase;
    padding: 0px;
}


@media screen and (max-width: 480px) {
    

    .scroller {
        width: 35ch;
        /* background-color: #4a90e2; */
    }
    /* .scroller[data-animated="true"] .scroller__inner {
        width: 5ch;
    } */
    .scroller__inner img{
        width: 50;
        height: 25;
     }
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--brand-color-darker), var(--brand-color));
    /* border-radius: 10px; */
    animation: gradientShift 8s ease-in-out infinite;
    margin-inline: 1px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    /* max-width: 800px; */
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    /* background: linear-gradient(45deg, #561234, #230f2b); */
    color: white;
    background: #3a3a3a;
    /* color: inherit; */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.services {
    padding: 5rem 0;
    background: white;
    position: relative;
    
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10ch;
    height: 4px;
    background: linear-gradient(45deg, var(--brand-color-darker), var(--brand-color));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-inline: 10px;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--brand-color-darker), var(--brand-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-card .bi{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.clients {
    background: var(--text-color-dark);
    padding: 2rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clients .section-title {
    color: #fff;
}

.client-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.client-list li {
    padding: 1rem;
    box-shadow: 0 0.5rem 1rem, -0.25rem var(--clr-primary-400);
}

.scroller {
    max-width: 70ch;
    /* width: 50%; */
    /* overflow: hidden; */
}

.scroller__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-block: 1rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 40s;
}

.scroller[data-animated="true"] .scroller__inner:hover {
  animation-play-state: paused;
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation:
        scroll var(--_animation-duration, 30s) var(--_animation-direction, forwards) linear infinite;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

.contact {
    /* padding: 5rem 0.25rem; */
    background: #1a1a1a;
    color: white;
}
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: linear-gradient(45deg, var(--brand-color-darker), var(--brand-color));
    color: white;
    margin-top: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.error-message {
    background-color: var(--brand-color-darker);
    border-radius: 10px;
    display: none;
    font-size: 0.75em;
    margin-top: 5px;
    padding: .25rem .75rem;
}

.success-message {
    text-align: center;
    padding: 16px 20px;
    /* background-color: #d4edda;
    color: #155724; */
    /* border: 1px solid #c3e6cb;
    border-radius: 5px; */
    /* margin-top: 20px; */


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
}

.success-message .icon {
    /*
    width: 36px;
    height: 36px; */
    font-size: 1.8em;
    /* margin-bottom: 10px; */
    /* fill: #155724; */
}

.success-message p {
    font-size: 1.1em;
}

#footer-container {
    background-color: #111111;
    /* border-top: 1rem solid #ba1111; */
    color: #ffeeee;
    padding: 2rem;
}

.footer {
    display: flex;
    align-items: center;
    color: var(--clr-primary-400);
    
}
.footer span{
    font-size: 0.75rem;
}
.footer .company-title {
    margin-left: .25rem;
    
}

#body-container {
    /* background-color: #eeeeee; */
    /* padding: 1.5rem; */
    /* padding: 0;
    padding-left: 3rem;
    padding-right: 3rem; */

    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
    max-width: 120ch;
    margin: auto;
}

.menu-li {
    padding: .5rem;
    font-weight: 700;
}

.container{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-container{
    flex-grow: 1;
}
.css-table{
    overflow-x:auto;
}