@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --bg-color: #f8fafd;
    --text-main: #0b1a2e;
    --text-body: #64748b;
    --accent-blue: #5a67d8;
    --icon-bg: #edf2f7;
}


body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
    color: #1a1a1a;
}

section {
    padding: 70px 0px !important;
}

/* NAVBAR */
.navbar {
    padding: 5px 0;
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-size: .865rem;
    font-weight: 600;
    cursor: pointer;

}

.nav-link:hover {
    background-color: #dde5f2;
    border-radius: 5px;
}

.last-btn {
    background-color: #05185a;
    color: #fff;
    font-size: .865rem;
    font-weight: 500;
}

/* HERO */
.hero {
    background: #eef2f7;
    padding: 100px 0;
}



.hero h1 span {
    color: #19185a;
}

.hero-p {
    color: #5d646f;
}

.hero-btn {
    background-color: #05185a;
    color: #fff;
}

.hero-btn:hover {
    background-color: #fff;
    color: #05185a;
}

.hero-btn1 {
    background-color: #d9e3f3;
    color: #05185a;
}

.hero-btn1:hover {
    background-color: #fff;
    color: #05185a;
}


.hero-span {
    background-color: #d2d6e3;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 500;
    color: #19185a !important;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}


.hero-img {
    border-radius: 1rem;
    width: 90%;
}



/* SECTIONS */
.section {
    padding: 80px 0;
}



.section-title {
    font-size: 60px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

}

.who-hero-img {
    border-radius: 1rem;
    width: 90%;
}

.bg1 {
    background: #E1E5ED;
    background: linear-gradient(90deg, rgba(225, 229, 237, 1) 0%, rgba(247, 248, 250, 1) 100%);
    border-bottom: #c8d4e4 solid 1px;
}

.img-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* CARDS */
.card {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
    border: #d8dee8 solid 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #e4e5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: #0b2c6b;
    color: white;
    text-align: center;
    padding: 80px 0;

}

.cta h2 {
    font-weight: 700;
    font-family: "Gelasio", serif;
}

/* FOOTER */
footer {
    background: #fff;
    padding: 50px 0;
    font-size: 14px;
}

.who-we-desc p {
    color: #5d646f;
    line-height: 1.65;
    margin-bottom: 30px;
}


.bg3 {
    background-color: #f7f8fa;
    border-bottom: #e7ebf1 solid 1px;
    border-top: #e7ebf1 solid 1px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.bg3-title {
    font-size: 40px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-bottom: 10px;
}

.bg3-sub-title {
    font-size: 20px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-bottom: 10px;
}

.bg3-title-p {
    color: #5d646f;
    text-align: center;
    margin-bottom: 50px;
}

.bg3 i {
    color: #05185a;
    font-size: 25px;
}

.bg4-span {
    background-color: #d2d6e3;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    color: #19185a !important;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.bg4-title {
    font-size: 40px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-bottom: 40px;
}

.cap-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.icon-box-cap {
    width: 40px;
    height: 40px;
    background: #eef1f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1b3a6b;
    margin-bottom: 0px;
}

.cap-text {
    font-weight: 500;
    color: #1c1c1c;
}


.bg5 {
    background-color: #f7f8fa;
    border-bottom: #e7ebf1 solid 1px;
    border-top: #e7ebf1 solid 1px;
    margin-top: 60px;
    margin-bottom: 0px;
}

.bg5-title {
    font-size: 40px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-bottom: 10px;
}

.bg5-title-p {
    color: #5d646f;
    text-align: center;
    margin-bottom: 50px;
    text-align: center;
}

.solution-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.icon-box-solution {
    width: 60px;
    height: 60px;
    background: #eef1f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #1b3a6b;
    transition: 0.3s;
}

/* 🔥 Hover effect (your requirement) */
.solution-card:hover .icon-box-solution {
    background: #0d1b2a;
    color: #fff;
}

.solution-title {
    font-weight: 600;
    font-family: "Gelasio", serif;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #0d1b2a;
}

.solution-title-head {
    font-weight: 600;
    font-family: "Gelasio", serif;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #0d1b2a;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card p {
    color: #4a5a6a;
    font-size: 14px;

}

.solution-card p a {
    color: #4a5a6a;
    font-size: 14px;
    text-decoration: none;

}

.text-primary-solutions {
    color: #05185a !important;
}

.solution-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #4a5a6a;
}

.solution-list i {
    color: #05185a;
    margin-right: 8px;
}

.footer-logo {
    width: 150px;
}

.footer-p {
    font-size: 14px;
    width: 65%;
    color: #5d646f;
    margin-top: 10px;
    line-height: 1.625rem;
}

