@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #086ad8;
    --primary-dark: #0656ac;
    --dark: #001d4c;
    --text-muted: #666666;
    --border-light: #eaeef3;
}

body {
    font-family: 'Inter', sans-serif;
    color: #666666;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
}

.btn-brand {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

.btn-brand:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-outline-brand {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

.btn-outline-brand:hover {
    background: #fff;
    color: var(--primary);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.section-pad {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-pad {
        padding: 50px 0;
    }
}

/* ===================== Topbar ===================== */
.topbar {
    background: var(--primary);
    color: #f8f9fa;
    font-size: 14px;
    padding: 15px 0;
}

.topbar-info li,
.topbar-social li {
    display: inline-flex;
    align-items: center;
}

.topbar-social {
    gap: 14px !important;
}

.topbar-social a {
    color: #f8f9fa;
    font-size: 15px;
    transition: 0.2s ease;
}

.topbar-social a:hover {
    color: #fff;
    opacity: 0.85;
}

/* ===================== Navbar ===================== */
.site-navbar {
    padding: 0;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.site-navbar .navbar-brand {
    padding: 20px 0;
    margin-right: 24px;
}

.site-navbar .navbar-brand img {
    height: 60px;
}

.site-navbar .nav-link {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 2px;
    padding: 10px 14px !important;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover,
.site-navbar .nav-link.dropdown-toggle.show {
    color: var(--primary);
}

.site-navbar .nav-phone {
    align-items: center;
    gap: 12px;
    margin-left: 24px;
    white-space: nowrap;
}

.site-navbar .nav-phone i {
    font-size: 32px;
    color: var(--primary);
}

.site-navbar .nav-phone span {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.site-navbar .dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 29, 76, 0.12);
    padding: 10px 0;
    margin-top: 0;
    min-width: 280px;
}

@media (min-width: 992px) {
    .site-navbar .dropdown-menu {
        min-width: 300px;
    }
}

.site-navbar .dropdown-item {
    color: #333;
    font-size: 14px;
    padding: 8px 20px;
    white-space: normal;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
    background: rgba(8, 106, 216, 0.08);
    color: var(--primary);
}

@media (max-width: 991px) {
    .site-navbar .nav-link {
        padding: 10px 14px !important;
    }
}

/* ===================== Hero Slider ===================== */
.hero-carousel .carousel-item {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-carousel .slider-thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-carousel .slider-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(8, 106, 216, 0.85) 35%, rgba(8, 106, 216, 0.35) 60%, rgba(8, 106, 216, 0.15) 100%);
}

.hero-carousel .container {
    position: relative;
    z-index: 1;
}

.hero-carousel .content {
    padding: 20px 0;
}

.hero-carousel h1 {
    color: #fff;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-carousel h1 strong {
    font-weight: 800;
}

.hero-carousel p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.btn-hero-circle {
    display: inline-block;
    margin-top: 20px;
    background: transparent;
    color: #fff;
    border: 1.6px solid #fff;
    border-radius: 40px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s ease;
}

.btn-hero-circle:hover {
    background: #fff;
    color: var(--dark);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    opacity: 0.85;
    transition: 0.3s ease;
}

.hero-carousel .carousel-control-prev {
    left: 24px;
}

.hero-carousel .carousel-control-next {
    right: 24px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.hero-carousel .carousel-control-prev i,
.hero-carousel .carousel-control-next i {
    color: #fff;
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .hero-carousel .carousel-item {
        height: 100vh;
        min-height: 640px;
        max-height: 900px;
    }

    .hero-carousel .slider-thumb {
        left: 40%;
    }

    .hero-carousel .slider-thumb::before {
        background: linear-gradient(90deg, var(--primary) 0%, rgba(8, 106, 216, 0.9) 25%, rgba(8, 106, 216, 0.55) 55%, rgba(8, 106, 216, 0.1) 100%);
    }

    .hero-carousel h1 {
        font-size: 60px;
        line-height: 1.2;
    }
}

.page-hero {
    background-image: linear-gradient(90deg, #09468b 0%, #1e84f6 100%);
    background-attachment: fixed;
    color: #fff;
    padding: 150px 0;
}

.page-hero h1 {
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: 600;
}

.page-hero .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.page-hero .breadcrumb a {
    color: #f8f9fa;
}

.page-hero .breadcrumb-item.active {
    color: #f8f9fa;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .page-hero h1 {
        font-size: 28px;
    }
}

/* ===================== Service cards ===================== */
.service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    transition: 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(8, 106, 216, 0.12);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card .service-icon-fallback {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(8, 106, 216, 0.08);
    color: var(--primary);
    font-size: 1.75rem;
}

.service-card .service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.75rem;
    font-weight: 800;
    color: #eef2f8;
}

.service-card h3 {
    font-size: 1.15rem;
}

/* ===================== Home Services Carousel (exact match) ===================== */
.services-section .site-heading {
    margin-bottom: 60px;
}

.services-section .site-heading h4 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-section .site-heading h2 {
    font-size: 32px;
    color: #0e2b3d;
    font-weight: 600;
    margin-bottom: 0;
}

.services-content .item {
    display: flex;
    align-items: flex-start;
    background: transparent;
    box-shadow: 0 0 10px 0 #ccc;
    padding: 50px 37px;
    margin: 0 15px;
    height: 100%;
}

.services-content .icon {
    flex-shrink: 0;
    width: 150px;
    margin-right: 40px;
    display: flex;
    align-items: flex-start;
}

.services-content .icon img {
    width: 150px;
    height: auto;
}

.services-content .icon .bi {
    font-size: 60px;
    color: var(--primary);
}

.services-content .info h4 {
    font-size: 24px;
    color: #0e2b3d;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-content .info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.services-content .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-content .bottom span {
    font-size: 30px;
    color: #666;
    font-weight: 800;
}

.services-content .bottom a {
    color: #0e2b3d;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.services-content .bottom a i {
    color: #0e2b3d;
    margin-left: 4px;
    transition: 0.2s ease;
}

.services-content .bottom a:hover,
.services-content .bottom a:hover i {
    color: var(--primary);
}

.services-content.owl-carousel .owl-nav {
    display: none;
}

.services-content.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
    line-height: 1;
}

.services-content.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #d9dee5;
    border-radius: 50%;
    display: block;
    transition: 0.2s ease;
}

.services-content.owl-carousel .owl-dot.active span {
    background: var(--primary);
}

@media (max-width: 767px) {
    .services-content .item {
        flex-direction: column;
        padding: 36px 28px;
    }

    .services-content .icon {
        width: 60px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .services-content .icon img {
        width: 60px;
    }
}

.service-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================== Mission / Vision ===================== */
.mv-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 29, 76, 0.06);
    height: 100%;
}

