/* General Styles */
.seperator-image {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 20px auto;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}
.home-hero-bg {
    position: relative;
    background-color: var(--carousel-bg, #333);
}
.home-hero-bg img.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.home-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--carousel-bg-rgb, 51, 51, 51), 0.8);
    -webkit-backdrop-filter: blur(5px) saturate(0.2);
    -moz-backdrop-filter: blur(5px) saturate(0.2);
    -ms-backdrop-filter: blur(5px) saturate(0.2);
    -o-backdrop-filter: blur(5px) saturate(0.2);
    backdrop-filter: blur(5px) saturate(0.2);
    z-index: 1;
}
.home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(var(--primary-color-rgb, 51, 51, 51), 0.2), rgba(var(--primary-color-rgb, 51, 51, 51), 0) 80%);
    z-index: 2;
}
.home-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1000px;
    max-width: 100%;
    padding: 150px 20px;
    min-height: 100vh;
    z-index: 3;
}
.home-hero img {
    width: 400px;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
.home-hero h1 {
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: var(--carousel-text, #fff);
    font-weight: 800;
    line-height: 1;
}
.home-hero p {
    width: 600px;
    max-width: 100%;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(var(--carousel-text-rgb, 255, 255, 255), 0.9);
}
.home-hero .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.home-hero .buttons button, .home-hero .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 30px;
    font-size: 1rem;
    color: var(--carousel-bg, #333);
    background-color: var(--carousel-text);
    border: 2px solid var(--carousel-text);
    text-decoration: none;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}
.home-hero .buttons a {
    color: var(--carousel-text);
    border: 2px solid var(--carousel-text);
    background-color: transparent;
}
.home-hero .buttons a:hover {
    color: var(--carousel-text);
    background-color: var(--primary-hover-color);
    border: 2px solid var(--primary-hover-color);
}
.home-hero button:hover {
    background-color: transparent;
    color: var(--primary-hover-color, #007BFF);
    border: 2px solid var(--primary-hover-color, #007BFF);
}

.about-bg {
    background-color: var(--page-bg-color-alt);
    padding: 50px 0;
}
.about-us {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* text-align: center; */
}
.about-us .content {
    max-width: 900px;
}
.about-us .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(var(--page-text-color-rgb, 0, 0, 0), 0.9);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
}
.about-us .content h1 span {
    color: var(--primary-color, #007BFF);
}
.about-us .content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}
.about-us .image {
    width: 100%;
}
.about-us .image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
}
.services .content {
    height: max-content;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    max-width: 100%;
    margin: 100px 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.services .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(var(--page-text-color-rgb, 0, 0, 0), 0.9);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.services .content h1 span {
    color: var(--primary-color, #007BFF);
}
.services .content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}
.services .services-breakdown {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 600px;
}
.services .services-breakdown .service {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services .services-breakdown .service:last-child {
    border-bottom: none;
}
.services .services-breakdown .service h2 {
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-color, #007BFF);
}
.services .services-breakdown .service .image {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.services .services-breakdown .service .image img {
    flex-grow: 1;
    width: 200px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}
.services .services-breakdown .service p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}
@media (max-width: 1230px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    .services .content {
        position: static;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        margin: 0 20px 50px 20px;
        width: auto;
    }
    .services .services-breakdown {
        width: 100%;
        max-width: 800px;
        padding: 0 20px;
    }
    .services .services-breakdown .service {
        min-height: auto;
    }
}

.why-us {
    padding: 100px 20px 30px 20px;
    text-align: center;
}
.why-us .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(var(--page-text-color-rgb, 0, 0, 0), 0.9);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.why-us .content h1 span {
    color: var(--primary-color, #007BFF);
}
.why-us .content p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.6;
}
.why-us h4 {
    font-family: var(--doc-font);
    width: 500px;
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1.2;
}
.why-us-blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}
.why-us-blocks p {
    font-size: 1.1rem;
    line-height: 1.5;
}
.why-us-blocks ul {
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 120px;
}
.why-us-blocks ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 400px;
    max-width: 100%;
}
.why-us-blocks ul li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: var(--br-def2) var(--br-def2) 0 0;
    -moz-border-radius: var(--br-def2) var(--br-def2) 0 0;
    -ms-border-radius: var(--br-def2) var(--br-def2) 0 0;
    -o-border-radius: var(--br-def2) var(--br-def2) 0 0;
    border-radius: var(--br-def2) var(--br-def2) 0 0;
}
.why-us-blocks .why-content {
    text-align: left;
    flex-grow: 1;
    background-color: var(--page-bg-color-alt);
    padding: 20px;
    -webkit-border-radius: 0 0 var(--br-def2) var(--br-def2);
    -moz-border-radius: 0 0 var(--br-def2) var(--br-def2);
    -ms-border-radius: 0 0 var(--br-def2) var(--br-def2);
    -o-border-radius: 0 0 var(--br-def2) var(--br-def2);
    border-radius: 0 0 var(--br-def2) var(--br-def2);
}
.why-us-blocks .why-content h3 {
    font-family: var(--doc-font);
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--primary-color, #007BFF);
}
.why-us-blocks .why-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.coverage {
    padding: 100px 0;
    text-align: center;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.coverage h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(var(--page-text-color-rgb, 0, 0, 0), 0.9);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.coverage h1 span {
    color: var(--primary-color, #007BFF);
}
.coverage p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}
.coverage img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
}

.call-to-action {
    max-width: 100%;
    padding: 50px 20px;
    text-align: center;
    background-color: var(--primary-color, #007BFF);
    color: #fff;
}
.call-to-action h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}
.call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.call-to-action button {
    padding: 15px 30px;
    font-size: 1rem;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    text-decoration: none;
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
    border-radius: var(--br-def);
}
.call-to-action button:hover {
    background-color: white;
    color: var(--primary-color, #007BFF);
    border: 2px solid white;
}

.captcha-border {
	width: 295px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: var(--br-def);
	-webkit-border-radius: var(--br-def);
	-moz-border-radius: var(--br-def);
	-ms-border-radius: var(--br-def);
	-o-border-radius: var(--br-def);
}