* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: none;
    text-decoration: none;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    width: 270px;
    height: 270px;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 20px;
    padding: 20px;
    color: #c1272d;
    display: block;
    font-weight: bold;
}

header .navbar ul li a:hover {
    background: #333;
    color: #fff;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #fff;
    display: none;
}

header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

header .navbar ul li ul li ul {
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: initial;
}

h1 {
    color: #c1272d;
    padding: 5px 0 5px 7px;
    font-family: Arial, Helvetica, sans-serif;
}

.body-text h2 {
    color: #c1272d;
    padding: 11px 0 5px 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.body-text {
    padding: 5px 0 9px 11px;
    color: #333333;

}

.body-text p {
    padding: 5px 0 11px 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    display: block;
}

.contact-url {
    color:#c1272d;
    font-weight:bold;
}


/*----- mobile menu -----*/
#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

/*----- Navigation Media query -----*/
@media (max-width: 991px) {
    header {
        padding: 20px;
    }

    header label {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, .1);
        display: none;
    }

    header .navbar ul li {
        width: 100%;
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li {
        background: #eee;
    }

    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }
}

/*-------------- end navigation media query -------------- */

/*--------------- Banner ---------------*/
.banner {
    width: 100%;
    /* min-height: 100vh; */
    height: 700px;
    */* background: linear-gradient(rgba(8,0,58,0.7),rgba(8,0,58,0.7)), url('../demo/images/header.png'); */ background-size: cover;
    background: #c1282d url('../images/header.png') center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    text-align: center;
    max-width: 800px;
    padding-top: 11%;
}

.banner-text h1 {
    font-size: 60px;
    font-weight: 600;
    padding-top: 17%;
    color: #000;
}

.banner-text p {
    max-width: 700px;
    margin: 10px auto 20px;
    line-height: 1.4;
    color: #000;
    font-weight: bold;
}

.highlight {
    color: white;
    font-weight: bold;
}

.sub-headers {
    color: #cc3333;
    font-size: 27px;
    font-weight: bold;
}

/* ---------- media query --------- */

@media (max-width: 850px) {
    .banner-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 650px) {
    .banner-text h1 {
        font-size: 30px;
        max-width: 400px;
        margin: auto;
    }

    .banner-text p {
        font-size: 14px;
        margin: 15px auto 30px;
    }
}

/* Container for flexboxes, from w3schools hwms note */
.row {
    /* display: -webkit-flex; */
    display: flex;
    width: 1500px;
    margin: auto;
}

/* Create three equal columns that sits next to each other */
.column {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
    /* height: 200px;  Should be removed. Only for demonstration */
}

.column p {
    color: #333;
    display: block;
    /* padding-left: 5px; */
    /*width:100%;*/
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .row {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

.sub-heading {
    text-align: center;
}

/*home bottom images*/
.div1 {
    display: flex;
    align-items: normal;
    gap: 7px;
    justify-content: space-around;
    padding-right: 11px;
    width: 500px;
    max-width: 500px;

}

.div1 img {
    width: 200px;
    border: 1px #c1272d solid;

}

.border_Img {
    border: 1px #c1272d solid;
}

/*contact */
textarea {
    width: 50%;
    height: 150px;
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #cc3333;
    border-radius: 4px;
    background-color: #c1282d;
    font-size: 16px;
    resize: none;
}

.contact_btn {
    padding: 5px 0 11px 0;
}

/*Gallery */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image img {
    max-width: 600px;
}

.thumbnails {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}

.thumbnail {
    margin-right: 10px;
    cursor: pointer;
}

.thumbnail img {
    max-width: 150px;
}

.thumbnail img:hover {
    opacity: 0.7;
}

/*content pages*/


/* Style the footer */
footer {
    background-color: #000;
    /* padding: 10px; */
    /*padding: 40px 0; */
    text-align: center;
    color: white;
    display: flex;
    justify-content: center; /* Center icons horizontally */
    align-items: center; /* Align icons vertically */
    gap: 11px; /* Consistent space between icons */
    list-style: none; /* Remove bullets if using <ul> */
    padding: 40px 0;
}

/*about content*/
.wrappers {
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    /* align-items:center; */
    justify-content: space-around;
    gap: 1rem;
}

.pros {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    vertical-align: middle;
}

.intros {
    flex: 1;
}

.left-img {
    float: left;
    margin-left: 1px; /* Prevents text from touching the image */
    margin-bottom: 10px;
    padding-right: 7px;
}

.url_color {
    color: #cc3333;
    font-weight: bold;
}

/* ------- media queries ------------- */
@media (max-width: 800px) {
    .body-text h2 {
        color: #c1272d;
        padding: 11px 0 5px 37px;
        font-family: Arial, Helvetica, sans-serif;
    }

    .body-text p {
        padding: 5px 0 11px 37px;
        font-family: Arial, Helvetica, sans-serif;
        color: #333;
        display: block;
    }

    textarea {
        width: 50%;
        height: 150px;
        padding: 12px;
        box-sizing: border-box;
        border: 2px solid #cc3333;
        border-radius: 4px;
        font-size: 16px;
        resize: none;
        margin-left: 33px;
        background-color: #c1272d;
    }

    .contact_btn {
        padding: 5px 0 11px 0;
        margin-left: 33px;
    }

    .banner {
        width: 100%;
        /* min-height: 100vh; */
        height: 600px;
        */* background: linear-gradient(rgba(8,0,58,0.7),rgba(8,0,58,0.7)), url('images/header.png'); */ background-size: cover;
        background: #c1282d url('../images/header.png') center;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-text {
        text-align: center;
        max-width: 800px;
        padding-top: 46%;
    }

    header .logo {
        width: 170px;
        height: 170px;
    }

    .sub-heading {
        text-align: center;
        font-size: 13px;
    }

    .intros p{
        width:500px;
    }



}