.mv-card i {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

/* ===================== Mission / Vision (exact match) ===================== */
.who-we-area-area {
    background: var(--dark);
    color: #fff;
}

.who-we-area-box .row {
    min-height: 480px;
}

.who-we-area-box .thumb {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.who-we-area-box .info {
    display: flex;
    align-items: center;
}

.who-we-area-box .item {
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease-in-out;
}

.who-we-area-box .item:last-child {
    border-right: none;
}

.who-we-area-box .item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.who-we-area-box .item .text-blur {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    white-space: nowrap;
    transition: 0.35s ease-in-out;
    pointer-events: none;
}

.who-we-area-box .item:hover .text-blur {
    color: rgba(8, 106, 216, 0.18);
}

.who-we-area-box .item h4 {
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.who-we-area-box .item h2 {
    position: relative;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.who-we-area-box .item p {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-know-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0e2b3d;
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-know-more:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 991px) {
    .who-we-area-box .item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 45px 30px;
    }

    .who-we-area-box .item:last-child {
        border-bottom: none;
    }
}

/* ===================== Why Choose Us (exact match) ===================== */
.why-choose-section .site-heading {
    margin-bottom: 20px;
}

.why-choose-section .site-heading h2 {
    font-size: 32px;
    color: #0e2b3d;
    font-weight: 600;
    margin-bottom: 0;
}

.why-choose-intro {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

.why-choose-intro a {
    color: #0e2b3d;
    font-weight: 600;
    text-decoration: underline;
}

.why-choose-intro a:hover {
    color: var(--primary);
}

.why-choose-section .single-item {
    margin-bottom: 30px;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    padding: 50px;
    background: #fff;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.feature-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #042d5c 0%, #3f92f0 48%);
    z-index: -1;
    transition: 0.35s ease-in-out;
}

.feature-block:hover::after {
    bottom: 0;
}

.feature-block .feature-icon {
    position: relative;
    z-index: 1;
    min-width: 50px;
    margin-right: 20px;
    display: inline-block;
}

.feature-block .feature-icon i {
    display: inline-block;
    font-size: 60px;
    line-height: 1;
    color: var(--primary);
    transition: 0.35s ease-in-out;
}

.feature-block .feature-icon::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    height: 50px;
    width: 50px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    transition: 0.35s ease-in-out;
}

.feature-block:hover .feature-icon::after {
    background: #fff;
    opacity: 0.1;
}

.feature-block h4 {
    font-size: 24px;
    color: #0e2b3d;
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.35s ease-in-out;
}

.feature-block p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    transition: 0.35s ease-in-out;
}

.feature-block:hover h4,
.feature-block:hover p,
.feature-block:hover .feature-icon i {
    color: #fff;
}

.feature-block-full {
    max-width: 100%;
}

@media (max-width: 767px) {
    .feature-block {
        padding: 30px;
        flex-direction: column;
    }

    .feature-block .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ===================== Works About (exact match) ===================== */
.works-about-area {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.works-about-items {
    position: relative;
    z-index: 1;
}

.works-about-items::before {
    position: absolute;
    right: 20%;
    top: 0;
    content: "";
    height: 100%;
    width: 500%;
    background: #f3f7fd;
    z-index: -1;
}

.works-about-items .info {
    padding-right: 80px;
}

.works-about-items .info > h5 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 45px;
    color: var(--primary);
    font-size: 20px;
}

.works-about-items .info > h5::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 2px;
    width: 30px;
    background: var(--primary);
    margin-top: -1px;
}

.works-about-items .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 32px;
    color: #0e2b3d;
}

.works-about-items .info p {
    color: #666;
    font-size: 14px;
}

.works-about-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.works-about-items ul li {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.works-about-items ul li i {
    font-size: 22px;
    color: var(--primary);
}

.works-about-items ul li h5 {
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
    color: #0e2b3d;
}

.btn-works-about {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-works-about:hover {
    background: var(--dark);
    color: #fff;
}

.works-about-items .thumb {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.works-about-items .thumb img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.works-about-items .thumb .fun-fact {
    position: absolute;
    left: -50px;
    bottom: -50px;
    background: #fff;
    padding: 40px 50px;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    text-align: center;
}

.works-about-items .thumb .fun-fact .timer-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.works-about-items .thumb .fun-fact .timer {
    display: inline-block;
    font-weight: 800;
    color: #0e2b3d;
    font-size: 2rem;
    line-height: 1;
}

.works-about-items .thumb .fun-fact .timer-plus {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
    margin-left: 2px;
}

.works-about-items .thumb .fun-fact .medium {
    display: block;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .works-about-area {
        padding: 60px 0;
    }

    .works-about-items .info {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .works-about-items .thumb .fun-fact {
        left: 20px;
        bottom: -30px;
        padding: 25px 30px;
    }
}

/* ===================== Platforms carousel (exact match) ===================== */
.clients-area .site-heading {
    margin-bottom: 50px;
}

.clients-area .site-heading h2 {
    font-size: 32px;
    color: #0e2b3d;
    font-weight: 600;
}

.clients-carousel .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
}

.clients-carousel .client-logo img {
    max-height: 85px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: 0.25s ease;
}

.clients-carousel .client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.clients-carousel.owl-carousel .owl-nav,
.clients-carousel.owl-carousel .owl-dots {
    display: none;
}

/* ===================== Portfolio ===================== */
.portfolio-filters .btn {
    border-radius: 30px;
    padding: 8px 22px;
    margin: 0 4px 10px;
    border: 1px solid var(--border-light);
    color: var(--dark);
    font-weight: 600;
}

.portfolio-filters .btn.active,
.portfolio-filters .btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.portfolio-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 29, 76, 0.08);
}

.portfolio-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.06);
}

