/* Font CSS Start */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');
/* Font CSS End */

/* Variables Start */
:root {
    --inter: 'Inter', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --outfit: 'Outfit', sans-serif;
    --syncopate: 'Syncopate', sans-serif;

    --white: #FFFFFF;
    --black: #000000;
    --grey: #D9D9D9;
    --blue-primary: #116BA1;
    --blue-primary-dark: #0C527D;
    --blue-primary-light: #116BA1CC;
    --blue-primary-light-v2: #91C7E6;
    --soft-bg: #F7FAFC;
    --transparent: transparent;

    --fw-thin: 100;
    --fw-extra-light: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;

    --primary-transition: all 0.3s ease-in-out;
}
/* Variables End */

/* Default CSS Start */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--syncopate);
    padding: 0;
    margin: 0;
}
p, ul, li, figure {
    font-family: var(--poppins);
    padding: 0;
    margin: 0;
}
*:focus, a, a:hover, a:focus, button:hover, button:focus {
    text-decoration: none;
    outline: 0 none;
    box-shadow: none;
    transition: var(--primary-transition);
}
ul, li {
    list-style: none;
}
img {
    max-width: 100%;
}
/* Default CSS End */

/* Custom CSS Start */
.block-section {
    padding: 70px 15px;
}
.title-center-block h3 {
    font-family: var(--syncopate);
    font-size: 48px;
    font-weight: var(--fw-bold);
    line-height: 52px;
    color: var(--black);
    margin-bottom: 20px;
}
.title-center-block p {
    font-family: var(--poppins);
    font-size: 18px;
    line-height: 30px;
    color: #555555;
    max-width: 820px;
    margin: 0 auto;
}

/* Header CSS Start */
.header-section {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--blue-primary);
    transition: var(--primary-transition);
}
.header-section.hide {
    top: -180px;
}
.header-top-row {
    padding: 16px 0 8px;
    text-align: center;
}
.header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-logo img {
    max-width: 260px;
}
.header-bottom-row {
    padding: 6px 0 14px;
}
.header-section .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.header-section .nav-item {
    padding: 0;
}
.header-section .nav-item .nav-link {
    font-family: var(--outfit);
    font-size: 20px;
    font-weight: var(--fw-light);
    line-height: 30px;
    color: var(--white);
    padding: 4px 0;
}
.header-section .nav-item .nav-link:hover,
.header-section .nav-item .nav-link.active {
    text-decoration: underline;
}
.header-section .navbar-toggler-icon {
    background: url('../images/icons/menu.svg') no-repeat center;
    background-size: contain;
    width: 28px;
    height: 28px;
}
.header-section .navbar-toggler {
    border: 0;
    padding: 0;
}
.header-section .navbar-toggler:focus {
    box-shadow: none;
}
/* Header CSS End */

/* Banner CSS Start */
.banner-section {
    position: relative;
    padding-top: 165px;
    transition: var(--primary-transition);
}
.banner-section .banner-top-block {
    padding: 80px 15px 60px;
}
.banner-section .banner-top-block .top-block-inner {
    max-width: 1120px;
    margin: 0 auto;
}
.banner-section .banner-top-block .top-block-inner h1 {
    font-family: var(--syncopate);
    font-size: 64px;
    font-weight: var(--fw-bold);
    line-height: 70px;
    color: var(--black);
    margin-bottom: 18px;
}
.banner-section .banner-top-block .top-block-inner p {
    font-family: var(--outfit);
    font-size: 22px;
    font-weight: var(--fw-regular);
    line-height: 34px;
    color: var(--black);
    max-width: 930px;
    margin: 0 auto;
}
.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: var(--fw-semibold);
    line-height: 22px;
}
.hero-btn.primary-btn {
    background: var(--blue-primary);
    color: var(--white);
    border: 2px solid var(--blue-primary);
}
.hero-btn.primary-btn:hover {
    background: var(--blue-primary-dark);
    border-color: var(--blue-primary-dark);
    color: var(--white);
}
.hero-btn.secondary-btn {
    background: var(--white);
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}
.hero-btn.secondary-btn:hover {
    background: var(--blue-primary);
    color: var(--white);
}
.banner-section .banner-bottom-block {
    padding: 98px 15px 158px;
    background: url('../images/banner-image.jpg') no-repeat center;
    background-size: cover;
}
.banner-section .bottom-block-inner {
    width: 100%;
    max-width: 940px;
}
.banner-section .empty-cell,
.banner-section .bottom-block-inner-content {
    min-height: 535px;
}
.banner-section .empty-cell {
    border: 25px solid var(--white);
    border-right: 0;
}
.banner-section .bottom-block-inner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--white);
    padding: 15px 44px 15px 32px;
}
.banner-section .bottom-block-inner-content-inner {
    width: 100%;
    max-width: 380px;
}
.banner-section .bottom-block-inner h4 {
    font-family: var(--poppins);
    font-size: 32px;
    font-weight: var(--fw-bold);
    line-height: 41px;
    color: var(--black);
    text-align: center;
}
.banner-section .bottom-block-inner blockquote {
    font-family: var(--poppins);
    font-size: 24px;
    font-weight: var(--fw-regular);
    line-height: 32px;
    color: var(--black);
    text-align: center;
    margin-bottom: 32px;
}
.banner-section .bottom-block-inner p {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: var(--fw-regular);
    line-height: 28px;
    color: var(--black);
}
/* Banner CSS End */