.footer-links {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-links li {
    padding: 6px 0px;
}

.footer-links li a {
    text-decoration: none;
    color: #5d646f;
}

.footer-address {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-address li {
    padding: 6px 0px;
    display: flex;
}

.footer-address li span {
    margin-left: 13px;
    text-decoration: none;
    color: #5d646f;
}

.footer-address li span a {
    text-decoration: none;
    color: #5d646f;
}

.text-primary-footer {
    color: #5d646f;
}

.company-rights {
    color: #5d646f;
    font-size: 12px;
}

.breadcrumb-bg {
    background: #0b2c6b;
    color: white;
    text-align: center;
}

.breadcrumb-h2 {
    font-family: "Gelasio", serif;
    font-size: 3rem;
}

.breadcrumb-p {
    width: 40%;
    margin: auto;
    margin-top: 20px;
}



/* custom Grid for 5 columns */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: solid 1px #d8dee8;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    /* Default: 5 columns (20% minus gap adjustment) */
    flex: 0 0 calc(20% - 16px);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border: solid 1px #b3b8cd;
}

.icon-container {
    width: 45px;
    height: 45px;
    background-color: #e9edf5;
    color: #05185a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
}

.item-label {
    font-size: 13px;
    font-weight: 600;
    color: #05185a;
    line-height: 1.3;
}

.portfolio-title {
    font-size: 30px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-bottom: 30px;
}

.deliver-title {
    font-size: 30px;
    font-weight: 600;
    font-family: "Gelasio", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Mobile View: 2 Columns */
@media (max-width: 991px) {
    .portfolio-item {
        flex: 0 0 calc(50% - 10px);
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Small Mobile: 1 Column (Optional extra safety) */
@media (max-width: 480px) {
    .portfolio-grid {
        gap: 15px;
    }

    .portfolio-item {
        flex: 0 0 calc(50% - 8px);
        /* Keeping 2 cols as requested */
        padding: 20px 10px;
    }

    .item-label {
        font-size: 0.85rem;
    }
}

.security-section {
    max-width: 1140px;
    margin: 0 auto;
}

/* Heading Style */
.header-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.main-icon-box {
    width: 45px;
    height: 45px;
    background: #e9edf5;
    color: #05185a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    font-size: 2rem;
}

.description {
    color: #5d646f;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 550px;
}

/* List Styling */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item strong {
    font-size: 14px;
    font-weight: 600;
    font-family: "Gelasio", serif;
}

.feature-item small {
    font-size: 12px;
}

.check-icon {
    color: #19185a;
    background: #d2d6e3;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    margin-top: 2px;
}

.feature-content h5 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.feature-content p {
    color: var(--text-body);
    font-size: 0.9rem;
    margin: 0;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .image-column {
        margin-top: 50px;
    }

    .main-title {
        font-size: 1.75rem;
    }
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

/* ICON BOX */
.service-list .icon {
    width: 36px;
    height: 36px;
    background-color: #e9edf5;
    border-radius: 10px;
    position: relative;
    flex-shrink: 0;
}

/* SVG via CSS */
.service-list .icon::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: #0b2a6b;

    /* SVG mask */
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" stroke-width="2" viewBox="0 0 24 24"><path d="M21.801 10A10 10 0 1 1 17 3.335"/><path d="m9 11 3 3L22 4"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" stroke-width="2" viewBox="0 0 24 24"><path d="M21.801 10A10 10 0 1 1 17 3.335"/><path d="m9 11 3 3L22 4"/></svg>') no-repeat center;

    -webkit-mask-size: contain;
    mask-size: contain;
}

.service-list strong {
    display: block;
    font-size: 15px;
    color: #111;
}

.service-list p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.inner-section-bg {
    background-color: #f7f8fa;
    border-bottom: #e7ebf1 solid 1px;
    border-top: #e7ebf1 solid 1px;
    border-top: #e7ebf1 solid 1px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.dark-section {
    background: #0b2a6b;
    color: white;
    text-align: center;
    padding: 60px 0;
}



.order1 {
    order: 1;
}

.order2 {
    order: 2;
}

@media (max-width: 787px) {
    .dflexs {
        display: grid;
    }

    .order1 {
        order: 2;
    }

    .order2 {
        order: 1;
    }


}

.form-section-title {
    font-weight: 700;
    font-size: 32px;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px;
}

textarea {
    resize: none;
}

.btn-primary {
    background-color: #0d1b4c;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
}

.sidebar-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-bg {
    background-color: #eef1f6;
    border: #ccd1da solid 1px;
    font-size: 12px;
}

.sidebar-bg h6 {
    font-size: 14px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #eef1f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}


.client-box {
      border: 1px solid #6c8ebf;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      transition: 0.3s;
    }

    .client-box:hover {
      background: #eef3ff;
    }

    .client-box img {
      max-width: 100%;
      object-fit: contain;
    }

@media (max-width: 787px) {
    section {
        padding: 30px 0px !important;
    }

    .hero-img {
        margin-top: 30px !important;
    }

    .who-we-desc {
        margin-top: 30px;
    }

    .cap-text {
        font-size: 14px;
    }
    .breadcrumb-h2{
        font-size: 2.5rem;
    }
    .breadcrumb-p{
        width: 75%;
    }
}