.portfolio-card .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 29, 76, 0.92), rgba(0, 29, 76, 0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

.portfolio-card .portfolio-overlay span {
    font-size: 0.8rem;
    color: #cfe0f7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== FAQ accordion ===================== */
.accordion-button:not(.collapsed) {
    background: rgba(8, 106, 216, 0.06);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* ===================== Contact ===================== */
.contact-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 29, 76, 0.06);
    height: 100%;
    text-align: center;
}

.contact-info-card i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-form .form-control {
    border-radius: 6px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
}

/* ===================== Home Contact / Address tabs (exact match) ===================== */
.contact-area.bg-gray {
    background: #f9fafb;
}

.contact-area .content .heading {
    margin-bottom: 30px;
}

.contact-area .content .heading h2 {
    font-weight: 600;
    font-size: 32px;
    color: #0e2b3d;
}

.contact-area .content .heading p {
    color: #666;
    font-size: 14px;
}

.contact-area .form-group {
    margin-bottom: 20px;
}

.contact-area .form-control {
    border: none;
    box-shadow: none;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}

.contact-area textarea.form-control {
    min-height: 120px;
}

.contact-area button[type="submit"] {
    background: var(--primary);
    border: none;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.contact-area button[type="submit"]:hover {
    background: var(--dark);
}

.contact-area .info {
    padding-left: 35px;
}

@media (max-width: 991px) {
    .contact-area .info {
        padding-left: 0;
        margin-top: 40px;
    }
}

.contact-tabs > .nav-tabs {
    margin-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
    margin-top: -15px;
}

.contact-tabs > .nav-tabs .nav-link {
    display: block;
    position: relative;
    background: transparent;
    border: none;
    padding: 15px 0;
    margin-right: 20px;
    text-transform: capitalize;
    font-size: 1.5rem;
    color: #0e2b3d;
    border-radius: 0;
}

.contact-tabs > .nav-tabs .nav-link.active {
    background: transparent;
    color: var(--primary);
}

.contact-tabs > .nav-tabs .nav-link.active::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: "";
    height: 3px;
    width: 100%;
    background: var(--primary);
}

.contact-tabs .tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-tabs .tab-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-tabs .tab-content ul li:last-child {
    margin-bottom: 0;
}

.contact-tabs .tab-content ul li .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    height: 80px;
    width: 80px;
    min-width: 80px;
    background: #fff;
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    color: var(--primary);
    margin-right: 20px;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}

