/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font */
    --inter: 'Inter', sans-serif;
    --corinthia: 'Corinthia', cursive;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #004c99;
    --primary-light: #0d6bca;
    --primary-light-2: #dbedf5;
    --grey: #626262;
    --yellow: #fbbc04;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--grey);
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 500;
    line-height: 1.68;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}
*::placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

/* ===== Reusable CSS Start ===== */

/* Button CSS Start */
.btn {
    padding: 13px 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.89;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary);
    transition: all 0.25s ease-in-out;
}
.btn:hover {
    color: var(--white);
    background-color: #0d6bca;
}
.btn__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.btn__fa {
    font-size: 1.6rem;
}
.btn__icon svg,
.btn__icon img {
    max-width: 16px;
}

.btn:hover .btnShakeAnim {
    animation: shakeAnim 1s infinite ease-in-out;
}

@keyframes shakeAnim {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(8deg);
    }
    60% {
        transform: rotate(-6deg);
    }
    80% {
        transform: rotate(6deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Button CSS End */

/* Typography CSS Start */
.pretitle {
    font-size: 30px;
    letter-spacing: 0.04em;
}
.fs-1 {
    font-size: 32px !important;
    line-height: 1.32;
}
.fs-2 {
    font-size: 28px !important;
    line-height: 1.2;
}
.fs-3 {
    font-size: 24px !important;
    line-height: 1.14;
}
.ff-corinthia {
    font-family: var(--corinthia);
}
/* Typography CSS End */

/* Color CSS Start */
.text-primary {
    color: var(--primary) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
/* Color CSS End */

/* ===== Reusable CSS End ===== */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header__content {
    max-width: 1228px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
    max-width: 112px;
}
.mobile-menu-open,
.mobile-menu-close {
    font-size: 22px;
    color: var(--white);
}

/* Mobile Offcanvas Menu Start */
.mobile-menu .offcanvas {
    background-color: rgba(0, 77, 153, 0.8);
    backdrop-filter: blur(8px);
}
.mobile-menu .offcanvas-header,
.mobile-menu .offcanvas-body {
    padding: 20px;
}
.offcanvas__logo {
    max-width: 112px;
}
.mobile-menu__link {
    color: var(--white);
    font-size: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu__link:hover,
.header__nav__link:hover {
    color: var(--yellow);
}
/* Mobile Offcanvas Menu End */

/* Header Menu Start*/
.header__nav__content {
    gap: 24px;
}
.header__nav__link {
    color: var(--white);
}
/* Header Menu End*/
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    padding: 112px 0 64px;
}
.hero--section::before,
.hero--section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.69;
    z-index: -1;
}
.hero--section::after {
    height: 75%;
    background: linear-gradient(to bottom, var(--primary) 0%, #0000 100%);
    opacity: 1;
}
.hero__wrapper {
    max-width: 1228px;
}
.hero__content {
    max-width: 678px;
}
.hero__para {
    line-height: 1.75;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =================================== */
/* :: 6.0 Specialist Section CSS Start */
/* =================================== */
.specialist--section {
    padding: 48px 0;
}
.specialist__wrapper {
    max-width: 1000px;
}
.specialist__icon {
    max-width: 48px;
    width: 100%;
}
.specialist__para {
    line-height: 1.6;
}
/* ================================= */
/* :: 6.0 Specialist Section CSS End */
/* ================================= */

/* ============================================ */
/* :: 7.0 Repairs-Maintenance Section CSS Start */
/* ============================================ */
.repairs-maintenance--section {
    padding: 48px 0;
    background-color: var(--primary-light-2);
}
.repairs-maintenance__wrapper {
    max-width: 1600px;
}
.rmti-01 {
    width: 100%;
    height: 300px;
}
.rmti-02 {
    width: 67.5%;
    aspect-ratio: 1 / 0.635;
    margin: -29% auto 0;
    position: relative;
}
.rmti-02::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.5;
}
.repairs-maintenance__content {
    padding: 32px 0 0;
}
.repairs-maintenance__obj {
    width: clamp(200px, 30%, 416px);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin-bottom: -24px;
    margin-right: -72px;
}
/* ========================================== */
/* :: 7.0 Repairs-Maintenance Section CSS End */
/* ========================================== */

/* =============================== */
/* :: 8.0 Service Section CSS Start */
/* =============================== */
.service--section {
    padding: 48px 0;
}
.service__card {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--primary);
    border-radius: 10px;
    padding: 20px 16px;
}
.service__card::before,
.service__card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0000 15%, var(--black) 100%);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}
.service__card:hover::before {
    opacity: 0;
}
.service__card::after {
    background: linear-gradient(to bottom, #0000 15%, var(--primary) 100%);
    opacity: 0;
}
.service__card:hover::after {
    opacity: 1;
}
.service__card__thumb {
    transition: all 0.4s ease-in-out;
}
.service__card:hover .service__card__thumb {
    transform: scale(1.05);
}
.service__card__link {
    font-size: 15px;
    color: var(--white);
}
.service__card__link:hover {
    color: var(--yellow);
}
.service__card__link svg {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.service__obj {
    width: clamp(200px, 30%, 336px);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin-bottom: 36px;
    margin-right: -104px;
    opacity: 0.1;
}
/* =============================== */
/* :: 8.0 Service Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Guarantee Section CSS Start */
/* =============================== */
.guarantee--section {
    padding: 48px 0;
    background-color: var(--primary-light-2);
}
.guarantee__wrapper {
    max-width: 1244px;
}
.guarantee__icon__box {
    padding-bottom: 16px;
    margin-bottom: 20px;
}
.guarantee__icon__box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 2px;
    background-color: var(--yellow);
}
.guarantee__icon__obj {
    max-width: 40px;
}
.guarantee__item__title {
    font-size: 22px;
}
.guarantee__item__para {
    opacity: 0.8;
}
.guarantee__obj {
    width: clamp(200px, 30%, 284px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin-top: 64px;
    margin-left: -64px;
    opacity: 0.1;
}
/* =============================== */
/* :: 9.0 Guarantee Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Reliable Section CSS Start */
/* =============================== */
.reliable--section {
    padding: 48px 0;
}
.reliable__wrapper {
    max-width: 1920px;
}
.reliable__thumb {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 17% 0);
    height: 256px;
}

/* =============================== */
/* :: 10.0 Reliable Section CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Gallery Section CSS Start */
/* =============================== */
.gallery--section {
    padding-bottom: 6px;
}
.gallery__wrapper {
    max-width: 1920px;
}
.gallery__wrapper.g-2 {
    --bs-gutter-x: 6px;
    --bs-gutter-y: 6px;
}
.gallery__card {
    width: 100%;
    height: 256px;
}
.gallery__card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease-in-out;
}
.gallery__img__link {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* =============================== */
/* :: 11.0 Gallery Section CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    background: linear-gradient(to bottom, var(--primary) 0%, #06213d 100%);
}
.footer__wrapper {
    max-width: 1244px;
    padding: 48px 0 128px;
}
.footer__wrapper__row.g-4 {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 32px;
}
.footer__logo {
    max-width: 236px;
}
.footer__widget__title {
    font-size: 20px;
    margin-bottom: 8px;
}
.footer__widget__link,
.footer__widget__contact__item {
    color: var(--white);
    line-height: 2.395;
}
.footer__widget__link:hover,
.footer__widget__contact__link:hover {
    color: var(--yellow);
}
.footer__widget__contact__item {
    gap: 10px;
}
.footer__widget__contact__link {
    color: var(--white);
}
.footer__widget__contact__icon {
    width: 20px;
}
.footer__widget__contact__icon svg {
    width: 100%;
}
.footer__obj {
	width: clamp(200px, 40%, 464px);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	opacity: 0.1;
	margin-bottom: -80px;
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */


.certificates img {
    margin-top: 30px;
    margin-right: 20px;
    max-height: 100px;
}