@import url('https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&family=Parkinsans:wght@300..800&display=swap');

* {
    font-family: "Parkinsans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    /* text-align: justify; */

}
html,body{
    /* max-width: 100%;
    overflow-x: hidden; */
}

/* counter  */
.counter h2 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.counter-section .counter h2 {
    transition: all 0.3s ease-in-out;
}

.counter p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* counter  end */

.a {
    margin: 10px;
    background-color: #8b1e1e;
    color: white;
    font-weight: 700;
    font-size: 17px;
}

.top-bar {
    /* background: linear-gradient(90deg, #001a79, #e587991a); */
    background: linear-gradient(90deg, #da0000, #ffffff 77%);
    color: white;
    padding: 5px 0;
    position: relative;
    z-index: 1;
}

.hero-section {
    height: 84vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

@media (max-width:1440px) {
    .hero-section {
        height: 86vh;
    }
}
@media (max-width:1024px) {
    .hero-section {
        height: 81vh;
    }
}
@media (max-width:768px) {
    .hero-section {
        height: 80vh;
    }
}
@media (max-width:425px) {
    .hero-section {
        height: 75vh;
    }
    .top-bar {
        background: linear-gradient(185deg, #f37f7f, #f7f7f7 100%);
        color: #000000;
    }
}

.hero-section h1 {
    font-weight: 700;
    color: #fff;
}

.hero-section p {
    color: #f0f0f0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.container1 {
    position: relative;
    z-index: 1;
}

.subscribe-input {
    max-width: 400px;
    margin: 20px auto;
}

.subscribe-input .form-control {
    border-radius: 0;
    padding: 10px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

.subscribe-input .btn {
    border-radius: 0;
    background-color: #8b1e1e;
    color: #fff;
    font-weight: bold;
}

.subscribe-input .btn:hover {
    background-color: #fff;
    color: #70322c;
    border: 2px solid #70322c;
}

/* Optional overlay for better text visibility */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.23);
    z-index: 0;
}

.subscribe-input {
    max-width: 400px;
    margin: 20px auto;
}


















#company-info {
    /* background-color: #f4f7fc; */
    padding: 60px 0;
    /* margin: 49px 0px; */
}

@media (max-width: 425px) {
    #company-info {
        background-color: white;
        padding: 0;
        margin: 0;
    }

}

.company-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 30px;
}

.company-info .description {
    font-size: 1.1rem;
    color: #555;
    text-align: left;
    margin-bottom: 20px;
}

.company-info .more-info {
    font-size: 1.1rem;
    color: #333;
    text-align: left;
    margin-top: 20px;
}

.company-info .company-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .company-info .container {
        padding: 15px;
    }

    .company-info .title {
        text-align: center;
    }
}



.back {
    background: url(../image/back.png);
    color: rgb(217 1 1);
    /* background-color: rgb(0 25 121); */
}



/* sercice code  */
.services-section {
    background: linear-gradient(181deg, #717171, #515151cf), url('../image/back2.jpg');
    padding: 30px 0 30px 0;
}

.services-section h2 {
    color: white;
}

.service-card {
    background: linear-gradient(135deg, #ffffff, #fdf5f5);
    color: #ab0707;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.service-card h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ab0707;
}

.service-card p {
    font-size: 1rem;
    color: #3A0000;
    line-height: 1.6;
}

.highlight-text {
    color: #ab0707;
    font-weight: 700;
    font-size: 2rem;
}

.btn-dang {
    background-color: #d70202;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-dan:hover {
    background-color: #3A0000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}














/* Footer Styles */
#footer {
    background: linear-gradient(45deg, #000000, #515151cf), url('../image/background.jpg');
    background-size: cover;
    /* Ensures the image covers the entire area */
    background-position: center;
    /* Centers the background image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    color: #fff;
    font-size: 15px;
    padding: 60px 0;
}

#footer h3,
#footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
}

#footer h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #a23c33;
    display: block;
    margin-top: 5px;
}

#footer p {
    color: #f0e5e5;
    margin-bottom: 15px;
    line-height: 1.8;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li {
    margin-bottom: 12px;
    color: #f0e5e5;
    font-size: 15px;
}

#footer ul li a {
    margin-bottom: 12px;
    color: #f0e5e5;
    font-size: 17px;
    text-decoration: none;
    font-family: "Parkinsans", sans-serif !important;
    font-weight: 600;
}

#footer ul li i {
    color: #a23c33;
    margin-right: 10px;
    font-size: 18px;
}

/* GG */


.footer-bottom {
    padding: 20px 0;
    font-size: 16px;
    text-align: center;
    background: #ab0707;
}

.footer-bottom p {
    color: #f0e5e5;
    margin: 0;
}

.footer-bottom a {
    color: #ffd34f;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #a23c33;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: 0.3s;
    z-index: 1000;
}

.back-to-top:hover {
    background: #fff;
    color: #a23c33;
    border: 1px solid #a23c33;
}

/* Newsletter Form */
.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form .form-control {
    border-radius: 0;
    border: 2px solid #fff;
    padding: 10px;
    width: calc(100% - 100px);
    margin-right: 10px;
    font-size: 15px;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: #a23c33;
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
}

.newsletter-form .btn {
    background: #ab0707;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 0;
}

.newsletter-form .btn:hover {
    background: #fff;
    color: #a23c33;
    border: 2px solid #a23c33;
}

.footer-newsletter p {
    color: #f0e5e5;
    font-size: 14px;
    margin-top: 10px;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
    #footer .row>div {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    #footer {
        text-align: center;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        width: 100%;
        margin: 0 0 10px 0;
    }
}


.btn-danger {
    background: #ab0707;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 0;
}