:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat",  sans-serif;
    --nav-font: "Raleway",  sans-serif;
    --background-color: #fff;
    --default-color: #003161;
    --heading-color: #003161;
    --accent-color: #fff;
    --surface-color: #fff;
    --contrast-color: #040404;
    --nav-color: #003161;
    --nav-hover-color: #fff;
    --nav-mobile-background-color: #fff;
    --nav-dropdown-background-color: #fff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #56b8e6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, #003161, transparent 25%);
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages */
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Global Header */
.header {
    --background-color: rgba(255, 255, 255, 0.5);
    --heading-color: #1e1d1d;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 60px;
    margin-left: 20px;
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll */
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.8);
}

/* Navigation Menu */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu { padding: 0 }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li { position: relative }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #003161;
        font-style: bold !important;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: whitesmoke;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 0;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 100px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #003161;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #00306193;
        font-style: bold;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/* Global Footer */
.footer {
    color: #003161;
    background-color: white;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: #003161;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
    text-align: justify;
}

.footer .social-links a {
    color: #f4f6f8;
    background-color: #003161;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: white;
    background-color: color-mix(in srgb, #003161 80%, rgb(255, 255, 255) 20%);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: #003061be;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #012951;
}

.footer .footer-contact p, a  {
    margin-bottom: 5px;
    color:#003161
}

.footer .copyright {
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #003161;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 30px;
    color: white;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, #003161, transparent 50%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* Global Page Titles & Breadcrumbs */
.page-title {
    color: white;
    background-color: #003161;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, #003161, transparent 40%);
    position: absolute;
    inset: 0;
    color: white;
}

.page-title .container {
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white !important;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li a {
    color: white;
}


.page-title .breadcrumbs .current {
    color: white !important;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
    color: white !important;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: white !important;
}

/* Portfolio Section */
.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.portfolio-description {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 49, 97, 0.9);
    color: white;
    transition: bottom 0.3s ease;
}

.portfolio-item:hover .portfolio-description {
    bottom: 0;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Global Sections */
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 30px 0;
    scroll-margin-top: 80px;
    overflow: clip;
}


@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/* Global Section Titles */
.section-title {
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0;
    padding: 20px 0;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    padding: 15px;
    margin-bottom: 10px;
    text-align:justify;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .hero:after {
        position: absolute;
        content: "";
        width: 0%;
        background-image: linear-gradient(180deg, color-mix(in srgb, #003161, transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
        top: 0;
        bottom: 0;
        z-index: 2;
    }
}

.hero:before {
    position: absolute;
    content: "";
    background: color-mix(in srgb, #003161, transparent 40%);
    inset: 0;
    z-index: 2;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .container,
.hero .container-fluid {
    z-index: 3;
    position: relative;
}

.hero h1 {
    margin: 0;
    font-size: 50px;  
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.hero blockquote {
    font-size: 16px;
    color: color-mix(in srgb, white, transparent 10%);
    padding-left: 0px;
    margin: 40px 0;
    text-align: justify;
}

.hero .btn-get-started {
    color: white;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 20px;
    transition: 0.5s;
}

.hero .btn-get-started:hover {
    color: color-mix(in srgb, #003161 20%, white 80%);
}


@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero .btn-get-started {
        font-size: 20px;
    }
}

/* Pattners section */


.partners-section {
    background-color: white;
    overflow: hidden;
    margin-bottom: 30px;
}

.partners-section .section-title h2 {
    padding-bottom: 30px;
    font-size: 30px;
}

.logos {
    overflow: hidden;
    background-color: white;
    white-space: nowrap;
    align-items: center;
}

.logos-slide {
    display: flex;
    white-space: nowrap;
    gap: 20px;
    animation: 10s slide linear infinite;
    padding: 20px 0;
}

.logos:hover .logos-slide {
    animation-play-state: paused !important;
}

.logo-link {
    display: inline-block;
}

.logos-slide a {
    display: block;
    max-width: 200%;
}

.logos-slide img {
    max-height: 60px;
    margin: 0 30px;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.logos-slide img:hover {
    opacity: 1;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* What We Do Section */
.features-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1rem;
}

.features-top {
    text-align: center;
}

.features-top h1 {
    font-size: 30px;
    margin-bottom: 1rem;
    color:#003161;
    font-weight: 700;
}

.features-top p {
    font-size: 20px;
    color:#003161;
    opacity: 0.6;
    font-weight: 400;
}

.feature {
    display: flex;
    background: #fff;
    margin-top: 2rem;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: 45%;
    align-items: center;
}

.features-container {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    gap:20px
}

.feature i {
    font-size: 3rem;
    padding-top: 0rem;
    padding-left: 2rem;
    padding-right: 1rem;
    color: #003161;
    opacity: 0.5;
    text-align: center;
}

.feature-info {
    padding: 1.5rem;
}

.feature-info h3 {
    color: #003161;
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin: 10px 0;
    margin-top: 4rem;
}

.feature-info p {
    font-weight: 300;
    color: #0f4675
}

.feature:hover {
    background-color: whitesmoke;
}

.feature:hover i {
    color: #003161;
    opacity: 1;
    scale: 1.3;
    transition-duration: 0.5s;
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .feature {
        max-width: 100%;
        margin: 20px 20px;
    }
}

/* Numbers Count Section */
.numbers {
    background-color: white;
    padding-top: 20px;
}

.numbers .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.numbers-top, .numbers-container {
    padding: 0 1.5rem;
}

.numbers-top {
    text-align: center;
}

.numbers-top h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color:#003161;
    font-weight: 700;
}

.numbers-top p {
    font-size: 1rem;
    color: #003161;
    line-height: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
}

.numbers-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.number-counter {
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    background-color: #dddddd13;
    border-radius: 15px;
}

.number-counter span {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 0.5rem;
    color: #003161;
}

.number-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #003161;
    margin-bottom: 0.5rem;
}

.number-info p {
    font-size: 1rem;
    color: #0f4675;
    line-height: 1.2rem;
    font-weight: 400;
}

.number-counter:hover {
    background-color: #00306111;
    transition-duration: 1s;
    scale: 1.07;
}

@media (max-width: 768px) {
    .numbers-container {
        grid-template-columns: 1fr 1fr;
    }  
}

@media (max-width: 480px) {
    .numbers-top {
        padding: 0;
    }
    .numbers-container {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section */
.why-us .img-bg {
    min-height: 500px;
    position: relative;
}

.why-us .img-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.why-us .slides {
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.why-us h3 {
    font-size: 24px;
    font-weight: 700;
}

.why-us h4 {
    font-size: 18px;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .swiper {
    margin: 140px 140px 120px 140px;
    overflow: hidden;
}

.why-us .swiper-wrapper {
    height: auto;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
    font-size: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-button-prev {
    left: 80px;
}

.why-us .swiper-button-next {
    right: 80px;
}

.why-us .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 1200px) {
    .why-us .swiper {
        margin: 60px 60px 40px 60px;
    }

    .why-us .swiper-button-prev,
    .why-us .swiper-button-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .why-us .swiper {
        margin: 40px 40px 20px 40px;
    }
}

/* Services Section */
.service-container {
    justify-items: center;
    align-items: center;
}

.services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 30px;
}

.services .service-item .icon {
    margin-right: 20px;
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 40px;
    line-height: 0;
    transition: 0.3s;
}

.services .service-item:hover .icon i {
    color: #003161;
}

.services .service-item .title {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.services .service-item .description {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 10px;
}

.services .service-item .readmore {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: 0.3s;
    font-weight: 700;
    font-size: 14px;
}

.services .service-item .readmore i {
    margin-left: 8px;
}

.services .service-item:hover .title,
.services .service-item:hover .readmore,
.services .service-item:hover .icon i {
    color: #003061bf;
}

/* Call To Action Section */
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, #003161, transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    padding-bottom: 20px;
}

.call-to-action p {
    color: white;
}

.call-to-action .cta-btn {
    background: var(--accent-color);
    color: #003161;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
}

.call-to-action .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* About Us Section Styles */
.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#0f4675, #0f4675 50%, #fff 50%, #fff 100%);
}

.service-container .container {
    width: 1200px;
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-container .container .box {
    width: 350px;
    position: relative;
    background: #fff;
    padding: 100px 40px 60px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.service-container .container .box:before {
    content: '';
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,49,97,0.5);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}

.service-container .container .box:hover:before {
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 0.5s;
}

.swiper-button-prev,
.swiper-button-next {
    color: #333 !important;
    display: block !important;
    opacity: 1 !important;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: #333;
}

.contact {
    background-image: url("../img/contact-bg.png");
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 640px) {
    .contact {
        background-position: center 50px;
        background-size: contain;
    }
}

.contact:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    background: #003161;
    color: white;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: white;
    background: #003161;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, #003161, transparent 30%);
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .portfolio .portfolio-filters li:hover,
  .portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
  }
  
  .portfolio .portfolio-filters li:first-child {
    margin-left: 0;
  }
  
  .portfolio .portfolio-filters li:last-child {
    margin-right: 0;
  }
  
  @media (max-width: 575px) {
    .portfolio .portfolio-filters li {
      font-size: 14px;
      margin: 0 5px;
    }
  }
  
  .portfolio .portfolio-item {
    position: relative;
  }
  
  .portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
  }
  
  .portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
  }
  
  .portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  .portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }

  
  
  #popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
}
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.close-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}