.contact-tabs .tab-content ul li .info {
    padding: 0;
}

.contact-tabs .tab-content ul li .info p {
    font-weight: 600;
    color: #0e2b3d;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 14px;
}

.contact-tabs .tab-content ul li .info span {
    display: block;
    font-weight: normal;
    text-transform: none;
    color: #666;
    font-size: 14px;
}

.contact-tabs .tab-content iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    border: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
}

/* ===================== Footer (exact match) ===================== */
.site-footer {
    background: var(--dark);
    color: #c2d1e2;
    padding: 90px 0 0;
}

.footer-logo-box {
    display: block;
    margin-bottom: 25px;
}

.footer-logo-box img {
    height: 60px;
    width: auto;
    display: block;
}

.site-footer .widget-title {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

.site-footer p {
    color: #c2d1e2;
    font-size: 14px;
}

.site-footer a {
    color: #c2d1e2;
}

.site-footer a:hover {
    color: #fff;
}

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

.site-footer ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.site-footer .footer-address li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer .footer-address li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.06);
    margin-top: 50px;
    padding: 20px 0;
    font-size: 14px;
    color: #ccc;
    text-align: center;
}

/* ===================== Misc ===================== */
.service-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 4px;
    font-weight: 600;
    color: var(--dark);
}

.service-sidebar .list-group-item.active,
.service-sidebar .list-group-item:hover {
    color: var(--primary);
    background: transparent;
}

.cta-band {
    background: var(--primary);
    color: #fff;
    padding: 50px 0;
    border-radius: 8px;
}

/* ===================== About Us page (exact match) ===================== */
.about-area {
    padding: 100px 0;
    overflow: hidden;
}

.about-area .thumb {
    position: relative;
}

.about-area .thumb img {
    border-radius: 8px;
}

.about-area .thumb img:first-child {
    width: 80%;
}

.about-area .thumb img:nth-child(2) {
    position: relative;
    left: 20%;
    width: 80%;
    top: -80px;
    margin-bottom: -80px;
    box-shadow: 0 0 10px #ccc;
    padding: 5px;
    background: #fff;
}

.about-area .thumb .overlay {
    position: absolute;
    right: 0;
    top: 50%;
    height: 220px;
    width: 220px;
    text-align: center;
    background: #fff;
    transform: translate(30px, -50%);
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
}

.about-area .thumb .overlay .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 30px;
}