/* Partners CSS Start */
.partners-section {
    position: relative;
}
.partners-section .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    min-height: 137px;
    margin: 0 auto;
}
.partners-section .partner-item img.hovered-item,
.partners-section .partner-item:hover img.default-item {
    display: none;
}
.partners-section .partner-item img.default-item,
.partners-section .partner-item:hover img.hovered-item {
    display: block;
}
.partners-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: block;
    margin-top: -16px;
}
.partners-section button.owl-prev span,
.partners-section button.owl-next span {
    font-size: 22px !important;
    font-weight: var(--fw-bold) !important;
    color: var(--white) !important;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 28px !important;
    border-radius: 50%;
    background: var(--blue-primary) !important;
}
.partners-section button.owl-prev {
    position: absolute;
    left: -15px;
}
.partners-section button.owl-next {
    position: absolute;
    right: -15px;
}
/* Partners CSS End */

/* About us CSS Start */
.about-section {
    position: relative;
}
.about-section .about-section-inner {
    padding: 95px 113px 95px 162px;
    border-radius: 20px;
    background: var(--blue-primary);
}
.about-section .about-content {
    width: 100%;
    max-width: 488px;
}
.about-section .about-content h2 {
    font-family: var(--syncopate);
    font-size: 62px;
    font-weight: var(--fw-bold);
    line-height: 62px;
    color: var(--white);
    text-align: left;
    margin-bottom: 40px;
}
.about-section .about-content p {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: var(--fw-medium);
    line-height: 32px;
    color: var(--white);
}
.about-section .about-image img {
    border-radius: 8px 8px 0 0;
}
/* About us CSS End */

/* Why Choose CSS Start */
.why-choose-section {
    background: var(--soft-bg);
}
.why-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 28px 24px;
    height: 100%;
}
.why-card h4 {
    font-family: var(--poppins);
    font-size: 24px;
    font-weight: var(--fw-bold);
    line-height: 32px;
    color: var(--blue-primary);
    margin-bottom: 14px;
}
.why-card p {
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: var(--fw-regular);
    line-height: 25px;
    color: #333333;
}
/* Why Choose CSS End */

/* Services CSS Start */
.service-section.block-section {
    position: relative;
    padding-bottom: 42px;
}
.service-section .service-items-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.service-section .service-items-list .service-item-detail {
    padding: 18px;
    max-width: 20%;
    flex: 0 0 20%;
}
.service-section .service-item,
.service-section .service-item-image {
    position: relative;
}
.service-section .service-item {
    height: 100%;
}
.service-section .service-item-image {
    height: 355px;
    overflow: hidden;
    border-radius: 16px;
}
.service-section .service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.service-section .service-item-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(to top, #0000004D, transparent);
}
.service-section .service-item .service-item-title {
    position: absolute;
    bottom: 35px;
    left: 35px;
    font-family: var(--outfit);
    font-size: 19.56px;
    font-weight: var(--fw-bold);
    line-height: 25px;
    color: var(--white);
    padding-right: 35px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Services CSS End */

/* Projects Section Start */
.projects-section {
    padding: 80px 15px;
    background: #f7f7f7;
}
.projects-section .projects-carousel .owl-stage-outer {
    overflow: visible;
}
.projects-section .projects-carousel .item {
    padding: 18px 8px 28px;
}
.project-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: var(--primary-transition);
    height: 100%;
    transform: scale(0.92);
    opacity: 0.65;
}
.projects-carousel .center .project-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}
.project-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}
.project-card-body {
    padding: 20px;
}
.project-tag {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(17, 107, 161, 0.10);
    color: var(--blue-primary);
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    line-height: 18px;
    margin-bottom: 12px;
}
.project-card h4 {
    font-family: var(--poppins);
    font-size: 22px;
    font-weight: var(--fw-bold);
    line-height: 30px;
    margin: 0 0 8px;
    color: var(--blue-primary);
}
.project-card p {
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: var(--fw-regular);
    line-height: 24px;
    color: #333333;
    margin: 0;
}
.projects-section .owl-dots,
.project-reference-section .owl-dots {
    margin-top: 16px;
    text-align: center;
}
.projects-section .owl-dots .owl-dot span,
.project-reference-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #B9C4CB;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
}
.projects-section .owl-dots .owl-dot.active span,
.project-reference-section .owl-dots .owl-dot.active span {
    background: var(--blue-primary);
}
.projects-section .owl-nav,
.project-reference-section .owl-nav {
    margin-top: 14px;
    text-align: center;
}
.projects-section .owl-nav button,
.project-reference-section .owl-nav button {
    margin: 0 8px;
}
.projects-section .owl-nav button span,
.project-reference-section .owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 24px;
    line-height: 24px;
}
.project-reference-section .owl-nav {
    display: block !important;
}
.project-reference-section .owl-nav button.owl-prev,
.project-reference-section .owl-nav button.owl-next {
    display: inline-block !important;
}
/* Projects Section End */

