@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", serif;
}
.full-height-section {
    height: 100vh; /* Full viewport height */
    background-image: url('images/header.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.full-height-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.90); /* Black overlay with 0.85 opacity */
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.logo {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    font-size: 48px;
    position: relative;
}

.info-section {
    padding: 70px 0;
}

.info-section .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.info-section .right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.about-section {
    padding: 60px 0;
    text-align: center;
    background: #fffafa;
    margin: 30px 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-section .cta {
    margin-top: 20px;
}
.services-section {
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-section .service {
    margin-bottom: 20px;
}

.services-section .service h5 {
    font-weight: bold;
}

.services-section .cta {
    text-align: center;
    margin-top: 40px;
}
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    margin-bottom: 30px;
}

.faq-section .faq {
    margin-bottom: 20px;
}

.faq-section .faq h5 {
    font-weight: bold;
}

.faq-section .faq p {
    margin-bottom: 10px;
}

.faq-section .left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.faq-section .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .cta {
    text-align: center;
    margin-top: 20px;
}
.privacy-policy h2{
    font-size: 30px;;
}
.privacy-policy h3{
    font-size: 24px;;
}
.main-title-section {
    width: 75%;
    margin: 0 auto;
}
.main-title-section h1{
    font-size: 42px;
}
.main-title-section .lead{
    margin-top: 40px;
    font-size: 18px;
}
.services-section .service{
    text-align: center;
}
.services-section .service ul{
    list-style: none;
}
.btn-primary{
    background: #7a7a7a;
    border-color: #524f4f;
}
a.call-link {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-weight: 700;
}
a.call-link:hover{
    color: #1350ff;
}
.call-link-inverse{ 
    color: #1350ff;
    font-size: 22px;
    text-decoration: none;
    font-weight: 700;
}
.call-link-inverse:hover{ 
    color: #111;    
}

@media only screen and (max-width: 768px){
    .main-title-section {
        width: 90%;
        margin: 0 auto;
    }
    .main-title-section h1{
        font-size: 24px;
    }
    .main-title-section .lead{
        margin-top: 20px;
        font-size: 18px;
    }
}