
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; 
}


.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


.logo h1 {
    margin: 0;
    font-size: 24px;
}


.logo img {
    max-height: 50px; 
    width: auto;
}


.logo-image {
    height: 100%; 
    max-height: 60px; 
}

.menu-item.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
}


header {
    background: #ffffff; 
    color: #000; 
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 1000;
}


nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-menu a {
    color: #000; 
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    padding: 10px 20px; 
    font-weight: bold; 
}

.nav-menu a:hover {
    color: #ff0000; 
    text-decoration: underline;
    text-underline-offset: 10px; 
}


.quote {
    background-color: #ff0000; 
    border-radius: 10px; 
}

.quote a {
    color: #fff; 
    font-weight: bold; 
    padding: 10px 20px; 
}

.quote a:hover {
    color: #fff; 
    text-decoration: underline; 
    text-underline-offset: 10px; 
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000; 
    margin: 4px 0;
    transition: 0.4s;
}


#section1 {
    background: url('images/bcg001.jpg') no-repeat center center;
    background-size: cover; 
    color: #fff; 
    position: relative;
}

#section1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%; 
    height: 100%;
    background: rgba(255, 0, 0, 0.85); 
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); 
}


#section1 .inner-window {
    width: 80%; 
    height: 60%;
    margin-left: 30px; 
    background: transparent; 
    padding: 20px;
    text-align: center; 
    color: #fff; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; 
}

#section1 .inner-window::before, #section1 .inner-window::after {
    content: "";
    position: absolute;
    background-color: #fff; 
    height: 5px;
    width: 100%;
}

#section1 .inner-window::before {
    top: 0;
    left: 60px;
    right: 0;
}

#section1 .inner-window::after {
    bottom: 0;
    left: 0;
    right: 60px;
}

#section1 .inner-window::before, #section1 .inner-window::after {
    content: "";
    position: absolute;
    background-color: #fff; 
    width: 5px;
    height: 100%;
}

#section1 .inner-window::before {
    left: 0;
    top: 60px;
    bottom: 0;
}

#section1 .inner-window::after {
    right: 0;
    top: 0;
    bottom: 60px;
}

#section1 .inner-window h1 {
    font-size: 36px; 
    margin-bottom: 20px;
}

#section1 .inner-window .underline {
    border-bottom: 2px solid #fff; 
    width: 80%;
    margin: 0 auto 20px; 
}

#section1 .inner-window p {
    font-size: 18px; 
    margin-bottom: 30px;
    font-weight: normal; 
}

#section1 .inner-window p strong {
    font-weight: bold; 
}

#section1 .inner-window .quote-button {
    background-color: #fff; 
    color: #ff0000; 
    padding: 10px 20px;
    border: none;
    border-radius: 20px; 
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

#section1 .inner-window .quote-button:hover {
    background-color: #f2f2f2; 
}










#section2 {
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: #ffffff; 
    min-height: 400px; 
}


.custom-window {
    width: 95%; 
    background-color: #ffffff; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin: auto; 
}


.text-window {
    width: 40%; 
    height: 100%; 
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 5px; 
    background-color: #ffffff; 
}

.headline {
    font-size: 30px; 
    font-weight: bold;
    margin-bottom: 20px; 
}


.quote-button {
    background-color: #ff0000; 
    color: #ffffff; 
    padding: 15px 30px; 
    border: none; 
    border-radius: 25px; 
    cursor: pointer; 
    font-size: 16px; 
    margin-top: 20px; 
    text-align: center; 
    text-decoration: none; 
    display: inline-block; 
}


.quote-button:hover {
    color: #ffffff; 
}


.image-window {
    width: 60%; 
    height: 100%; 
    background-color: #ffffff; 
}

.image-window img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 30px; 
}







#section3 {
    background-color: rgb(0, 45, 110); 
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: auto; 
    padding: 20px 0; 
}


.container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    height: 100%; 
}


.contact-window {
    width: 90%;
    background-color: #ff0000;
    border-radius: 30px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start; 
    padding: 20px; 
    box-sizing: border-box; 
}


.contact-headline {
    font-size: 30px; 
    font-weight: bold; 
    color: #ffffff; 
    text-align: center; 
    width: 100%; 
    margin-bottom: 10px; 
}

.contact-description {
    font-size: 16px; 
    color: #ffffff; 
    text-align: center; 
    width: 100%; 
    margin-bottom: 20px; 
}


.contact-form {
    width: 100%; 
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
}