/* Project Reference Section Start */
.project-reference-section {
    padding: 80px 15px;
    background: #f7f7f7;
}
.project-reference-section .projects-carousel .owl-stage-outer {
    overflow: visible;
}
.project-reference-section .projects-carousel .item {
    padding: 18px 8px 28px;
}
.project-reference-divider {
    width: 100%;
    height: 1px;
    background: #dbe3ea;
    margin: 28px 0 36px;
}
.project-reference-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 34px;
    margin-bottom: 16px;
}
.project-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.project-filter-btn {
    border: 1px solid #d4dde5;
    background: var(--white);
    color: #22313f;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    line-height: 18px;
    cursor: pointer;
}
.project-filter-btn:hover,
.project-filter-btn.active {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: var(--white);
}
.project-search-box {
    width: 100%;
    max-width: 420px;
}
.project-search-box input {
    width: 100%;
    height: 48px;
    border: 1px solid #d4dde5;
    background: var(--white);
    border-radius: 14px;
    padding: 0 16px;
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: #22313f;
}
.project-search-box input::placeholder {
    color: #6d7c8a;
}
.project-search-box input:focus {
    border-color: var(--blue-primary);
}
.project-reference-meta {
    margin-bottom: 16px;
}
.project-reference-meta p {
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: var(--fw-medium);
    line-height: 20px;
    color: #5d6975;
}
.project-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.project-reference-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}
.project-reference-table thead th {
    background: var(--blue-primary);
    color: var(--white);
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    line-height: 20px;
    padding: 16px 14px;
    text-align: left;
    white-space: nowrap;
}
.project-reference-table tbody td {
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: var(--fw-regular);
    line-height: 22px;
    color: #2d3a46;
    padding: 15px 14px;
    border-bottom: 1px solid #edf1f4;
    vertical-align: top;
}
.project-reference-table tbody tr:nth-child(even) {
    background: #f9fbfd;
}
.project-reference-table tbody tr:hover {
    background: #eef6fb;
}
.project-reference-table tbody tr:last-child td {
    border-bottom: 0;
}
.project-reference-table th:first-child,
.project-reference-table td:first-child {
    width: 78px;
    text-align: center;
}
.project-reference-table th:last-child,
.project-reference-table td:last-child {
    width: 110px;
    text-align: center;
    font-weight: var(--fw-semibold);
}
/* Project Reference Section End */

