body {
    font-family: 'Roboto', sans-serif;
    background: #f4f6f9;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.hero {
    height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    animation: fadeIn 1.2s ease-in;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 850px;
    animation: slideUp 1.2s ease-out;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(to right, #ffc107, #ff9800);
    color: #fff;
    font-weight: 700;
    border: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ff9800, #f57c00);
}

.service-card {
    padding: 2.5rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-bg-dark {
    background-color: #314258;
    color: #fff;
}

.card-bg-light {
    background-color: #f1f5f9;
    color: #000;
}

.btn-accent {
    background-color: #CC6600 !important;
    color: #ffffff !important;
    border: none;
}

.btn-accent:hover {
    background-color: #B35900 !important;
    color: #ffffff !important;
}


.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact {
    background: #ffffff;
    padding: 4rem 0;
}

.form-label {
    font-weight: 600;
}

.form-control:focus {
    border-color: #004aad;
    box-shadow: 0 0 6px #004aad80;
}

.btn-submit {
    background-color: #004aad;
    color: white;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #002f6c;
}

.btn-responsive {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

@media (min-width: 576px) {
    .btn-responsive {
        padding: 0.5rem 1rem;
        font-size: 1.25rem;
        line-height: 1.5;
        border-radius: 0.3rem;
    }
}

.testimonials {
    background: linear-gradient(135deg, #24305E, #79879b);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.testimonial-item {
    max-width: 700px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    border-left: 4px solid #ffd700;
    border-radius: 6px;
    font-style: italic;
    animation: fadeIn 1s ease;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: #ffd700;
}

footer {
    background: #002f6c;
    color: #fff;
    padding: 3rem 0;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
}

.card-bg-dark {
    background-color: #314258;
    color: #fff;
}

.card-bg-light {
    background-color: #f1f5f9;
    color: #000;
}

.btn-accent {
    background-color: #FF7F00;
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #E57200;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/xyz.woff2') format('woff2');
}

.scrolling-text {
    white-space: nowrap;
    overflow: visible;
    box-sizing: border-box;
    animation: scroll-left 20s linear infinite;
    width: 100%;
    display: inline-block;
    position: relative;
    font-size: 16px;
    padding: 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 600px) {
    .scrolling-text {
        font-size: 14px;
        animation: scroll-left 15s linear infinite;
        padding: 0 10px;
    }
}