.form-group {
    width: calc(100% - 20px); 
    margin-bottom: 20px; 
}


.form-label {
    font-size: 16px; 
    color: #ffffff; 
    margin-bottom: 5px; 
    display: block;
    margin-left: 10px; 
    text-align: left; 
}


.form-input {
    width: 100%; 
    padding: 10px; 
    border: none; 
    border-radius: 5px; 
    font-size: 16px; 
    margin-left: 10px; 
}


.required {
    color: #002d6e; 
}

.submit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #ff0000;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px; 
    transition: background-color 0.3s ease;
    border: 2px solid #ff0000;
    font-weight: bold;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.text-center {
    text-align: center;
}


#contact .inner-box .first-window .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contact .inner-box .first-window .form-group {
    margin-bottom: 15px;
}

#contact .inner-box .first-window .form-label {
    display: block;
    margin-bottom: 5px;
    color: #333; 
    font-weight: bold;
}

#contact .inner-box .first-window .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#contact .inner-box .first-window textarea.form-input {
    resize: vertical; 
    height: 100px;
}

#contact .inner-box .first-window .submit-button {
    background-color: red; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

#contact .inner-box .first-window .submit-button:hover {
    background-color: darkred; 
}

#contact .inner-box .first-window .form-check {
    margin-top: 15px;
}

#contact .inner-box .first-window .form-check-input {
    margin-right: 5px;
}

#contact .inner-box .first-window .form-check-label {
    color: black; 
    font-size: 14px;
}

#contact .inner-box .first-window .contact-form .form-label .required {
    color: red; 
}





#section4 {
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    height: auto; 
}

.content-window {
    width: 90%;
    background-color: #ffffff;
    color: #000000; 
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    border-radius: 10px; 
}

p {
    font-size: 20px; 
    line-height: 2; 
}

h2 {
    font-size: 30px; 
    font-weight: bold;
    margin-top: 20px;
}

ul {
    list-style: none;
    padding: 0;
    font-size: 18px; 
    line-height: 2.4; 
}

ul li {
    margin-bottom: 15px;
}

input[type="checkbox"] {
    margin-right: 10px;
    accent-color: green; 
}









#section6 {
    background: url('images/S6.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 100px 0px 100px 0;
    min-height: 500px;
  }
  
  
  #section6 .container {
    min-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  
  #section6 .inner-box {
    min-width: 100%;              
    height: 90%;              
    margin: auto;             
    padding: 30px;            
    
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 00px;
    box-sizing: border-box;
    color: #fff;
  }
  
  
  
  
  #contact .inner-box {
    width: 90%;
    height: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  
  
  .window {
    flex: 0 0 50%;
    height: 100%;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-sizing: border-box;
  }
  
  
.first-window {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
  }
  
  .logo-image {
    width: 300px;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  .phone-section, .email-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .phone-icon, .email-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
  }
  
  .phone-icon {
    background-image: url('images/phone_icon.png'); 
  }
  
  .email-icon {
    background-image: url('images/ml.png'); 
  }
  
  .social-media {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
  }
  
  
  
  .second-window {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  .google-map {
    width: 100%; 
    height: 100%; 
    min-height: 700px; 
    box-sizing: border-box;
    border: none; 
  }
  

  
  

  
  

  
  

 
  
  

 

  
  

  
  
  

























.section {
    padding: 100px 0;
    min-height: 800px;
}


footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}


a {
    color: #0779e4;
}

a:hover {
    color: #0056b3;
}


.sitemap-container {
    text-align: center;
    margin-bottom: 10px;
}

.sitemap {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.copyright-container {
    text-align: center;
    margin-top: 10px;
    clear: both; 
    display: block; 
    width: 100%; 
    position: relative; 
    color: white;
}

.copyright {
    margin: 0;
    display: block; 
}


.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: white;
    text-decoration: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .menu-toggle {
        display: flex; 
    }



.nav-menu {
    flex-direction: column;
    display: none; 
    width: 100%;
    text-align: center;
}

    .nav-menu li {
        width: 100%;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex; 
    }

    #section1 .overlay {
        width: 100%; 
        clip-path: none; 
    }

    #section1 .inner-window {
        width: 80%; 
        height: auto; 
        margin-left: auto; 
        margin-right: auto;
    }

    .text-window {
        width: 100%; 
    }

    .image-window {
        display: none; 
    }

  

  .window {
    flex: 0 0 100%; 
    height: 50%; 
    min-height: 700px; 
  }

  .google-map {
    min-height: 700px; 
  }
}