/* Gallery CSS Start */
.gallery-section {
    position: relative;
}
.gallery-section .gallery-section-inner {
    width: 100%;
    max-width: 1232px;
    padding-bottom: 60px;
}
.gallery-section .title-center-block {
    padding-bottom: 43px;
}
.gallery-section .title-center-block.line-break p {
    position: relative;
    font-family: var(--poppins);
    font-size: 24px;
    font-weight: var(--fw-medium);
    line-height: 36px;
    color: var(--black);
}
.gallery-section .title-center-block.line-break p:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
}
.gallery-section .gallery-section-inner .title-center-block.line-break p span {
    position: relative;
    display: inline-block;
    z-index: 10;
    padding: 0 28px;
    background: var(--white);
}
.gallery-section .gallery-btn-group {
    padding-left: 32px;
}
.gallery-section .gallery-item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
    max-width: 368px;
    padding: 26px 31px 26px;
    padding-left: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--grey);
}
.gallery-section .gallery-item a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 31px;
    width: 15px;
    height: 20px;
    margin-top: -10px;
    background: url('../images/icons/chevron-right.svg') no-repeat center;
    background-size: contain;
}
.gallery-section .gallery-item a:hover {
    background: var(--blue-primary-light-v2);
}
.gallery-section .gallery-item a img {
    width: 100%;
    max-width: 30px;
    margin-right: 20px;
}
.gallery-section .gallery-item a p {
    font-family: var(--poppins);
    font-size: 19px;
    font-weight: var(--fw-medium);
    line-height: 29px;
    color: var(--black);
    padding-right: 20px;
}
.gallery-section .gallery-group-item {
    position: relative;
    margin: 9px;
}
.gallery-section .gallery-group-item img {
    width: 100%;
    height: 100%;
}
.gallery-section .gallery-group-item .gallery-content-overlay-item {
    position: absolute;
    top: -100%;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: var(--primary-transition);
    display: none;
}
.gallery-section .gallery-content-overlay {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 48px;
    height: 100%;
    width: 100%;
    background: var(--blue-primary);
}
.gallery-section .gallery-content-overlay h5,
.gallery-section .gallery-content-overlay p {
    font-family: var(--inter);
    font-size: 15px;
    font-weight: var(--fw-regular);
    line-height: 18px;
    color: var(--white);
    margin-bottom: 12px;
}
.gallery-section .gallery-content-overlay h5 {
    font-weight: var(--fw-bold);
    font-size: 18px;
}
.gallery-section .gallery-content-overlay p {
    margin-bottom: 0px;
}
.gallery-section .gallery-group-item:hover .gallery-content-overlay-item {
    display: block;
    top: 0;
}
/* Gallery CSS End */

/* CTA Section Start */
.cta-section {
    padding: 70px 15px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-primary-dark));
}
.cta-section-inner {
    max-width: 920px;
    margin: 0 auto;
}
.cta-section h3 {
    font-family: var(--syncopate);
    font-size: 34px;
    font-weight: var(--fw-bold);
    line-height: 46px;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: var(--fw-regular);
    line-height: 30px;
    color: var(--white);
    margin-bottom: 28px;
}
.cta-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-section .hero-btn.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.cta-section .hero-btn.secondary-btn:hover {
    background: var(--white);
    color: var(--blue-primary);
}
/* CTA Section End */

/* Modal CSS Start */
.modal-title {
    font-family: var(--poppins);
    font-size: 24px;
    font-weight: var(--fw-medium);
    line-height: 36px;
    color: var(--black);
}
/* Modal CSS End */

/* Footer CSS Start */
.footer-section {
    background: var(--blue-primary);
}
.footer-section .footer-section-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 24px 18px 22px 24px;
}
.footer-section .footer-column {
    padding-bottom: 18px;
}
.footer-section .footer-column.about {
    max-width: 575px;
    padding-right: 77px;
}
.footer-section .footer-column.address,
.footer-section .footer-column.menu {
    padding-right: 57px;
}
.footer-section .footer-column-title {
    margin-bottom: 16px;
}
.footer-section .footer-column-title h4 {
    font-family: var(--poppins);
    font-size: 21px;
    font-weight: var(--fw-medium);
    line-height: 32px;
    color: var(--white);
}
.footer-section .footer-column-title.other h4 {
    font-size: 18px;
    line-height: 27px;
}
.footer-section .footer-column-content p,
.footer-section .footer-column-content a {
    color: var(--white);
}
.footer-section .footer-column-content .footer-menu-links li:not(:last-child),
.footer-section .footer-column-content .footer-contact-links li:not(:last-child) {
    margin-bottom: 12px;
}
.footer-section .footer-column-content .footer-contact-links li img {
    margin-right: 12px;
}
.footer-section .footer-column-content p {
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: var(--fw-medium);
    line-height: 22px;
}
.footer-section .footer-column.menu .footer-column-content a {
    font-family: var(--outfit);
    font-size: 18px;
    font-weight: var(--fw-regular);
    line-height: 20px;
}
.footer-section .footer-column.contact .footer-contact-links li.phone a {
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: var(--fw-medium);
    line-height: 24px;
}
.footer-section .footer-column.contact .footer-contact-links li.email a {
    font-family: var(--poppins);
    font-size: 13px;
    font-weight: var(--fw-medium);
    line-height: 20px;
}
/* Footer CSS End */

/* WhatsApp Button Start */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 50px;
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: var(--fw-semibold);
    line-height: 20px;
    z-index: 9999;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
}
.whatsapp-float:hover {
    color: var(--white);
    opacity: 0.9;
}
/* WhatsApp Button End */

/* Custom CSS End */