.about-area .thumb .overlay h4 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #0e2b3d;
}

.about-area .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 32px;
    color: #0e2b3d;
}

.about-area .info p {
    color: #666;
    font-size: 14px;
}

.about-area .faq-content {
    margin-top: 25px;
}

.about-area .faq-content .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 20px;
}

.about-area .faq-content .accordion-button {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #0e2b3d;
    background: transparent;
    box-shadow: none;
}

.about-area .faq-content .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: transparent;
}

.about-area .faq-content .accordion-button::after {
    background-size: 14px;
}

.about-area .faq-content .accordion-body {
    padding: 15px 0 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .about-area {
        padding: 60px 0;
    }

    .about-area .thumb img:nth-child(2) {
        display: none;
    }

    .about-area .thumb img:first-child {
        width: 100%;
    }

    .about-area .thumb .overlay {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        padding: 20px 0;
        height: auto;
    }

    .about-area .info {
        margin-top: 40px;
    }
}

/* ===================== Our Services numbered cards (exact match) ===================== */
.work-process-area {
    padding: 100px 0 70px;
    background: #fff;
}

.work-process-area .site-heading {
    margin-bottom: 50px;
}

.work-process-area .site-heading h2 {
    font-size: 32px;
    color: #0e2b3d;
    font-weight: 600;
}

.work-pro-items .item {
    border: 1px solid #e7e7e7;
    padding: 50px 30px;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.work-pro-items .item .icon {
    position: relative;
}

.work-pro-items .item .icon i {
    display: inline-block;
    color: var(--primary);
    font-size: 50px;
    margin-bottom: 30px;
}

.work-pro-items .item .icon span {
    position: absolute;
    left: 10px;
    top: -10px;
    font-size: 70px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #f4f4f4;
    z-index: -1;
    line-height: 1;
}

.work-pro-items .item h5 {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    color: #0e2b3d;
}

.work-pro-items .item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.work-pro-items .item {
    transition: 0.25s ease;
}

.work-pro-items .item:hover {
    box-shadow: 0 15px 40px rgba(8, 106, 216, 0.12);
}

/* ===================== Video / CTA area (exact match) ===================== */
.video-area {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 130px 0;
    text-align: center;
}

.video-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 29, 76, 0.85);
    z-index: -1;
}

.video-area h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.video-area h2 {
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 35px;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s ease;
}

.video-play-button:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 767px) {
    .video-area {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .video-area h2 {
        font-size: 26px;
    }
}

/* ===================== Choose Us floating cards (exact match) ===================== */
.choose-us-area {
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

.choose-us-area .items-box {
    margin-top: -110px;
}

.choose-us-area .item {
    padding: 50px 37px;
    box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    height: 100%;
}

.choose-us-area .item .icon {
    min-width: 60px;
}

.choose-us-area .item .icon i {
    display: inline-block;
    font-size: 50px;
    margin-right: 25px;
    color: var(--primary);
}

.choose-us-area .item h4 {
    font-weight: 600;
    font-size: 22px;
    color: #0e2b3d;
    margin-bottom: 10px;
}

.choose-us-area .item p {
    color: #666;
    font-size: 14px;
}

.choose-us-area .item a.btn-more {
    color: var(--primary);
    font-weight: 600;
}

.choose-us-area .item .call {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.choose-us-area .item .call .icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 20px;
    color: var(--primary);
}

.choose-us-area .item .call .info span {
    display: block;
    text-transform: uppercase;
    color: #0e2b3d;
    font-weight: 600;
    font-size: 12px;
}

@media (max-width: 991px) {
    .choose-us-area .items-box {
        margin-top: 30px;
    }
}

/* ===================== Expertise page ===================== */
.expertise-block h3 {
    color: #0e2b3d;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 15px;
}

.expertise-block p {
    color: #666666;
    font-size: 15px;
    line-height: 25px;
}

.expertise-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
    font-size: 14px;
    margin-top: 10px;
}

.expertise-list li i {
    color: var(--primary);
    margin-top: 3px;
}

/* ===================== Team ===================== */
.team-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0, 29, 76, 0.1);
    transform: translateY(-4px);
}

.team-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f7fd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo i {
    font-size: 36px;
    color: var(--primary);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0e2b3d;
    margin-bottom: 6px;
}

.team-card .team-designation {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: #666666;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 15px;
}
