@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");



@keyframes flipOnce {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.flip-animation {
    animation: flipOnce 0.6s ease;
}


:root {
    --primary_color: #142D53;
    --secondary_color: #A63F0B;
    --text_dark_color: #202020;
    --text_light_color: #fff;
    --hover: #b8b8b8;
    --description_p_color: #606060;
    --white: #fafafa;
}

.rounded-12px {
    border-radius: 12px;
}

.rounded-25px {
    border-radius: 25px;
}

.text-12px {
    font-size: 12px;
}

.text-14px {
    font-size: 14px;
}

.text-16px {
    font-size: 16px;
}

.text-18px {
    font-size: 18px;
}

.text-20px {
    font-size: 20px;
}

.text-22px {
    font-size: 22px;
}

.text-24px {
    font-size: 24px;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 14px;
    background: #F4F1F8;
    color: var(--text_dark_color);
}

.btn-custom {
    background: var(--primary_color) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
}

.btn-custom-2 {
    background: var(--secondary_color) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
}

.btn-custom-gradient {
    background: #142D53;
    background: linear-gradient(90deg, rgba(20, 45, 83, 1) 0%, rgba(77, 132, 215, 1) 100%);
    color: var(--white) !important;
    border-radius: 12px !important;
    transition: all 0.3s linear;
}

.btn-custom-gradient:hover {
    background: #4D84D7;
    background: linear-gradient(90deg, rgba(77, 132, 215, 1) 0%, rgba(20, 45, 83, 1) 100%);
    color: var(--white) !important;
    border-radius: 12px !important;
}

.btn-custom-2-gradient {
    background: #D9662C;
    background: linear-gradient(90deg, rgba(217, 102, 44, 1) 0%, rgba(166, 63, 11, 1) 100%);
    color: var(--white) !important;
    border-radius: 12px !important;
    transition: all 0.3s linear;
}

.btn-custom-2-gradient:hover {
    background: #A63F0B;
    background: linear-gradient(90deg, rgba(166, 63, 11, 1) 0%, rgba(217, 102, 44, 1) 100%);
    color: var(--white) !important;
    border-radius: 12px !important;
}

.bg-custom {
    background: var(--primary_color) !important;
}

.bg-custom-2 {
    background: var(--secondary_color) !important;
}

.text-custom {
    color: var(--primary_color) !important;
}

.text-custom-2 {
    color: var(--text_dark_color) !important;
}

.text-custom-3 {
    color: var(--description_p_color) !important;
}

a {
    text-decoration: none;
    transition: all 0.3s linear;
    font-family: "Inter", sans-serif;
}

a:hover {
    text-decoration: none;
    color: var(--hover);
}

.clear {
    clear: both;
}


header {
    width: 100%;
    padding: 20px 0px;
}

header.homepage {
    position: absolute;
    z-index: 2;
    top: 0px;
}

.nav {
    --bs-nav-link-padding-y: 1.2rem;
}

.navbar a {
    color: #202020;
    font-weight: 600;
}

.navbar a:hover {
    color: var(--secondary_color);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--secondary_color);
}

.navbar a.nav-link-top {
    color: var(--secondary_color);
    font-weight: 400;
    font-size: 12px;
}

#sliders {
    width: 100%;
    margin: 0px 0px;
    height: 692px;
}

#sliders .swiper-slide {
    width: 100%;
    padding-top: 120px;
    height: 692px;
}


#sliders .swiper-slide h2 {
    font-size: 32px;
    color: #202020;
    font-weight: 500;
}

#sliders .swiper-slide h2 span {
    display: block;
    font-size: 50px;
    font-weight: 600;
}


#sliders .swiper-slide .sliderImg {
    padding: 0px;
}

#references {
    width: 100%;
    padding: 30px 0px 30px 0px;
}

#references img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}


#aboutUs {
    width: 100%;
    padding: 0px 0px 40px 0px;
}

#aboutUs h3 {
    font-size: 32px;
}

#aboutUs h3 span {
    font-size: 48px;
}


#services {
    width: 100%;
    margin: 0px 0px 40px 0px;
}

#services h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
}

#services .serviceCard img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 20px;
}

#articles {
    width: 100%;
    margin: 40px 0px;
}

#articles h2 {
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: #202020;
}

#articles p.description {
    text-align: center;
    padding: 10px 50px;
}

.blog-card {
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 3/2;
    height: auto;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blog-link {
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #0d6efd;
}


.footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    font-family: sans-serif;
    gap: 20px;
}

.footer-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e1e1e;
}

.footer-card-content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-card-icon {
    padding: 30px;
}

.footer-card-icon img {
    width: 120px;
    heighT: 120px;
    object-fit: contain;
}


footer {
    background: #1A1A1A url(../images/logoWhiteOpacity.png) no-repeat bottom left;
    color: #fff;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}


.footer-content .logo {
    height: 100px;
}


.footer-box {
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-box.subscribe {
    flex: 1 1 300px;
    min-width: 180px;
}

.footer-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-box ul li a:hover {
    text-decoration: underline;
}

.footer-box p {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

.footer-bottom {
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom img {
    filter: brightness(0) invert(1);
    width: 120px;
}


.footer-bottom .socials {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-bottom .socials a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-bottom .socials a:hover {
    color: #ccc;
}


#subpage {
    width: 100%;
    margin: 30px 0px 30px 0px;
}



#subpage h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 10px;
    text-wrap: nowrap;
    text-align: center;
    color: var(--primary_color)
}

.breadcrumb {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 30px 0px;
}

.breadcrumb .breadcrumb-item {
    font-size: 12px;
    color: var(--secondary_color);
}

.breadcrumb .breadcrumb-item a {
    color: var(--secondary_color);
}

.breadcrumb .breadcrumb-item.active {
    font-size: 12px;
    color: var(--primary_color);
}
