* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #f8f8f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@media (max-width:768px) {

    .hero,
    .img-gallery,
    .fp-carousel-wrap,
    .hero-banner,
    .wb-section,
    .op-section,
    .tp-section,
    .faq-section,
    .cta-section,
    .fp-section,
    .ct-section {
        overflow-x: hidden;
    }

    .announcement-wrapper,
    .announcement-content,
    .stats-bar,
    .tc-section {
        max-width: 100%;
        overflow-x: hidden;
    }

    .ct-popup,
    .ft-popup {
        max-width: 90vw;
        left: 50%;
        transform: translateX(-50%);
    }

}


/*! Start Announcement Section Bar */

:root {
    --announce-height: 0px;
}

.announcement-bar {
    top: 0;
    width: 100%;
    z-index: 1200;
    display: block;
    overflow: hidden;
    position: sticky;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    /* background: #021463; */
    background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    border-bottom: 1px solid #1a1a1a;
}

.announcement-bar .container,
.announcement-bar>.container {
    gap: 16px;
    display: flex;
    max-width: 1264px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 06px;
    align-items: center;
    justify-content: space-between;
}

.announcement-wrapper {
    flex: 1;
    overflow: hidden;
    padding-right: 24px;
}

.announcement-content {
    gap: 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    -webkit-animation: scroll 20s linear infinite;
}

@keyframes scroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.announcement-icon {
    font-size: 12px;
    color: #f8f8f8;
}

.announcement-text {
    font-size: 13px;
    font-weight: 600;
    color: #f8f8ff;
}

.announcement-link {
    font-size: 13px;
    color: #f8f8f8;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.announcement-link:hover {
    color: #2e9cc7;
}

.partner-btn {
    border: none;
    font-size: 12px;
    cursor: pointer;
    color: #000000;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
}

.partner-btn:hover {
    background-color: #b3b3b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

@media (max-width: 992px) {

    .announcement-bar {
        gap: 12px;
        padding: 20px 18px;
    }

    .announcement-wrapper {
        padding-right: 16px;
    }

    .announcement-text,
    .announcement-link {
        font-size: 12px;
    }

    .partner-btn {
        font-size: 13px;
        padding: 8px 20px;
    }

}

@media (max-width: 640px) {

    .announcement-bar {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .announcement-wrapper {
        width: 100%;
        padding-right: 0;
    }

    .announcement-content {
        gap: 12px;
        animation-duration: 20s;
    }

    .announcement-text,
    .announcement-link {
        font-size: 11px;
    }

    .partner-btn {
        display: none !important;
    }

}

/*! End Announcement Section Bar */


/*! Start Navbar Section Bar */

.navbar {
    top: 58px;
    margin-top: 0;
    z-index: 1100;
    position: sticky;
    background: #f8f8f8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
    margin: auto;
    display: flex;
    max-width: 1300px;
    padding: 16px 20px;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 46px;
}

.nav-menu {
    gap: 36px;
    display: flex;
    align-items: center;
}

.nav-item {
    position: static;
}

.nav-item a {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
    text-decoration: none;
}

.nav-item a::after {
    left: 0;
    width: 0;
    content: "";
    height: 2px;
    bottom: -5px;
    transition: 0.3s;
    position: absolute;
    background: #000000;
}

.nav-item a:hover::after {
    width: 100%;
}

.dropdown-icon {
    margin-left: 4px;
    display: inline-block;
    transition: transform .25s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/*? SERVICES MEGA MENU */

.services-mega {
    left: 50%;
    opacity: 0;
    z-index: 1000;
    width: 1180px;
    transition: .35s;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 20px);
    transform: translateX(-50%) translateY(10px);
}

.nav-item.dropdown:hover .services-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.services-wrapper {
    /* gap: 40px; */
    padding: 40px;
    padding-bottom: 26px;
    display: grid;
    border-radius: 22px;
    background: #f3f4f6;
    grid-template-columns: 2fr 1fr;
}

.services-grid {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-icon {
    width: 38px;
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease;
}

.service-item:hover .service-icon img {
    transform: scale(1.08) translateY(-2px);
}

.service-item {
    gap: 30px;
    display: flex;
    cursor: pointer;
    transition: .25s;
    align-items: flex-start;
}

.service-item .icon {
    font-size: 28px;
}

.service-item h4 {
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #0f2a6b;
    margin-bottom: 6px;
    position: relative;
    align-items: center;
    display: inline-flex;
    transition: transform .3s ease;
}

.service-space {
    margin-bottom: 16px;
}

.service-item h4::before {
    left: 0;
    width: 0;
    content: "";
    height: 2px;
    bottom: -3px;
    position: absolute;
    background: #0f2a6b;
    transition: width .3s ease;
}

.service-item h4::after {
    opacity: 0;
    content: "↗";
    font-size: 14px;
    transition: all .3s ease;
    transform: translateX(-6px);
}

.service-item:hover h4 {
    transform: translateX(4px);
}

.service-item:hover h4::before {
    width: 100%;
}

.service-item:hover h4::after {
    opacity: 1;
    transform: translateX(4px);
}

.service-item p {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    padding-bottom: 10px;
}

.services-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.services-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.services-image img:hover {
    transform: translateY(-8px) scale(1.04);
    filter: brightness(1.05);
}

.services-footer {
    display: flex;
    margin-top: 30px;
    grid-column: 1/-1;
    padding-top: 25px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d6d6d6;
}

.services-footer p {
    color: #111;
    font-size: 18px;
    font-weight: 600;
}

.services-footer a {
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 40px;
    align-items: center;
    display: inline-flex;
    background: #0c2a6d;
    text-decoration: none;
    transition: all .3s ease;
}

.services-footer a::after {
    display: none !important;
}

.services-footer a span {
    transition: transform .3s ease;
}

.services-footer a:hover {
    background: #091e4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(12, 42, 109, 0.25);
}

.services-footer a:hover span {
    transform: translateX(6px);
}

.no-underline {
    text-decoration: none !important;
    border: none !important;
}

.no-underline::before,
.no-underline::after {
    display: none !important;
}

/*? INDUSTRIES MEGA MENU */

.industries-mega {
    left: 50vw;
    opacity: 0;
    z-index: 1000;
    width: 1180px;
    transition: .35s;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 20px);
    transform: translateX(-50%) translateY(10px);
}

.nav-item.dropdown:hover .industries-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);

}

.industries-wrapper {
    padding: 48px;
    padding-bottom: 26px;
    border-radius: 24px;
    background: #f3f4f6;
}

.industries-grid {
    display: grid;
    gap: 40px 60px;
    margin-bottom: 40px;
    grid-template-columns: repeat(3, 1fr);
}

.industry-card {
    gap: 16px;
    display: flex;
    cursor: pointer;
    transition: .25s;
    align-items: flex-start;
}

.industry-card:hover {
    transform: translateY(-4px);
}

.industry-icon {
    width: 38px;
    flex-shrink: 0;
}

.industry-icon img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease;
}

.industry-card:hover .industry-icon img {
    transform: scale(1.08);
}

.industry-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f2a6b;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    transition: transform .3s ease;
}

.industry-text h4::before {
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    bottom: -3px;
    transition: .3s;
    position: absolute;
    background: #0f2a6b;
}

.industry-text h4::after {
    opacity: 0;
    content: "↗";
    transition: .3s;
    font-size: 14px;
    margin-left: 6px;
    transform: translateX(-6px);
}

.industry-card:hover h4 {
    transform: translateX(4px);
}

.industry-card:hover h4::before {
    width: 100%;
}

.industry-card:hover h4::after {
    opacity: 1;
    transform: translateX(4px);
}

.industry-text p {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.industries-footer {
    display: flex;
    margin-top: 30px;
    grid-column: 1/-1;
    padding-top: 25px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d6d6d6;
}

.industries-footer p {
    color: #111;
    font-size: 18px;
    font-weight: 600;
}

.industries-footer a {
    gap: 8px;
    color: #fff;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 40px;
    align-items: center;
    display: inline-flex;
    background: #0c2a6d;
    text-decoration: none;
    transition: all .3s ease;
}

.industries-footer a::after {
    display: none !important;
}

.industries-footer a span {
    transition: transform .3s ease;
}

.industries-footer a:hover {
    background: #091e4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(12, 42, 109, 0.25);
}

.industries-footer a:hover span {
    transform: translateX(6px);
}

/*? HAMBURGER */

.nav-toggle {
    width: 34px;
    height: 34px;
    border: none;
    display: none;
    z-index: 10001;
    cursor: pointer;
    background: none;
    position: relative;
}

.nav-toggle span {
    left: 6px;
    right: 6px;
    height: 2px;
    background: #000;
    position: absolute;
    transition: .3s ease;
}

.nav-toggle span:nth-child(1) {
    top: 9px;
}

.nav-toggle span:nth-child(2) {
    top: 16px;
}

.nav-toggle span:nth-child(3) {
    top: 23px;
}

.nav-toggle.active span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 16px;
    transform: rotate(-45deg);
}

/*? MOBILE SIDEBAR */

.mobile-nav {
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    overflow-y: auto;
    padding: 26px 22px;
    background: linear-gradient(180deg,
            #021463 0%,
            #031a78 45%,
            #021463 100%);

    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 35px rgba(0, 0, 0, .35);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-panel {
    width: 100%;
    display: block;
}

.mobile-nav-list {
    gap: 14px;
    padding: 0;
    display: flex;
    list-style: none;
    margin-top: 70px;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding: 12px 14px;
    align-items: center;
    border-radius: 10px;
    letter-spacing: .3px;
    text-decoration: none;
    transition: all .3s ease;
    justify-content: space-between;
}

.mobile-nav-link::before {
    left: 0;
    top: 50%;
    height: 0;
    width: 3px;
    content: "";
    transition: .3s;
    position: absolute;
    border-radius: 10px;
    background: #4ea1ff;
    transform: translateY(-50%);
}

.mobile-nav-link:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.10);
}

.mobile-nav-link:hover::before {
    height: 60%;
}

.mobile-submenu {
    gap: 10px;
    display: none;
    margin-top: 6px;
    padding-left: 20px;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-submenu li {
    list-style: none;
}

.mobile-submenu a {
    display: block;
    padding: 4px 0;
    font-size: 15px;
    color: #cfd6ff;
    transition: .25s;
    text-decoration: none;
}

.mobile-submenu a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.mobile-dropdown.active .mobile-submenu {
    display: flex;
}

/*? CLOSE BUTTON */

.back-btn {
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
    color: #ffffff;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
}

.back-btn:hover {
    color: #021463;
    background: #ffffff;
    transform: rotate(90deg);
}

/*? SCROLLBAR */

.mobile-nav::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}

@media(max-width:480px) {

    .mobile-nav {
        width: 92%;
        margin-right: -6px;
    }

    .mobile-nav-link {
        font-size: 17px;
    }

    .mobile-submenu a {
        font-size: 14px;
    }

    .nav-container {
        padding: 14px 16px;
    }

    .logo img {
        height: 40px;
    }

}

@media (max-width:768px) {

    .navbar {
        top: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-footer {
        gap: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-footer p {
        font-size: 18px;
    }

}

@media (max-width:900px) {

    .navbar {
        top: 48px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

}

@media (max-width:1100px) {

    .services-mega {
        width: 98%;
    }

    .services-wrapper {
        flex-direction: column;
    }

    .services-image {
        display: none;
    }

}

/*! End Navbar Section Bar */


/*! Start Hero Section Bar */

.hero {
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    height: calc(100vh - 141px);
}

.hero-video {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.hero-overlay {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0.25) 65%,
            rgba(0, 0, 0, 0) 100%);
    position: absolute;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-wrapper {
    z-index: 3;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    color: #f8f8f8;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 span {
    font-weight: 500;
}

.hero-content h1 strong {
    font-weight: 800;
}

.hero-content p {
    font-size: 16px;
    font-weight: 600;
    color: #dcdcdc;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-btn {
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
    color: #f8f8f8;
    align-items: center;
    border-radius: 50px;
    display: inline-flex;
    background: #021463;
    text-decoration: none;
    padding: 6px 6px 6px 22px;
    transition: all .35s ease;
}

.hero-btn .btn-text {
    padding-right: 12px;
}

.hero-btn .btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    font-size: 16px;
    color: #021463;
    border-radius: 50%;
    align-items: center;
    transition: .35s ease;
    background: #f8f8f8;
    justify-content: center;
}

.hero-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-btn:hover .btn-icon {
    transform: rotate(-45deg);
}

.hero-social {
    top: 50%;
    gap: 18px;
    z-index: 5;
    display: flex;
    position: absolute;
    flex-direction: column;
    transform: translateY(-50%);
    right: calc((100% - 1300px)/2 + 20px);
    /* right: calc((100vw - 1300px)/2 + 20px); */
}

.hero-social a {
    width: 48px;
    height: 48px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    background: #f8f8f8;
    justify-content: center;
    transition: all .35s ease;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.hero-social a:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.30);
    transform: translateY(-6px) translateX(-8px) scale(1.08);
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }

}

.hero-social img {
    width: 20px;
    height: auto;
    display: block;
    filter: invert(8%) sepia(91%) saturate(3222%) hue-rotate(222deg);
}

@media (max-width:1024px) {

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-social {
        right: 30px;
    }

}

@media (max-width:768px) {

    .hero {
        min-height: 62vh;
    }

    .hero-wrapper {
        text-align: left;
        align-items: center;
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 80%;
        line-height: 1.6;
    }

    .hero-btn {
        margin: 10px auto 0;
    }

    .hero-social {
        top: 50%;
        gap: 24px;
        right: 20px;
        display: flex;
        position: absolute;
        flex-direction: column;
        transform: translateY(-50%);
    }

}

@media (max-width:480px) {

    .hero {
        min-height: 62vh;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-social {
        margin-top: 18px;
    }

    .hero-social a {
        width: 40px;
        height: 40px;
    }

    .hero-social img {
        width: 18px;
    }

}

/*! End Hero Section Bar */


/*! Start Stats Section Bar */

.container {
    display: flex;
    justify-content: center;
}

.stats-bar {
    gap: 0;
    width: 100%;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 1290px;
    align-items: center;
    background: #f7f7f7;
    padding: 1.25rem 0.2rem;
}

.google-rating {
    gap: 0.6rem;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 0.5rem 1.5rem 0.5rem 0;
}

.google-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.rating-info {
    gap: 2px;
    display: flex;
    flex-direction: column;
}

.rating-score {
    line-height: 1;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-family: 'Syne', sans-serif;
}

.stars {
    gap: 2px;
    display: flex;
}

.star {
    width: 16px;
    height: 16px;
}

.rating-label {
    color: #888;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.divider {
    width: 2px;
    height: 44px;
    flex-shrink: 0;
    margin: 0 1.5rem;
    background: #dad8d8;
}

.stat-item {
    gap: 3px;
    display: flex;
    flex: 1 1 auto;
    min-width: 110px;
    flex-direction: column;
}

.stat-value {
    gap: 10px;
    display: flex;
    line-height: 1;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 1.55rem;
    align-items: baseline;
    font-family: 'Syne', sans-serif;
}

.stat-unit {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    color: #888;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.count-up {
    display: inline-block;
}

@media (max-width:700px) {

    .stats-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 14px 0 px;
        margin: 6px;
        scroll-behavior: smooth;
    }

    .stats-bar::-webkit-scrollbar {
        display: none;
    }

    .google-rating,
    .stat-item {
        flex: 0 0 auto;
    }

    .stat-value,
    .stat-label,
    .stat-unit,
    .rating-label {
        white-space: nowrap;
    }

}

/*! End Stats Section Bar */


/*! Start Services Section Bar */

.services-section {
    color: #ffffff;
    padding: 40px 0 100px;
    padding-bottom: 40px;
    background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    font-family: 'Epilogue', sans-serif;
}

.services-section .srv-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 0.6rem;
    box-sizing: border-box;
}

.services-section .srv-header {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.services-section .srv-title {
    margin: 0;
    font-weight: 700;
    color: #f8f8f8;
    line-height: 1.1;
    font-size: clamp(2rem, 4vw, 3rem);
}

.services-section .srv-explore-btn {
    gap: 10px;
    border: none;
    flex-shrink: 0;
    cursor: pointer;
    color: #0a0e1a;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    white-space: nowrap;
    background: #ffffff;
    text-decoration: none;
    padding: 0.65rem 0.75rem 0.65rem 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.services-section .srv-explore-btn .srv-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    color: white;
    flex-shrink: 0;
    font-size: 1rem;
    align-items: center;
    border-radius: 50%;
    background: #1a237e;
    justify-content: center;
    transition: background 0.2s;
}

.services-section .srv-explore-btn {
    transition: all 0.3s ease;
}

.services-section .srv-explore-btn:hover {
    color: #ffffff;
    background: #2642c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(38, 66, 199, 0.35);
}

.services-section .srv-explore-btn .srv-arrow {
    transition: all 0.3s ease;
}

.services-section .srv-explore-btn:hover .srv-arrow {
    background: #0a0e1a;
    transform: translateX(3px);
}

.services-section .srv-desc {
    max-width: 900px;
    font-weight: 700;
    color: #c8cde8;
    line-height: 1.75;
    margin: 0 0 52px 0;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
}

.services-section .srv-grid {
    gap: 20px;
    width: 100%;
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(4, 1fr);
}

.services-section .srv-card {
    gap: 1rem;
    opacity: 0;
    min-width: 0;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    flex-direction: column;
    box-sizing: border-box;
    transform: translateY(70px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);

}

.services-section .srv-card:nth-child(1) {
    transition-delay: 0s;
}

.services-section .srv-card:nth-child(2) {
    transition-delay: 0.12s;
}

.services-section .srv-card:nth-child(3) {
    transition-delay: 0.24s;
}

.services-section .srv-card:nth-child(4) {
    transition-delay: 0.36s;
}

.services-section .srv-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-section .srv-card:hover {
    transform: translateY(-6px) !important;
    box-shadow:
        0 24px 60px rgba(26, 35, 126, 0.45),
        0 0 40px rgba(6, 11, 33, 0.6);
    transition: all 0.35s ease;
}

.services-section .srv-card--dark {
    background: linear-gradient(145deg, #1e2fa8 0%, #1a237e 60%, #151d6b 100%);
}

.services-section .srv-card--light {
    background: #f8f8f8;
}

.services-section .srv-icon {
    width: 52px;
    height: 52px;
    display: flex;
    flex-shrink: 0;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
}

.services-section .srv-card--dark .srv-icon {
    background: rgba(255, 255, 255, 0.15);
}

.services-section .srv-card--light .srv-icon {
    background: #2642c7;
}

.services-section .srv-icon svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
}

.services-section .srv-card-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
    font-size: 1.15rem;
}

.services-section .srv-card--dark .srv-card-title {
    color: #ffffff;
}

.services-section .srv-card--light .srv-card-title {
    color: #2642c7;
}

.services-section .srv-card-body {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 700;
}

.services-section .srv-card--dark .srv-card-body {
    color: rgba(255, 255, 255, 0.78);
}

.services-section .srv-card--light .srv-card-body {
    color: #4a5080;
}

@media (max-width: 1024px) {

    .services-section .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section .srv-card:nth-child(3) {
        transition-delay: 0.12s;
    }

    .services-section .srv-card:nth-child(4) {
        transition-delay: 0.24s;
    }

}

@media (max-width: 600px) {

    .services-section .srv-container {
        padding: 0 20px;
    }

    .services-section .srv-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-section .srv-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .services-section .srv-card:nth-child(n) {
        transition-delay: 0s;
    }

}

/*! End Services Section Bar */


/*! Start Tc Section Bar */

.tc-section {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    background: #f8f8f8;
    box-sizing: border-box;
    font-family: 'Epilogue', sans-serif;
}

.tc-section *,
.tc-section *::before,
.tc-section *::after {
    box-sizing: border-box;
}

.tc-section::before {
    top: 50%;
    content: '';
    left: -80px;
    width: 280px;
    opacity: 0.6;
    height: 280px;
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
    border: 40px solid #f0f0f0;
}

.tc-section::after {
    top: 40%;
    content: '';
    right: -60px;
    opacity: 0.5;
    width: 200px;
    height: 200px;
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 30px solid #f0f0f0;
}

.tc-wrap {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1280px;
}

.tc-heading-area {
    text-align: center;
    margin-bottom: 60px;
}

.tc-title {
    font-weight: 800;
    color: #0d1535;
    line-height: 1.15;
    margin: 0 0 16px 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.tc-subtitle {
    margin: 0;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.tc-partners {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(4, 1fr);
}

.tc-partner {
    display: flex;
    position: relative;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 30px 28px;
}

.tc-partner:not(:last-child)::after {
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    content: '';
    position: absolute;
    background: #d1d5db;
}

.tc-logo-box {
    height: 80px;
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
}

.tc-logo-box img {
    width: auto;
    max-height: 70px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.tc-partner:hover .tc-logo-box img {
    filter: grayscale(0%);
}

.tc-partner-name {
    font-weight: 700;
    color: #0d1535;
    line-height: 1.2;
    margin: 0 0 6px 0;
    font-size: 1.05rem;
}

.tc-partner-type {
    margin: 0;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.4;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .tc-partners {
        gap: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-partner:not(:last-child)::after {
        display: none;
    }

    .tc-partner {
        padding: 24px 16px;
        border-bottom: 1px solid #e5e7eb;
    }

    .tc-partner {
        padding: 20px 10px;
    }

    .tc-partner img {
        width: 60px;
        height: auto;
        margin-bottom: 8px;
    }

    .tc-partner:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }

    .tc-partner:nth-last-child(-n+2) {
        border-bottom: none;
    }

}

@media (max-width: 480px) {

    .tc-partners {
        gap: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-partner {
        padding: 20px 12px;
    }

    .tc-partner:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }

    .tc-partner:nth-last-child(-n+2) {
        border-bottom: none;
    }

}

/*! End Tc Section Bar */

/*! Start Img Slide Section Bar */

.img-slide {
    background-color: #f7f7f7;
}

.img-gallery {
    gap: 6px;
    width: 100%;
    display: flex;
    height: 380px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
    max-width: 1320px;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

.img-gallery *,
.img-gallery *::before,
.img-gallery *::after {
    box-sizing: border-box;
}

.img-gallery .ig-panel {
    flex: 1;
    min-width: 60px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    transition: flex 0.6s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.img-gallery .ig-panel.active {
    flex: 5;
}

.img-gallery .ig-panel .ig-bg {
    inset: 0;
    position: absolute;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.img-gallery .ig-panel:hover .ig-bg {
    transform: scale(1.04);
}

.img-gallery .ig-panel .ig-overlay {
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 45%, transparent 100%);
}

.img-gallery .ig-panel.active .ig-overlay {
    opacity: 1;
}

.img-gallery .ig-panel .ig-label {
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    color: #ffffff;
    position: absolute;
    padding: 24px 22px;
    pointer-events: none;
    transform: translateY(24px);
    transition: transform 0.55s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.4s ease;
}

.img-gallery .ig-panel.active .ig-label {
    opacity: 1;
    transform: translateY(0);
}

.img-gallery .ig-label .ig-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.img-gallery .ig-label .ig-desc {
    margin: 0;
    max-width: 320px;
    line-height: 1.6;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {

    .img-gallery {
        gap: 6px;
        height: auto;
        padding: 0 1rem;
        flex-direction: column;
    }

    .img-gallery .ig-panel {
        flex: none;
        height: 80px;
        min-width: unset;
        border-radius: 12px;
        transition: height 0.6s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

    .img-gallery .ig-panel.active {
        flex: none;
        height: 340px;
    }

}

/*! End Img Slide Section Bar */


/*! Start Hero Banner Section Bar */

.hero-banner {
    gap: 0;
    width: 100%;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1260px;
    min-height: 280px;
    position: relative;
    border-radius: 20px;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 2px 50px 0 50px;
    justify-content: space-between;
    background: linear-gradient(105deg, #0a0545 0%, #1212a0 40%, #0d0969 64%, #0a0545 100%);
}

.hero-banner *,
.hero-banner *::before,
.hero-banner *::after {
    box-sizing: border-box;
}

.hero-banner::before {
    inset: 0;
    content: "";
    position: absolute;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 0;
}

.hero-banner::after {
    top: 0;
    left: 58%;
    bottom: 0;
    z-index: 1;
    width: 1px;
    content: "";
    position: absolute;
}

.hb-left {
    flex: 1;
    z-index: 1;
    min-width: 0;
    display: flex;
    position: relative;
    padding-right: 40px;
    padding-bottom: 44px;
    flex-direction: column;
    justify-content: center;
}

.hb-eyebrow {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 24px 0;
    padding-bottom: 56px;
    font-family: inherit;
    letter-spacing: 0.03em;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: rgba(255, 255, 255, 0.65);
}

.hb-heading {
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 20px 0;
    font-family: inherit;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.hb-heading .hb-green {
    color: #00e676;
    font-weight: 800;
}

.hb-heading .hb-blue-light {
    color: #ffffff;
}

.hb-desc {
    margin: 0;
    font-weight: 700;
    max-width: 620px;
    line-height: 1.65;
    font-family: inherit;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    color: rgba(255, 255, 255, 0.911);
}

.hb-right {
    z-index: 1;
    display: flex;
    flex: 0 0 auto;
    padding-left: 20px;
    position: relative;
    margin-right: -60px;
    align-items: flex-start;
    justify-content: flex-end;
    background-color: #0a0545;
}

.hb-right img {
    display: block;
    position: relative;
    object-fit: contain;
    margin-bottom: -4px;
    width: clamp(260px, 34vw, 480px);
}

.hb-right::before {
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    content: '';
    width: 80px;
    position: absolute;
    pointer-events: none;
    background: linear-gradient(to right, #0d0a70, transparent);
}

@media (max-width:768px) {

    .hero-banner {
        gap: 0;
        border-radius: 0;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        background: linear-gradient(180deg,
                #0a0545 0%, #1212a0 40%, #0d0969 64%, #0a0545 100%);
        padding: 36px 20px 0 20px;
    }

    .hb-left {
        padding: 0 0 28px 10px;
    }

    .hb-right {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: flex-end;
        background: transparent;
        justify-content: center;
    }

    .hb-right img {
        display: none;
    }

}

@media (max-width:480px) {

    .hero-banner {
        padding: 28px 16px 0 16px;
    }

    .hb-heading {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hb-desc {
        font-size: 14px;
    }

    .hb-right {
        justify-content: center;
    }

    .hb-right img {
        width: 420px;
        display: none;
    }

}

/*! End Hero Banner Section Bar */


/*! Start Wb Section Bar */

.wb-section {
    margin-bottom: 20px;
}

.wb-wrap {
    gap: 160px;
    margin: auto;
    display: flex;
    padding: 70px 24px 30px 24px;
    max-width: 1270px;
    align-items: center;
}

.wb-collage {
    gap: 18px;
    width: 400px;
    display: flex;
    position: relative;
}

.wb-collage::before {
    top: -16px;
    left: -16px;
    width: 120px;
    content: "";
    height: 120px;
    position: absolute;
    border-radius: 6px;
    border-top: 3px solid #1a237e;
    border-left: 3px solid #1a237e;
}

.wb-collage::after {
    content: "";
    right: -16px;
    width: 120px;
    bottom: -16px;
    height: 120px;
    position: absolute;
    border-radius: 6px;
    border-right: 3px solid #2642c7;
    border-bottom: 3px solid #2642c7;
}

.wb-col-left {
    flex: 1;
}

.wb-img-tall {
    width: 100%;
    height: 504px;
    object-fit: cover;
    border-radius: 12px;
}

.wb-col-right {
    flex: 1;
    gap: 16px;
    display: flex;
    padding-top: 1px;
    flex-direction: column;
}

.wb-stat-card {
    padding: 48px 20px;
    text-align: center;
    border-radius: 16px;
    background: #d8d8d8;
}

.wb-stat-number {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    color: #0d1535;
}

.wb-stat-label {
    font-size: .9rem;
    font-weight: 700;
    color: #6b7280;
}

.wb-img-sq {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 16px;
}

.wb-content {
    flex: 1;
}

.wb-eyebrow {
    font-size: .9rem;
    color: #2642c7;
    font-weight: 600;
    margin-bottom: 22px;
    display: inline-block;
    text-decoration: none;
    border-bottom: 2px solid #2642c7;
}

.wb-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #0d1535;
    line-height: 1.2;
    margin-bottom: 10px;
}

.wb-accent {
    color: #1a237e;
}

.wb-desc {
    font-size: 1rem;
    font-weight: 700;
    color: #4b5563;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 30px;
}

.wb-list {
    gap: 14px;
    padding: 0;
    display: flex;
    list-style: none;
    margin: 0 0 34px;
    flex-direction: column;
}

.wb-list li {
    gap: 10px;
    display: flex;
    font-weight: 600;
    color: #111827;
    font-size: .85rem;
}

.wb-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: #2642c7;
}

@media (max-width:768px) {

    .wb-wrap {
        gap: 50px;
        margin-left: 10px;
        margin-right: 10px;
        flex-direction: column;
    }

    .wb-collage {
        gap: 14px;
        width: 100%;
        margin: auto;
        display: grid;
        max-width: 420px;
        align-items: stretch;
        grid-template-columns: 1fr 1fr;
    }

    .wb-col-left {
        grid-row: span 2;
    }

    .wb-col-right {
        gap: 14px;
        display: flex;
        flex-direction: column;
    }

    .wb-img-tall {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .wb-img-sq {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .wb-stat-card {
        height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .wb-content {
        max-width: 100%;
    }

    .wb-heading {
        font-size: 32px;
    }

    .wb-desc {
        font-size: 14px;
    }

}

@media(max-width:480px) {

    .wb-heading {
        font-size: 28px;
        line-height: 1.25;
    }

    .wb-desc {
        font-size: 13px;
    }

    .wb-list li {
        font-size: 14px;
    }

    .wb-btn {
        font-size: 14px;
    }

}

/*! End Wb Section Bar */


/*! Start Op Section Bar */

.op-section {
    padding: 60px 0 0;
    padding-bottom: 30px;
    box-sizing: border-box;
    font-family: 'Epilogue', sans-serif;
    background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
}

.op-section *,
.op-section *::before,
.op-section *::after {
    box-sizing: border-box;
}

.op-wrap {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1290px;
}

.op-header {
    display: flex;
    margin-bottom: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.op-title {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    font-size: clamp(2rem, 4vw, 3rem);
}

.op-explore-btn {
    gap: 10px;
    border: none;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 8px;
    font-weight: 600;
    color: #0a0e1a;
    font-size: 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    text-decoration: none;
    padding: 0.65rem 0.75rem 0.65rem 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.op-explore-btn:hover {
    color: #ffffff;
    background: #2642c7;
    transform: translateY(-2px);
}

.op-explore-btn .op-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    flex-shrink: 0;
    color: white;
    font-size: 1rem;
    align-items: center;
    border-radius: 50%;
    background: #1a237e;
    justify-content: center;
    transition: background 0.2s;
}

.op-explore-btn:hover .op-arrow {
    background: #0a0e1a;
}

.op-desc {
    max-width: 1000px;
    line-height: 1.75;
    margin: 0 0 48px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
}

.op-grid-outer {
    gap: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.op-card {
    flex: 1;
    opacity: 1;
    display: flex;
    margin-left: -1px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    background: transparent;
    padding: 76px 20px 68px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.op-card:nth-child(1) {
    margin-top: 0px;
    transform: translateY(0px);
}

.op-card:nth-child(2) {
    margin-top: 80px;
    transform: translateY(0px);
}

.op-card:nth-child(3) {
    margin-top: 160px;
    transform: translateY(0px);
}

.op-card:nth-child(4) {
    margin-top: 240px;
    transform: translateY(0px);
}

.op-card.op-visible {
    margin-top: 0 !important;
    transform: translateY(0) !important;
    transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        margin-top 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.op-number {
    line-height: 1;
    font-weight: 800;
    user-select: none;
    margin: 0 0 36px 0;
    color: transparent;
    letter-spacing: -2px;
    font-family: 'Epilogue', sans-serif;
    font-size: clamp(4rem, 7.5vw, 7rem);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
}

.op-step-title {
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    font-size: 0.95rem;
    margin: 0 0 14px 0;
}

.op-step-body {
    margin: 0;
    line-height: 1.75;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {

    .op-grid-outer {
        display: grid;
        align-items: start;
        grid-template-columns: repeat(2, 1fr);
    }

    .op-card {
        margin-left: 0;
        margin-top: 0 !important;
        transform: translateY(70px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .op-card:nth-child(2) {
        margin-left: -1px;
    }

    .op-card:nth-child(3) {
        margin-top: -1px !important;
    }

    .op-card:nth-child(4) {
        margin-left: -1px;
        margin-top: -1px !important;
    }
}

@media (max-width: 560px) {

    .op-grid-outer {
        grid-template-columns: 1fr;
    }

    .op-header {
        gap: 1.25rem;
        flex-direction: column;
    }

    .op-card {
        margin-left: 0 !important;
        margin-top: -1px !important;
    }

    .op-card:first-child {
        margin-top: 0 !important;
    }
}

/*! End Op Section Bar */


/*! Start Tp Section Bar */

.tp-section {
    padding: 49px 0;
    box-sizing: border-box;
    font-family: 'Epilogue', sans-serif;
}

.tp-section *,
.tp-section *::before,
.tp-section *::after {
    box-sizing: border-box;
}

.tp-wrap {
    margin: 0 auto;
    max-width: 1250px;
}

.tp-heading-area {
    text-align: center;
    margin-bottom: 48px;
}

.tp-title {
    font-weight: 800;
    color: #0d1535;
    line-height: 1.15;
    margin: 0 0 12px 0;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.tp-subtitle {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.tp-layout {
    gap: 0;
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    align-items: stretch;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.tp-sidebar {
    width: 240px;
    display: flex;
    flex-shrink: 0;
    padding: 16px 0;
    flex-direction: column;
    /* background: linear-gradient(175deg, #1a237e 0%, #1e3cbe 50%, #2642d4 100%); */
     background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
}

.tp-tabs {
    overflow: hidden;
    border-radius: 12px;
}

.tp-tab-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    font-size: 0.95rem;
    padding: 16px 24px;
    margin-bottom: 14px;
    background: transparent;
    transition: all .3s ease;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Epilogue', sans-serif;
}

.tp-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.tp-tab-btn.tp-active {
    color: #1a237e;
    font-weight: 700;
    background: #ffffff;
}

.tp-content {
    flex: 1;
    min-height: unset;
    padding: 28px 28px;
    background: #e8eef8;
}

.tp-panel {
    display: none;
}

.tp-panel.tp-panel-active {
    display: block;
}

.tp-panel-title {
    font-weight: 700;
    color: #0d1535;
    font-size: 1.5rem;
    margin: 0 0 24px 0;
}

.tp-grid {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tp-card {
    gap: 10px;
    display: flex;
    cursor: default;
    text-align: center;
    align-items: center;
    border-radius: 14px;
    background: #ffffff;
    flex-direction: column;
    padding: 18px 14px 16px;
    transition: box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 2px 12px rgba(26, 35, 126, 0.07);
}

.tp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 35, 126, 0.15);
}

.tp-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    overflow: hidden;
    align-items: center;
    border-radius: 12px;
    justify-content: center;
}

.tp-card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.tp-card-name {
    margin: 0;
    font-weight: 700;
    color: #0d1535;
    font-size: 0.9rem;
}

.tp-card-desc {
    margin: 0;
    line-height: 1.5;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75rem;
}

@media (max-width: 768px) {

    .tp-section {
        margin: 0 16px;
    }

    .tp-layout {
        border-radius: 12px;
        flex-direction: column;
    }

    .tp-sidebar {
        gap: 4px;
        width: 100%;
        padding: 8px;
        flex-direction: column;
    }

    .tp-tab-btn {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        text-align: center;
        font-size: 0.9rem;
    }

    .tp-tab-btn.tp-active {
        margin: 0;
        width: 100%;
        border-radius: 8px;
    }

    .tp-content {
        padding: 20px 16px;
    }

    .tp-grid {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-panel-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {

    .tp-grid {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-card {
        padding: 18px 10px 14px;
    }

    .tp-card-icon img {
        width: 30px;
        height: 30px;
    }

    .tp-card-name {
        font-size: 0.8rem;
    }

    .tp-card-desc {
        font-size: 0.7rem;
    }
}

/*! End Tp Section Bar */


/*! Start Faq Section Bar */

.faq-section {
    padding: 40px 0;
    font-family: 'Epilogue', sans-serif;
}

.faq-section *,
.faq-section *::before,
.faq-section *::after {
    box-sizing: border-box;
}

.faq-wrap {
    gap: 60px;
    display: flex;
    margin: 0 auto;
    max-width: 1260px;
    align-items: flex-start;
}

.faq-img-box {
    height: 490px;
    flex: 0 0 420px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.faq-img {
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 10px;
    transition: opacity 0.5s ease, transform 0.6s ease, filter 0.6s ease;
}

.faq-img.faq-img-active {
    opacity: 1;
}

.faq-img.faq-img-active:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.faq-right {
    flex: 1;
    min-width: 0;
}

.faq-eyebrow {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 14px 0 16px 0;
}

.faq-title {
    font-weight: 800;
    color: #0d1535;
    line-height: 1.2;
    margin: 0 0 14px 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.faq-subtitle {
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
    font-size: 0.8rem;
    margin: 0 0 32px 0;
}

.faq-list {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.faq-item {
    overflow: hidden;
    border-radius: 10px;
    border: 1.5px solid #b7c3da;
    transition: border-color 0.25s;
}

.faq-item.faq-open {
    border-color: #2642c7;
}

.faq-question {
    gap: 16px;
    width: 100%;
    border: none;
    display: flex;
    cursor: pointer;
    text-align: left;
    padding: 14px 20px;
    align-items: center;
    background: transparent;
    transition: background 0.2s;
    justify-content: space-between;
    font-family: 'Epilogue', sans-serif;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-q-text {
    font-weight: 600;
    color: #0d1535;
    line-height: 1.4;
    font-size: 0.92rem;
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    line-height: 1;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #6b7280;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d1d5db;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.35s;
}

.faq-item.faq-open .faq-icon {
    color: #f8f8f8;
    background: #2642c7;
    border-color: #2642c7;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.faq-open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    margin: 0;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.75;
    font-size: 0.875rem;
}

@media (max-width: 900px) {

    .faq-wrap {
        gap: 32px;
        flex-direction: column-reverse;
    }

    .faq-img-box {
        flex: none;
        width: 100%;
        height: 320px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {

    .faq-section {
        margin: 0 10px;
        padding: 28px 0;
    }

    .faq-wrap {
        gap: 24px;
        padding: 0 1.25rem;
        flex-direction: column-reverse;
    }

    .faq-img-box {
        height: 240px;
        border-radius: 10px;
    }

    .faq-eyebrow {
        font-size: 0.78rem;
    }

    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .faq-subtitle {
        font-size: 0.82rem;
        margin-bottom: 20px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-q-text {
        font-weight: 600;
        font-size: 0.85rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        font-size: 1rem;
    }

    .faq-item.faq-open .faq-answer {
        padding: 0 16px 14px;
    }

    .faq-answer p {
        font-size: 0.82rem;
    }
}

/*! End Faq Section Bar */


/*! Start Cta Section Bar */

.cta-section {
    padding: 40px 0;
}

.cta-section *,
.cta-section *::before,
.cta-section *::after {
    box-sizing: border-box;
}

.cta-wrap {
    margin: 0 auto;
    max-width: 1256px;
}

.cta-banner {
    display: flex;
    overflow: hidden;
    min-height: 200px;
    border-radius: 18px;
    align-items: stretch;
}

.cta-left {
    flex: 1;
    gap: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 42px 48px;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(120deg, rgba(6, 12, 40, 0.96) 0%, rgba(14, 24, 90, 0.95) 55%, rgba(18, 30, 110, 0.94) 100%),
        url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-left::before {
    inset: 0;
    content: "";
    position: absolute;
    pointer-events: none;
    background-size: 40px 40px;
}

.cta-left::after {
    inset: 0;
    content: "";
    opacity: 0.35;
    position: absolute;
    pointer-events: none;
    background-size: cover;
    background-position: left;
    background: url("images/cta-banners.png");
}

.cta-heading {
    margin: 0;
    z-index: 1;
    font-weight: 500;
    color: #f8f8f8;
    line-height: 1.35;
    position: relative;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.cta-heading strong {
    font-weight: 800;
}

.cta-desc {
    margin: 0;
    z-index: 1;
    line-height: 1.7;
    max-width: 440px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.82rem, 1.1vw, 0.92rem);
}

.cta-btn {
    gap: 12px;
    z-index: 1;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    position: relative;
    align-items: center;
    border-radius: 50px;
    display: inline-flex;
    text-decoration: none;
    align-self: flex-start;
    background: transparent;
    font-family: 'Epilogue', sans-serif;
    padding: 0.7rem 0.8rem 0.7rem 1.6rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.cta-btn:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.cta-btn .cta-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    flex-shrink: 0;
    font-size: 1rem;
    border-radius: 50%;
    align-items: center;
    background: #2642c7;
    justify-content: center;
    transition: background 0.25s;
}

.cta-btn:hover .cta-arrow {
    color: #0d1535;
    background: #ffffff;
}

.cta-right {
    flex: 0 0 45%;
    overflow: hidden;
    position: relative;
    background: #060d2e;
}

.cta-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {

    .cta-banner {
        border-radius: 0;
        flex-direction: column;
    }

    .cta-wrap {
        padding: 0;
    }

    .cta-left {
        padding: 40px 32px;
    }

    .cta-right {
        flex: none;
        width: 100%;
        height: 360px;
    }
}

@media (max-width: 560px) {

    .cta-section {
        padding: 40px 0 0px 0;
    }

    .cta-wrap {
        padding: 0;
    }

    .cta-banner {
        border-radius: 0;
    }

    .cta-left {
        gap: 16px;
        padding: 32px 24px;
    }

    .cta-right {
        height: 300px;
    }

    .cta-btn {
        font-size: 0.85rem;
        padding: 0.65rem 0.7rem 0.65rem 1.3rem;
    }
}

/*! End Cta Section Bar */


/*! Start Fp Section Bar */

.fp-section {
    padding: 60px 0;
    font-family: 'Epilogue', sans-serif;
    background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
}

.fp-section *,
.fp-section *::before,
.fp-section *::after {
    box-sizing: border-box;
}

.fp-wrap {
    margin: 0 auto;
    /* padding: 0 1rem; */
    max-width: 1330px;
}

.fp-heading-area {
    text-align: center;
    margin-bottom: 56px;
}

.fp-title {
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 12px 0;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.fp-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.fp-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 100px;
    overflow: visible;
}

.fp-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.fp-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: default;
    flex-shrink: 0;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fp-card.side {
    width: 260px;
    height: 190px;
    opacity: 0.85;
    filter: brightness(0.7) saturate(0.8);
    transform: scale(0.92);
    background: #1e2a4a;
    border: 1px solid rgba(100, 140, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.fp-card.side::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(8, 12, 32, 0.9) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 14px 14px;
    z-index: 1;
}

.fp-card.center {
    width: 420px;
    height: 300px;
    opacity: 1;
    filter: brightness(1) saturate(1.1);
    transform: scale(1);
    background: #1e2a4a;
    border: 1.5px solid rgba(100, 140, 255, 0.6);
    /* box-shadow:
        0 0 0 1px rgba(100, 140, 255, 0.15),
        0 20px 60px rgba(80, 120, 255, 0.25),
        0 0 80px rgba(60, 100, 200, 0.15); */
    z-index: 2;
    cursor: pointer;
}

.fp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.fp-card.center:hover img {
    transform: scale(1.04);
}

.fp-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 13, 31, 0.55);
    border-radius: 14px;
    transition: opacity 0.35s ease;
    pointer-events: none;
    -webkit-transition: opacity 0.35s ease;
    -moz-transition: opacity 0.35s ease;
    -ms-transition: opacity 0.35s ease;
    -o-transition: opacity 0.35s ease;
}

.fp-card.center:hover .fp-card-overlay {
    opacity: 1;
    pointer-events: all;
}

.fp-card.side .fp-card-overlay {
    display: none;
}

.fp-card-overlay-btn {
    font-family: 'Epilogue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a0c4ff;
    border: 1px solid rgba(100, 140, 255, 0.75);
    background: rgba(10, 15, 50, 0.8);
    padding: 11px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transform: translateY(8px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.25s ease,
        color 0.25s ease;
}

.fp-card.center:hover .fp-card-overlay-btn {
    transform: translateY(0);
}

.fp-card-overlay-btn:hover {
    background: rgba(100, 140, 255, 0.25);
    color: #ffffff;
}

.fp-card-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Epilogue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(100, 180, 255, 0.9);
    letter-spacing: 0.12em;
    background: rgba(10, 15, 50, 0.75);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(100, 140, 255, 0.4);
    pointer-events: none;
    z-index: 5;
    line-height: 1;
}

.fp-card.side .fp-card-num {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 12px;
    font-size: 30px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
    z-index: 3;
}

.fp-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 18px 16px;
    background: linear-gradient(to top, rgba(8, 12, 32, 0.97) 0%, rgba(8, 12, 32, 0.45) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.fp-card.center .fp-card-label {
    opacity: 1;
}

.fp-card.side .fp-card-label {
    display: none;
}

.fp-card-tag {
    font-size: 9px;
    color: #7a9fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.fp-card-name {
    font-family: 'Georgia', serif;
    font-size: 17px;
    color: #dce8ff;
    font-style: italic;
    white-space: nowrap;
}

.fp-dot-accent {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6488ff;
    margin-bottom: 2px;
    flex-shrink: 0;
}

.fp-c {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.fp-card.center .fp-c {
    opacity: 1;
}

.fp-c-tl {
    top: 10px;
    left: 10px;
    border-top: 1.5px solid rgba(100, 140, 255, 0.9);
    border-left: 1.5px solid rgba(100, 140, 255, 0.9);
}

.fp-c-tr {
    top: 10px;
    right: 10px;
    border-top: 1.5px solid rgba(100, 140, 255, 0.9);
    border-right: 1.5px solid rgba(100, 140, 255, 0.9);
}

.fp-c-bl {
    bottom: 10px;
    left: 10px;
    border-bottom: 1.5px solid rgba(100, 140, 255, 0.9);
    border-left: 1.5px solid rgba(100, 140, 255, 0.9);
}

.fp-c-br {
    bottom: 10px;
    right: 10px;
    border-bottom: 1.5px solid rgba(100, 140, 255, 0.9);
    border-right: 1.5px solid rgba(100, 140, 255, 0.9);
}

.fp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(100, 140, 255, 0.45);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    z-index: 10;
    user-select: none;
}

.fp-nav:hover {
    background: rgba(100, 140, 255, 0.18);
    border-color: rgba(100, 140, 255, 0.9);
    transform: translateY(-50%) scale(1.08);
}

.fp-nav-prev {
    left: 40px;
}

.fp-nav-next {
    right: 40px;
}

.fp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.fp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
    padding: 0;
}

.fp-dot.active {
    background: #6488ff;
    transform: scale(1.35);
}

.fp-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-card.slide-in-left {
    animation: fpSlideInLeft 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fp-card.slide-in-right {
    animation: fpSlideInRight 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fp-card.slide-out-left {
    animation: fpSlideOutLeft 0.3s ease forwards;
}

.fp-card.slide-out-right {
    animation: fpSlideOutRight 0.3s ease forwards;
}

@keyframes fpSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fpSlideInRight {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fpSlideOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translateX(-40px);
    }
}

@keyframes fpSlideOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

.fp-lightbox {
    inset: 0;
    gap: 12px;
    opacity: 0;
    display: flex;
    z-index: 9999;
    position: fixed;
    overflow-y: auto;
    visibility: hidden;
    align-items: center;
    flex-direction: column;
    padding: 60px 40px 40px;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.88);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fp-lightbox.fp-lb-open {
    opacity: 1;
    visibility: visible;
}

.fp-lb-title {
    margin: 0;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.04em;
    font-family: 'Epilogue', sans-serif;
}

.fp-lightbox img {
    height: auto;
    display: block;
    border-radius: 12px;
    transform: scale(0.95);
    width: min(1100px, 92vw);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fp-lightbox.fp-lb-open img {
    transform: scale(1);
}

.fp-lb-close {
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    display: flex;
    z-index: 10000;
    position: fixed;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.2rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    background: rgba(255, 255, 255, 0.15);
    font-family: 'Epilogue', sans-serif;
}

.fp-lb-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {

    .fp-carousel-wrap {
        padding: 20px 70px;
    }

    .fp-nav-prev {
        left: 16px;
    }

    .fp-nav-next {
        right: 16px;
    }

    .fp-card.center {
        width: 360px;
        height: 260px;
    }

    .fp-card.side {
        width: 190px;
        height: 140px;
    }

}

@media (max-width: 768px) {

    .fp-carousel-wrap {
        padding: 20px 56px;
    }

    .fp-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .fp-nav-prev {
        left: 6px;
    }

    .fp-nav-next {
        right: 6px;
    }

    .fp-card.center {
        width: 270px;
        height: 200px;
    }

    .fp-card.side {
        width: 130px;
        height: 100px;
    }

    .fp-card.side .fp-card-num {
        font-size: 24px;
    }

    .fp-card-name {
        font-size: 14px;
    }

    .fp-card-overlay-btn {
        font-size: 10px;
        padding: 9px 20px;
    }

}

@media (max-width: 480px) {

    .fp-section {
        padding: 40px 0;
    }

    .fp-carousel-wrap {
        padding: 20px 44px;
    }

    .fp-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .fp-nav-prev {
        left: 2px;
    }

    .fp-nav-next {
        right: 2px;
    }

    .fp-card.center {
        width: 210px;
        height: 160px;
    }

    .fp-card.side {
        width: 85px;
        height: 70px;
    }

    .fp-card.side .fp-card-num {
        font-size: 20px;
    }

    .fp-card-tag {
        display: none;
    }

    .fp-card-name {
        font-size: 13px;
    }

    .fp-card-overlay-btn {
        font-size: 9px;
        padding: 8px 16px;
        letter-spacing: 0.12em;
    }

    .fp-heading-area {
        margin-bottom: 36px;
    }

}

/*! End Fp Section Bar */


/*! Start Ct Section Bar */

.ct-section {
    padding: 48px 0;
    font-family: 'Epilogue', sans-serif;
}

.ct-section *,
.ct-section *::before,
.ct-section *::after {
    box-sizing: border-box;
}

.ct-wrap {
    gap: 190px;
    display: flex;
    margin: 0 auto;
    max-width: 1270px;
    align-items: flex-start;
}

.ct-left {
    flex: 1;
    min-width: 0;
}

.ct-title {
    font-weight: 800;
    color: #0d1535;
    line-height: 1.2;
    margin: 0 0 12px 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.ct-tagline {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0 0 36px 0;
}

.ct-form {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.ct-row {
    gap: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ct-phone-row {
    gap: 16px;
    display: grid;
    align-items: stretch;
    grid-template-columns: auto 1fr;
}

.ct-error {
    color: #ef4444;
    min-height: 16px;
    padding-left: 4px;
    font-size: 0.75rem;
}

.ct-input {
    width: 100%;
    outline: none;
    color: #0d1535;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 0.88rem;
    background: #ffffff;
    transition: border-color 0.2s;
    border: 1.5px solid #a4a6ab;
    font-family: 'Epilogue', sans-serif;
}

.ct-input:focus {
    border-color: #2642c7;
}

.ct-input::placeholder {
    color: #9ca3af;
}

.ct-input.ct-input-error {
    border-color: #ef4444;
}

.ct-phone-row {
    gap: 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    /* ✅ 130px → auto */
}

.ct-phone-prefix {
    gap: 8px;
    display: flex;
    cursor: default;
    color: #0d1535;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 0.88rem;
    align-items: center;
    background: #ffffff;
    width: fit-content;
    /* ✅ added */
    white-space: nowrap;
    /* ✅ added */
    border: 1.5px solid #a4a6ab;
    font-family: 'Epilogue', sans-serif;
}

.ct-phone-prefix img {
    width: 22px;
    height: 15px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 2px;
}

.ct-select {
    width: 100%;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 0.88rem;
    background: #ffffff;
    border: 1.5px solid #a4a6ab;
    font-family: 'Epilogue', sans-serif;

    outline: none;
    cursor: pointer;
    color: #9ca3af;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transition: border-color 0.2s;
    background-position: right 14px center;
}

.ct-select:focus {
    border-color: #2642c7;
}

.ct-textarea {
    width: 100%;
    outline: none;
    resize: vertical;
    color: #0d1535;
    min-height: 120px;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 0.88rem;
    background: #ffffff;
    transition: border-color 0.2s;
    border: 1.5px solid #a4a6ab;
    font-family: 'Epilogue', sans-serif;
}

.ct-textarea:focus {
    border-color: #2642c7;
}

.ct-textarea::placeholder {
    color: #9ca3af;
}

.ct-submit {
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.92rem;
    padding: 14px 36px;
    border-radius: 8px;
    align-self: flex-start;
    /* background: #1a237e; */
     background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    font-family: 'Epilogue', sans-serif;
    transition: background 0.25s, transform 0.2s;
}

.ct-submit:hover {
    /* background: #2642c7; */
     background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    transform: translateY(-2px);
}

.ct-right {
    gap: 24px;
    display: flex;
    flex: 0 0 420px;
    flex-direction: column;
}

.ct-right-desc {
    margin: 0;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.75;
    font-size: 0.88rem;
}

.ct-card {
    gap: 24px;
    display: flex;
    padding: 32px 28px;
    border-radius: 16px;
    /* background: #1a237e; */
     background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    flex-direction: column;
}

.ct-card-title {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    font-size: 1.15rem;
}

.ct-card-desc {
    margin: 0;
    line-height: 1.7;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.ct-info-group {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.ct-info-label {
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.ct-info-item {
    gap: 14px;
    display: flex;
    cursor: pointer;
    padding: 14px 16px;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    background: rgba(255, 255, 255, 0.1);
}

.ct-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ct-info-icon {
    width: 38px;
    height: 38px;
    display: flex;
    flex-shrink: 0;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
}

.ct-info-icon svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.ct-info-text {
    gap: 2px;
    display: flex;
    flex-direction: column;
}

.ct-info-text span {
    font-weight: 500;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

.ct-info-text strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
}

.ct-popup {
    inset: 0;
    opacity: 0;
    padding: 20px;
    display: flex;
    z-index: 99999;
    position: fixed;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ct-popup.ct-popup-open {
    opacity: 1;
    visibility: visible;
}

.ct-popup-box {
    gap: 14px;
    width: 100%;
    display: flex;
    max-width: 360px;
    padding: 36px 32px;
    text-align: center;
    border-radius: 16px;
    align-items: center;
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.ct-popup-icon {
    line-height: 1;
    font-size: 2.2rem;
}

.ct-popup-msg {
    margin: 0;
    color: #0d1535;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

.ct-popup-close {
    border: none;
    margin-top: 4px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 32px;
    border-radius: 8px;
    background: #1a237e;
    transition: background 0.2s;
    font-family: 'Epilogue', sans-serif;
}

.ct-popup-close:hover {
    background: #2642c7;
}

@media (max-width: 1024px) {

    .ct-right {
        flex: 0 0 360px;
    }

}

@media (max-width: 860px) {

    .ct-wrap {
        gap: 48px;
        flex-direction: column;
    }

    .ct-right {
        flex: none;
        width: 100%;
    }

    .ct-section {
        padding: 32px 0;
        margin: 0 6px;
    }

}

@media (max-width: 560px) {

    .ct-section {
        padding: 20px 0;
    }

    .ct-wrap {
        padding: 0 1.25rem;
        gap: 36px;
    }

    .ct-row {
        grid-template-columns: 1fr;
    }

    .ct-phone-row {
        grid-template-columns: auto 1fr;
        /* ✅ 110px → auto */
    }

    .ct-submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .ct-card {
        padding: 24px 20px;
    }
}

/*! End Ct Section Bar */


/*! Start Ft Footer Section Bar */

.ft-footer {
    background: #000000;
    font-family: 'Epilogue', sans-serif;
}

.ft-footer *,
.ft-footer *::before,
.ft-footer *::after {
    box-sizing: border-box;
}

.ft-top {
    gap: 48px;
    display: grid;
    margin: 0 auto;
    max-width: 1300px;
    padding: 64px 1rem 48px;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
}

.ft-brand {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.ft-logo {
    gap: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ft-logo img {
    width: auto;
    height: 40px;
    margin-bottom: 12px;
}

.ft-logo-text {
    font-weight: 800;
    color: #ffffff;
    font-size: 1.3rem;
    letter-spacing: 0.01em;
}

.ft-logo-text span {
    color: #00d4aa;
}

.ft-tagline {
    margin: 0;
    line-height: 1.6;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.ft-contact-list {
    gap: 10px;
    padding: 0;
    display: flex;
    list-style: none;
    margin: 8px 0 0 0;
    flex-direction: column;
}

.ft-contact-list li a,
.ft-contact-list li span {
    gap: 10px;
    display: flex;
    line-height: 1.5;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.6);
}

.ft-contact-list li a:hover {
    color: #00d4aa;
}

.ft-contact-list li svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
}

.ft-col-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    margin: 14px 0 20px 0;
    letter-spacing: 0.02em;
}

.ft-nav-list {
    gap: 12px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    flex-direction: column;
}

.ft-nav-list li a {
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
    color: rgba(255, 255, 255, 0.6);
}

.ft-nav-list li a:hover {
    color: #1a237e;
}

.ft-newsletter {
    gap: 0;
    display: flex;
    flex-direction: column;
}

.ft-newsletter-desc {
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.ft-email-input {
    width: 100%;
    outline: none;
    color: #ffffff;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: border-color 0.2s;
    font-family: 'Epilogue', sans-serif;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.ft-email-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.ft-email-input:focus {
    border-color: #1a237e;
}

.ft-subscribe-btn {
    width: 100%;
    border: none;
    padding: 14px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 8px;
    letter-spacing: 0.02em;
    font-family: 'Epilogue', sans-serif;
    transition: opacity 0.2s, transform 0.2s;
    background: linear-gradient(135deg, #0d1535 0%, #1a237e 100%);
}

.ft-subscribe-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.ft-divider {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1280px;
}

.ft-divider hr {
    margin: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-bottom {
    gap: 20px;
    display: flex;
    margin: 0 auto;
    max-width: 1280px;
    padding: 24px 2rem;
    align-items: center;
    justify-content: space-between;
}

.ft-copy {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.ft-social {
    gap: 12px;
    display: flex;
    align-items: center;
}

.ft-social a {
    width: 36px;
    height: 36px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    transition: background 0.2s;
    background: rgba(255, 255, 255, 0.08);
}

.ft-social a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.ft-social svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.ft-legal {
    gap: 24px;
    display: flex;
    align-items: center;
}

.ft-legal a {
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
    color: rgba(255, 255, 255, 0.45);
}

.ft-legal a:hover {
    color: #ffffff;
}

.ft-whatsapp-btn {
    left: 24px;
    opacity: 0;
    width: 40px;
    bottom: 28px;
    height: 40px;
    display: flex;
    z-index: 9990;
    position: fixed;
    visibility: hidden;
    border-radius: 50%;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    background: linear-gradient(135deg, #0d1535 0%, #1a237e 100%);
}

.ft-whatsapp-btn.ft-wa-visible {
    opacity: 1;
    visibility: visible;
}

.ft-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.ft-whatsapp-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ft-back-top {
    opacity: 0;
    right: 24px;
    width: 36px;
    height: 36px;
    bottom: 28px;
    border: none;
    display: flex;
    z-index: 9990;
    cursor: pointer;
    position: fixed;
    visibility: hidden;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transform: translateY(12px);
    background: linear-gradient(135deg, #0d1535 0%, #1a237e 100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.ft-back-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ft-back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 28, 70, 0.45);
}

.ft-back-top svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.ft-popup {
    inset: 0;
    opacity: 0;
    padding: 20px;
    display: flex;
    z-index: 99999;
    position: fixed;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ft-popup.ft-popup-open {
    opacity: 1;
    visibility: visible;
}

.ft-popup-box {
    gap: 14px;
    width: 100%;
    display: flex;
    max-width: 340px;
    padding: 36px 32px;
    text-align: center;
    align-items: center;
    border-radius: 16px;
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ft-popup-icon {
    line-height: 1;
    font-size: 2.2rem;
}

.ft-popup-msg {
    margin: 0;
    color: #0d1535;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.92rem;
    white-space: pre-line;
}

.ft-popup-close {
    border: none;
    margin-top: 4px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 32px;
    border-radius: 8px;
    background: #1a237e;
    transition: background 0.2s;
    font-family: 'Epilogue', sans-serif;
}

.ft-popup-close:hover {
    background: #2642c7;
}

@media (max-width: 1024px) {

    .ft-top {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {

    .ft-top {
        gap: 32px;
        padding: 40px 1.25rem 32px;
        grid-template-columns: 1fr 1fr;
    }

    .ft-brand {
        grid-column: 1 / -1;
    }

    .ft-newsletter {
        grid-column: 1 / -1;
    }

}

@media (max-width: 480px) {

    .ft-top {
        gap: 28px;
        padding: 36px 1.25rem 28px;
        grid-template-columns: 1fr 1fr;
    }

    .ft-brand {
        grid-column: 1 / -1;
    }

    .ft-newsletter {
        grid-column: 1 / -1;
    }

    .ft-col-title {
        font-size: 0.9rem;
    }

    .ft-nav-list li a {
        font-size: 0.8rem;
    }

    .ft-divider {
        padding: 0 1.25rem;
    }

    .ft-bottom {
        gap: 14px;
        text-align: center;
        align-items: center;
        padding: 20px 1.25rem;
        flex-direction: column;
    }

    .ft-legal {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ft-legal a {
        font-size: 0.75rem;
    }

    .ft-copy {
        font-size: 0.75rem;
    }

    .ft-social a {
        width: 32px;
        height: 32px;
    }

}

/*! End Ft Footer Section Bar */


/*? Start the CSS About Us Page */

/*! Start Au Section Bar */

.au-section {
    padding: 60px 0;
    font-family: 'Epilogue', sans-serif;
}

.au-section *,
.au-section *::before,
.au-section *::after {
    box-sizing: border-box;
}

.au-breadcrumb {
    gap: 8px;
    display: flex;
    color: #6b7280;
    max-width: 1250px;
    font-size: 0.85rem;
    margin: 0 auto 48px;
    align-items: center;
}

.au-breadcrumb a {
    gap: 6px;
    display: flex;
    color: #6b7280;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
}

.au-breadcrumb a:hover {
    color: #0d1535;
}

.au-breadcrumb svg {
    width: 18px;
    height: 18px;
}

.au-breadcrumb-sep {
    font-weight: 600;
    color: #9ca3af;
    font-size: 0.9rem;
}

.au-breadcrumb-current {
    margin-top: 2px;
    color: #0d1535;
    font-weight: 600;
}

.au-wrap {
    gap: 80px;
    display: flex;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1280px;
    align-items: center;
}

.au-img-wrap {
    flex: 0 0 440px;
    position: relative;
    padding: 20px 20px 20px 20px;
}

.au-img-frame {
    z-index: 1;
    overflow: hidden;
    position: relative;
    /* border-radius: 8px; */
}

.au-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* border-radius: 2px; */
}

.au-img-wrap::before {
    top: 0;
    right: 0;
    width: 3px;
    z-index: 0;
    height: 50%;
    content: '';
    position: absolute;
    border-radius: 2px;
    background: #1a237e;
}

.au-img-wrap::after {
    left: 0;
    bottom: 0;
    width: 3px;
    z-index: 0;
    height: 50%;
    content: '';
    position: absolute;
    border-radius: 4px;
    background: #1a237e;
}

.au-line-top {
    top: 0;
    right: 0;
    z-index: 0;
    width: 40%;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    background: #1a237e;
}

.au-line-bottom {
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 40%;
    height: 3px;
    position: absolute;
    border-radius: 2px;
    background: #1a237e;
}

.au-content {
    flex: 1;
    min-width: 0;
}

.au-eyebrow {
    font-weight: 600;
    color: #4b5563;
    font-weight: 500;
    margin: 0 0 8px 0;
    font-size: 0.92rem;
}

.au-title {
    font-weight: 800;
    color: #132d98;
    line-height: 1.1;
    margin: 0 0 24px 0;
    font-size: clamp(2rem, 4vw, 2rem);
}

.au-desc {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.84rem;
    margin: 0 0 22px 0;
}

.au-features {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px 32px;
    list-style: none;
    grid-template-columns: 1fr 1fr;
}

.au-features li {
    gap: 8px;
    display: flex;
    font-weight: 600;
    color: #2642c7;
    font-size: 0.9rem;
    align-items: center;
}

.au-features li::before {
    content: '•';
    flex-shrink: 0;
    color: #2642c7;
    font-size: 1.2rem;
}

.au-watermark {
    z-index: 0;
    right: -20px;
    width: 220px;
    bottom: -20px;
    height: 220px;
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 40px solid rgba(200, 210, 240, 0.2);
}

@media (max-width:768px) {

    .au-watermark {
        right: 0;
    }

}

@media (max-width: 1024px) {

    .au-wrap {
        gap: 56px;
    }

    .au-img-wrap {
        flex: 0 0 380px;
    }

}

@media (max-width: 860px) {

    .au-wrap {
        gap: 48px;
        flex-direction: column;
    }

    .au-img-wrap {
        flex: none;
        width: 100%;
        margin: 0 auto;
        max-width: 480px;
    }

    .au-content {
        width: 100%;
    }
}

@media (max-width: 560px) {

    .au-section {
        margin: 0 6px;
        padding: 48px 0;
    }

    .au-wrap {
        gap: 36px;
        padding: 0 1.25rem;
    }

    .au-breadcrumb {
        padding: 0 1.25rem;
        margin-bottom: 32px;
    }

    .au-features {
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .au-title {
        font-size: 2rem;
    }

}

/*! End Au Section Bar */


/*! Start Mv Section Bar */

.mv-section {
    padding: 50px 0;
    font-family: 'Epilogue', sans-serif;
    box-sizing: border-box;
}

.mv-section *,
.mv-section *::before,
.mv-section *::after {
    box-sizing: border-box;
}

.mv-wrap {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1260px;
}

.mv-heading-area {
    text-align: center;
    margin-bottom: 48px;
}

.mv-title {
    font-weight: 700;
    color: #0d1535;
    line-height: 1.2;
    margin: 0 0 16px 0;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.mv-title span {
    color: #2642c7;
}

.mv-quote {
    margin: 0 auto;
    font-weight: 500;
    color: #6b7280;
    max-width: 580px;
    line-height: 1.75;
    font-size: clamp(0.82rem, 1.1vw, 0.92rem);
}

.mv-card {
    display: flex;
    min-height: 120px;
    overflow: visible;
    position: relative;
    padding-left: 180px;
    align-items: center;
    border-radius: 100px;
}

.mv-card-bg {
    inset: 0;
    z-index: 0;
    overflow: hidden;
    position: absolute;
    border-radius: 50px;
}

.mv-card-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
}

.mv-card-bg::after {
    inset: 0;
    content: '';
    position: absolute;
    background: linear-gradient(110deg,
            #0a0f1e 0%,
            #0d1535 30%,
            rgba(15, 26, 74, 0.85) 60%,
            rgba(26, 35, 112, 0.75) 100%);
}

.mv-avatar-wrap {
    top: 50%;
    z-index: 3;
    left: -20px;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    position: absolute;
    transform: translateY(-50%);
}

.mv-avatar-ring {
    inset: 0;
    position: absolute;
    border-radius: 50%;
    background: #0a0f1e;
    border: 3px solid #1a237e;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 0 0 2px #0d1535;
    z-index: 1;
}

.mv-avatar-img {
    bottom: 0;
    left: 50%;
    width: 80%;
    z-index: 2;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    object-position: center top;
    transform: translateX(-50%);
}

.mv-avatar-label {
    left: 50%;
    z-index: 3;
    bottom: -4px;
    width: 230px;
    text-align: center;
    position: absolute;
    pointer-events: none;
    transform: translateX(-50%);
}

.mv-avatar-label svg {
    width: 230px;
    height: 76px;
    overflow: visible;
}

.mv-content {
    flex: 1;
    z-index: 2;
    min-width: 0;
    color: #ffffff;
    position: relative;
    padding: 32px 48px 32px 140px;
}

.mv-name {
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 4px 0;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.mv-role {
    font-weight: 600;
    margin: 0 0 16px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.mv-desc {
    margin: 0;
    line-height: 1.8;
    max-width: 640px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 860px) {

    .mv-card {
        border-radius: 48px;
        padding-left: 150px;
    }

    .mv-card-bg {
        border-radius: 48px;
    }

    .mv-avatar-wrap {
        top: 50%;
        left: -20px;
        width: 160px;
        height: 160px;
        position: absolute;
        transform: translateY(-50%);
    }

    .mv-avatar-label svg {
        width: 190px;
    }

    .mv-content {
        padding: 24px 28px 24px 20px;
    }

}

@media (max-width: 640px) {

    .mv-section {
        padding: 56px 0 20px 0;
    }

    .mv-wrap {
        padding: 0 1.25rem;
    }

    .mv-card {
        margin-top: 85px;
        text-align: center;
        align-items: center;
        border-radius: 28px;
        flex-direction: column;
        padding: 80px 24px 28px;
    }

    .mv-card-bg {
        border-radius: 28px;
    }

    .mv-avatar-wrap {
        left: 50%;
        top: -65px;
        width: 130px;
        height: 130px;
        position: absolute;
        transform: translateX(-50%);
    }

    .mv-avatar-ring {
        inset: 0;
    }

    .mv-avatar-label svg {
        width: 160px;
    }

    .mv-content {
        padding: 0;
        text-align: center;
    }

    .mv-desc {
        max-width: 100%;
    }

}

/*! End Mv Section Bar */


/*! Start Wd Section Bar */

.wd-section {
    padding: 80px 0 38px 0;
    font-family: 'Epilogue', sans-serif;
}

.wd-section *,
.wd-section *::before,
.wd-section *::after {
    box-sizing: border-box;
}

.wd-wrap {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1280px;
}

.wd-title {
    font-weight: 800;
    color: #061860;
    line-height: 1.2;
    margin: 0 0 22px 2px;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.wd-layout {
    gap: 70px;
    display: flex;
    align-items: flex-start;
}

.wd-img-box {
    flex: 0 0 420px;
    overflow: hidden;
    border-radius: 10px;
}

.wd-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    margin-top: 20px;
    object-fit: cover;
    border-radius: 10px;
}

.wd-right {
    flex: 1;
    gap: 32px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.wd-desc {
    margin: 0;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.88rem;
}

.wd-grid {
    display: grid;
    gap: 22px 30px;
    grid-template-columns: 1fr 1fr;
}

.wd-item {
    gap: 6px;
    display: flex;
    flex-direction: column;
}

.wd-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 4px;
}

.wd-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.wd-icon svg {
    width: 38px;
    height: 38px;
    color: #2642c7;
}

.wd-item-title {
    margin: 0;
    font-weight: 700;
    color: #0d1535;
    line-height: 1.2;
    font-size: 1.05rem;
}

.wd-item-desc {
    margin: 0;
    color: #6b7280;
    font-weight: 500;
    max-width: 240px;
    line-height: 1.65;
    font-size: 0.82rem;
}

@media (max-width: 1024px) {

    .wd-img-box {
        flex: 0 0 360px;
    }

    .wd-layout {
        gap: 40px;
    }

}

@media (max-width: 860px) {

    .wd-layout {
        gap: 36px;
        flex-direction: column;
    }

    .wd-img-box {
        flex: none;
        width: 100%;
        max-height: 320px;
    }

    .wd-item-desc {
        max-width: 100%;
    }

}

@media (max-width: 480px) {

    .wd-section {
        margin: 0 6px;
        padding: 56px 0 28px 0;
    }

    .wd-wrap {
        padding: 0 1.25rem;
    }

    .wd-grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .wd-img-box {
        max-height: 260px;
    }

}

/*! End Wd Section Bar */


/*? Start the CSS App Development Page */

/*! Start Hero Section Bar */

.sv-section {
    padding: 110px 0;
    overflow: hidden;
    min-height: 480px;
    position: relative;
    font-family: 'Epilogue', sans-serif;
}

.sv-section *,
.sv-section *::before,
.sv-section *::after {
    box-sizing: border-box;
}

.sv-bg {
    inset: 0;
    z-index: 0;
    position: absolute;
}

.sv-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.sv-bg::after {
    inset: 0;
    content: '';
    position: absolute;
    background: linear-gradient(105deg,
            rgba(10, 15, 40, 0.92) 0%,
            rgba(13, 21, 83, 0.88) 40%,
            rgba(13, 21, 83, 0.803) 70%,
            rgba(10, 15, 40, 0.92) 100%);
}

.sv-wrap {
    gap: 60px;
    z-index: 1;
    display: flex;
    margin: 0 auto;
    max-width: 1268px;
    position: relative;
    align-items: center;
}

.sv-left {
    flex: 1;
    gap: 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sv-title {
    margin: 0;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.sv-desc {
    margin: 0;
    max-width: 420px;
    line-height: 1.75;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.sv-btn {
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 50px;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    align-self: flex-start;
    background: transparent;
    font-family: 'Epilogue', sans-serif;
    padding: 0.65rem 0.7rem 0.65rem 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.sv-btn:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.sv-btn-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    flex-shrink: 0;
    font-size: 1rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    background: rgba(255, 255, 255, 0.15);
}

.sv-btn:hover .sv-btn-arrow {
    color: #0d1535;
    background: #ffffff;
}

.sv-form-card {
    gap: 14px;
    display: flex;
    flex: 0 0 490px;
    padding: 32px 18px;
    border-radius: 16px;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(13, 21, 83, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sv-form-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.sv-form-row {
    gap: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sv-input {
    width: 100%;
    outline: none;
    color: #0d1535;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    transition: border-color 0.2s;
    border: 1.5px solid transparent;
    font-family: 'Epilogue', sans-serif;
    background: rgba(255, 255, 255, 0.92);
}

.sv-input:focus {
    background: #ffffff;
    border-color: #2642c7;
}

.sv-input::placeholder {
    color: #6b7280;
}

.sv-textarea {
    width: 100%;
    outline: none;
    color: #0d1535;
    resize: vertical;
    min-height: 110px;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    transition: border-color 0.2s;
    border: 1.5px solid transparent;
    font-family: 'Epilogue', sans-serif;
    background: rgba(255, 255, 255, 0.92);
}

.sv-textarea:focus {
    background: #ffffff;
    border-color: #2642c7;
}

.sv-textarea::placeholder {
    color: #6b7280;
}

.sv-submit {
    border: none;
    margin: 10px 0;
    cursor: pointer;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 24px;
    border-radius: 8px;
    background: #2642c7;
    align-self: flex-start;
    letter-spacing: 0.02em;
    font-family: 'Epilogue', sans-serif;
    transition: background 0.25s, transform 0.2s;
}

.sv-submit:hover {
    background: #1a35b0;
    transform: translateY(-2px);
}

@media (max-width: 860px) {

    .sv-wrap {
        gap: 32px;
        padding: 0 1.25rem;
        flex-direction: column;
    }

    .sv-form-card {
        gap: 14px;
        margin: 0;
        flex: none;
        width: 100%;
        display: flex;
        max-width: 100%;
        flex-direction: column;
    }

    .sv-left {
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .sv-desc {
        max-width: 100%;
    }

    .sv-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

}

@media (max-width: 480px) {

    .sv-section {
        padding: 120px 0 40px 0;
    }

    .sv-wrap {
        gap: 84px;
        margin: 0 8px;
        padding: 0 1rem;
    }

    .sv-form-row {
        grid-template-columns: 1fr;
    }

    .sv-form-card {
        padding: 20px 16px;
        display: none;
    }

    .sv-title {
        font-size: 1.6rem;
    }

    .sv-desc {
        font-size: 0.82rem;
    }
}

.sv-popup {
    inset: 0;
    opacity: 0;
    padding: 20px;
    display: flex;
    z-index: 99999;
    position: fixed;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sv-popup.sv-popup-open {
    opacity: 1;
    visibility: visible;
}

.sv-popup-box {
    gap: 14px;
    width: 100%;
    display: flex;
    max-width: 340px;
    padding: 36px 32px;
    text-align: center;
    border-radius: 16px;
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.sv-popup-icon {
    line-height: 1;
    font-size: 2.2rem;
}

.sv-popup-msg {
    margin: 0;
    color: #0d1535;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.92rem;
    white-space: pre-line;
}

.sv-popup-close {
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    margin-top: 4px;
    font-size: 0.88rem;
    padding: 10px 32px;
    border-radius: 8px;
    background: #2642c7;
    transition: background 0.2s;
    font-family: 'Epilogue', sans-serif;
}

.sv-popup-close:hover {
    background: #1a35b0;
}

.sv-input.sv-input-error {
    background: #fff5f5;
    border-color: #ef4444;
}

/*! End Hero Section Bar */


/*! Start Ticker Section Bar */

.ticker-container {
    margin: 0 auto;
    max-width: 1270px;
    overflow: hidden;
    /* ✅ overflow yahan rakho — section pe nahi */
    width: 100%;
}

.ticker-section {
    padding: 20px 0;
    overflow: visible;
    /* ✅ hidden → visible */
    font-family: 'Epilogue', sans-serif;
}


.ticker-section *,
.ticker-section *::before,
.ticker-section *::after {
    box-sizing: border-box;
}

.ticker-row {
    display: flex;
    overflow: visible;
    /* ✅ hidden → visible */
    white-space: nowrap;
    margin-bottom: 14px;
}

.ticker-row:last-child {
    margin-bottom: 0;
}

.ticker-row--rtl .ticker-track {
    animation: tickerRTL 40s linear infinite;
    -webkit-animation: tickerRTL 40s linear infinite;
}

.ticker-row--ltr .ticker-track {
    animation: tickerLTR 40s linear infinite;
    -webkit-animation: tickerLTR 40s linear infinite;
}

@keyframes tickerRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes tickerLTR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.ticker-track {
    display: flex;
    align-items: center;
}

.ticker-item {
    gap: 16px;
    padding: 0 32px;
    font-size: 60px;
    margin-top: 20px;
    font-weight: 800;
    color: #000000;
    align-items: center;
    white-space: nowrap;
    display: inline-flex;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ticker-star {
    flex-shrink: 0;
    font-size: 40px;
    color: #000000;
    margin-top: -20px;
    margin-left: 10px;
}

.ticker-row:hover .ticker-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {

    .ticker-item {
        gap: 12px;
        font-size: 1rem;
        padding: 0 20px;
        letter-spacing: 0.05em;
    }

    .ticker-star {
        font-size: 1rem;
    }

    .ticker-row {
        margin-bottom: 10px;
    }

    .ticker-section {
        padding: 16px 0;
    }

}

@media (max-width: 480px) {

    .ticker-item {
        gap: 10px;
        font-size: 38px;
        padding: 0 14px;
        letter-spacing: 0.04em;
    }

    .ticker-star {
        margin-top: 1px;
        font-size: 30px;
    }

    .ticker-section {
        padding: 4px 0 19px 0;
    }

    .ticker-row {
        margin-bottom: 2px;
    }

}

/*! End Ticker Section Bar */


/*! Start Pr Section Bar */

.pr-section {
    position: relative;
    /* background: #060d1f; */
    background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    /* font-family: 'Epilogue', sans-serif; */
}

.pr-section *,
.pr-section *::before,
.pr-section *::after {
    box-sizing: border-box;
}

.pr-wrap {
    gap: 80px;
    display: flex;
    margin: 0 auto;
    min-height: 100vh;
    max-width: 1290px;
    padding: 80px 0.4rem;
    align-items: flex-start;
}

.pr-left {
    top: 180px;
    flex: 0 0 380px;
    position: sticky;
    height: fit-content;
    align-self: flex-start;
}

.pr-watermark {
    line-height: 1;
    font-weight: 900;
    user-select: none;
    margin: 0 0 24px -8px;
    letter-spacing: 0.05em;
    font-size: clamp(4rem, 10vw, 8rem);
    color: rgba(255, 255, 255, 0.127);
}

.pr-title {
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 20px 0;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.pr-desc {
    margin: 0;
    line-height: 1.8;
    text-transform: capitalize;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.pr-right {
    flex: 1;
    gap: 0;
    padding: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pr-step {
    gap: 0;
    display: flex;
    padding-bottom: 0;
    flex-direction: column;
}

.pr-step-label {
    font-weight: 700;
    font-size: 0.8rem;
    padding-left: 2px;
    margin: 0 0 12px 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.pr-step-line {
    width: 1px;
    height: 60px;
    margin: 0 0 0 2px;
    background: rgba(255, 255, 255, 0.15);
}

.pr-card {
    opacity: 0.5;
    padding: 28px 28px;
    border-radius: 12px;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
}

.pr-card.pr-card--active {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.pr-card-top {
    gap: 14px;
    display: flex;
    margin-bottom: 14px;
    align-items: center;
}

.pr-card-num {
    width: 36px;
    height: 36px;
    display: flex;
    flex-shrink: 0;
    font-weight: 700;
    border-radius: 8px;
    font-size: 0.82rem;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pr-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.pr-card-desc {
    margin: 0;
    line-height: 1.75;
    text-transform: capitalize;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 860px) {

    .pr-wrap {
        flex-direction: column;
        gap: 48px;
        padding: 56px 1.5rem;
    }

    .pr-left {
        top: auto;
        flex: none;
        width: 100%;
        position: relative;
    }

    .pr-right {
        padding: 0;
        width: 100%;
    }

    .pr-card {
        opacity: 1;
        transform: none;
    }

}

@media (max-width: 480px) {

    .pr-section {
        padding: 18px 0;
    }

    .pr-wrap {
        gap: 36px;
        margin: 0 6px;
        padding: 40px 1.25rem;
    }

    .pr-watermark {
        font-size: 4.3rem;
    }

    .pr-card {
        padding: 20px 18px;
    }

    .pr-step-line {
        height: 40px;
    }

}

/*! End Pr Section Bar */


/*! Start Ind2 Section Bar */

.ind2-section {
    padding: 60px 0 0px 0;
    font-family: 'Epilogue', sans-serif;
}

.ind2-section *,
.ind2-section *::before,
.ind2-section *::after {
    box-sizing: border-box;
}

.ind2-outer {
    margin: 0 auto;
    /* padding: 0 1rem; */
    max-width: 1270px;
    margin-bottom: 40px;
}

.ind2-wrap {
    gap: 24px;
    padding: 30px;
    display: flex;
    border-radius: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, #0d1535 0%, #1a237e 100%);
}

.ind2-tabs {
    gap: 4px;
    top: 100px;
    display: flex;
    flex: 0 0 200px;
    position: sticky;
    flex-direction: column;
}

.ind2-tab-btn {
    gap: 10px;
    width: 100%;
    border: none;
    display: flex;
    cursor: pointer;
    line-height: 1.4;
    font-weight: 600;
    text-align: left;
    padding: 13px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    align-items: center;
    background: transparent;
    font-family: 'Epilogue', sans-serif;
    color: rgba(255, 255, 255, 0.55);
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.ind2-tab-btn:hover {
    color: #ffffff;
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.1);
}

.ind2-tab-btn.ind2-active {
    color: #1a237e;
    font-weight: 700;
    background: #ffffff;
    transform: translateX(0);
}

.ind2-tab-btn.ind2-active::before {
    content: '→';
    flex-shrink: 0;
    color: #1a237e;
    font-size: 0.9rem;
}

.ind2-tab-btn:not(.ind2-active):hover::before {
    content: '→';
    flex-shrink: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.ind2-panels {
    flex: 1;
    min-width: 0;
}

.ind2-panel {
    display: none;
}

.ind2-panel.ind2-panel-active {
    display: block;
}

.ind2-card {
    display: flex;
    overflow: hidden;
    min-height: 320px;
    border-radius: 16px;
    align-items: stretch;
    background: #ffffff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
}

.ind2-card-content {
    flex: 1;
    gap: 14px;
    display: flex;
    padding: 32px 28px;
    flex-direction: column;
}

.ind2-card-title {
    margin: 0;
    font-weight: 800;
    color: #0d1535;
    line-height: 1.3;
    font-size: 1.05rem;
}

.ind2-features {
    flex: 1;
    gap: 9px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    flex-direction: column;
}

.ind2-features li {
    gap: 10px;
    display: flex;
    color: #374151;
    line-height: 1.5;
    font-size: 0.82rem;
    align-items: flex-start;
}

.ind2-features li::before {
    content: '•';
    flex-shrink: 0;
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
}

.ind2-card-btn {
    gap: 0;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.82rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    background: #1a237e;
    text-decoration: none;
    align-self: flex-start;
    padding: 4px 4px 4px 18px;
    font-family: 'Epilogue', sans-serif;
    transition: background 0.2s, transform 0.2s;
}

.ind2-card-btn:hover {
    background: #2642c7;
    transform: translateY(-2px);
}

.ind2-card-btn-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-left: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
}

.ind2-card-img {
    margin: 8px;
    flex: 0 0 52%;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

.ind2-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.ind2-card:hover .ind2-card-img img {
    transform: scale(1.04);
}

@media (max-width: 1024px) {

    .ind2-card-img {
        flex: 0 0 38%;
    }

}

@media (max-width: 860px) {

    .ind2-section {
        padding: 40px 0;
    }

    .ind2-outer {
        padding: 0 1rem;
    }

    .ind2-wrap {
        gap: 16px;
        margin-top: -90px;
        padding: 18px 14px;
        border-radius: 16px;
        flex-direction: column;
    }

    .ind2-tabs {
        gap: 8px;
        top: auto;
        flex: none;
        width: 100%;
        flex-wrap: wrap;
        position: relative;
        flex-direction: row;
    }

    .ind2-tab-btn {
        width: auto;
        flex-shrink: 0;
        padding: 7px 13px;
        font-size: 0.72rem;
        border-radius: 10px;
        transform: none !important;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
    }

    .ind2-tab-btn:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .ind2-tab-btn:not(.ind2-active):hover::before {
        display: none;
    }

    .ind2-tab-btn.ind2-active {
        font-weight: 700;
        color: #1a237e;
        background: #ffffff;
        border-color: #ffffff;
    }

    .ind2-tab-btn.ind2-active::before {
        display: none;
    }

    .ind2-panels {
        width: 100%;
        min-width: 0;
    }

    .ind2-panel {
        width: 100%;
        display: none;
    }

    .ind2-panel.ind2-panel-active {
        display: block;
    }

    .ind2-card {
        width: 100%;
        height: auto;
        overflow: hidden;
        min-height: unset;
        border-radius: 12px;
        flex-direction: column;
    }

    .ind2-card-content {
        gap: 10px;
        flex: none;
        width: 100%;
        padding: 20px 18px;
    }

    .ind2-card-title {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .ind2-features {
        gap: 8px;
    }

    .ind2-features li {
        line-height: 1.5;
        font-size: 0.82rem;
    }

    .ind2-card-btn {
        font-size: 0.8rem;
        padding: 6px 6px 6px 18px;
    }

    .ind2-card-btn-arrow {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
        margin-left: 10px;
    }

    .ind2-card-img {
        flex: none;
        width: 95.5%;
        height: 210px;
        display: block;
        overflow: hidden;
        border-radius: 0 0 12px 12px;
    }

    .ind2-card-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 480px) {

    .ind2-section {
        padding: 122px 0 20px 0;
    }

    .ind2-outer {
        padding: 0 0.875rem;
    }

    .ind2-wrap {
        gap: 12px;
        padding: 14px 12px;
        border-radius: 12px;
    }

    .ind2-tab-btn {
        font-size: 0.65rem;
        padding: 6px 10px;
    }

    .ind2-card-content {
        gap: 8px;
        padding: 16px 14px;
    }

    .ind2-card-title {
        font-size: 0.92rem;
    }

    .ind2-features li {
        font-size: 0.76rem;
    }

    .ind2-card-img {
        height: 180px;
    }

    .ind2-card-img img {
        object-position: center top;
    }

    .ind2-card-btn {
        font-size: 0.76rem;
        padding: 3px 3px 3px 14px;
    }

    .ind2-panels {
        margin-top: 30px;
    }

    .ind2-card-btn-arrow {
        width: 24px;
        height: 24px;
        margin-left: 8px;
        font-size: 0.8rem;
    }

}

/*! End Ind2 Section Bar */

/* ========== Expertise Section ========== */
.ex-section {
    padding: 40px 0;
    font-family: 'Epilogue', sans-serif;
    /* background: #ffffff; */
}

.ex-section *,
.ex-section *::before,
.ex-section *::after {
    box-sizing: border-box;
}

.ex-wrap {
    gap: 48px;
    display: flex;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 1rem;
    align-items: flex-start;
}

/* ── Left ── */
.ex-left {
    flex: 1;
    min-width: 0;
}

.ex-eyebrow {
    margin: 0 0 6px 20px;
    font-size: 0.80rem;
    font-weight: 700;
    color: #2642c7;
    /* ✅ grey → blue */
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


.ex-title {
    font-weight: 800;
    color: #0d1535;
    line-height: 1.15;
    margin: 0 0 32px 16px;
    /* ✅ 28px → 32px */
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

/* ── Accordion ── */
.ex-item {
    border-bottom: 1px solid #e5e7eb;
    border-left: 3px solid transparent;
    padding: 0 12px 0 14px;
    transition: background 0.25s, border-color 0.25s;
    border-radius: 0;
    /* ✅ border-radius hatao */
}

.ex-item:first-of-type {
    border-top: 1px solid #e5e7eb;
}

.ex-item--active {
    background: #f0f3ff;
    border-left-color: #1a237e;
    border-radius: 0;
    /* ✅ active pe bhi radius nahi */
}

/* ✅ Hover effect remove karo — sirf active highlight rahega */
.ex-item:hover:not(.ex-item--active) {
    background: transparent;
    border-left-color: transparent;
}

/* ── Button ── */
.ex-btn {
    width: 100%;
    border: none;
    display: flex;
    cursor: pointer;
    padding: 18px 0;
    /* ✅ 16px → 18px — more breathing room */
    background: none;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    font-family: 'Epilogue', sans-serif;
}

.ex-btn:hover .ex-btn-text {
    color: #1a237e;
    /* ✅ hover pe blue */
}


.ex-btn-text {
    font-size: 0.98rem;
    /* ✅ 0.95 → 0.98 — slightly bigger */
    font-weight: 600;
    color: #0d1535;
    line-height: 1.4;
    transition: color 0.2s;
}

.ex-item--active .ex-btn-text {
    color: #1a237e;
    font-weight: 700;
    /* ✅ active pe bold */
}

/* ── Icon ── */
.ex-icon {
    width: 26px;
    height: 26px;
    display: flex;
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-left: 12px;
    border-radius: 50%;
    align-items: center;
    font-weight: 400;
    line-height: 1;
    justify-content: center;
    color: #6b7280;
    background: #f3f4f6;
    /* ✅ circle bg */
    transition: background 0.2s, color 0.2s;
}

.ex-item--active .ex-icon {
    color: #ffffff;
    background: #1a237e;
    /* ✅ active pe filled blue circle */
}


/* ── Body ── */
.ex-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.3s ease;
    padding: 0;
}

.ex-item--active .ex-body {
    max-height: 200px;
    padding-bottom: 16px;
}

/* ── Body text ── */
.ex-body p {
    margin: 0;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
    font-weight: 500;
    padding-right: 32px;
    text-transform: capitalize;
    /* ✅ text right side se clip na ho */
}

.ex-body p::first-letter {
    text-transform: uppercase;
}

/* ── Right Image ── */
.ex-right {
    flex: 0 0 460px;
    position: sticky;
    top: 180px;
    border-radius: 16px;
    overflow: hidden;
}

.ex-img {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    transition: opacity 0.4s ease;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ex-right {
        flex: 0 0 380px;
    }
}

@media (max-width: 768px) {
    .ex-wrap {
        flex-direction: column;
    }

    .ex-right {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
    }

    .ex-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .ex-section {
        padding: 40px 0;
    }

    .ex-img {
        height: 220px;
    }
}



/*? Industires csss */


.industries-section {
    padding: 40px 0px;
    /* background: #ffffff; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.industries-header {
    text-align: center;
    margin-bottom: 55px;
}

.industries-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 12px;
}

.industries-header p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
    max-width: 490px;
    font-weight: 600;
    margin: 0 auto;
}

.ind-panel {
    display: flex;
    align-items: center;
    gap: 52px;
    max-width: 1240px;
    margin: 0 auto;
}

/* LEFT — Image */
.ind-image-wrap {
    flex: 0 0 44%;
    border-radius: 14px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13); */
    min-height: 300px;
}

.ind-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT — Info */
.ind-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ind-info h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0d1b4b;
    margin: 0;
}

.ind-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1.5px solid #c5cce0;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #444;
    width: fit-content;
    cursor: pointer;
}

.ind-info p {
    font-size: 0.92rem;
    color: #555;
    font-weight: 500;
    line-height: 1.78;
    margin: 0;
}

/* ---- Stats Bar — dark navy box ---- */
.ind-stats {
    display: flex;
    align-items: stretch;
    background: #0d1b4b;
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.ind-stat {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

/* Divider between stats */
.ind-stat+.ind-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.ind-stat-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    text-align: center;
}

.ind-stat-label {
    font-size: 0.73rem;
    color: #a0aec0;
    line-height: 1.45;
    max-width: 100px;
    text-align: center;
}


/* ---- Responsive ---- */
@media (max-width: 768px) {
    .industries-section {
        padding: 50px 16px;
    }

    .industries-header {
        margin-bottom: 30px;
    }

    .industries-header h2 {
        font-size: 1.4rem;
    }

    .industries-header p {
        font-size: 0.85rem;
    }

    .ind-panel {
        flex-direction: column;
        gap: 24px;
    }

    .ind-image-wrap {
        flex: 0 0 auto;
        width: 100%;
        min-height: 200px;
        border-radius: 10px;
    }

    .ind-image-wrap img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .ind-info {
        width: 100%;
        gap: 12px;
        text-align: center;
    }

    .ind-info h3 {
        font-size: 1.35rem;
        /* text-align: center; */
    }

    .ind-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin: 0 auto
            /* text-align: center; */

    }

    .ind-info p {
        font-size: 0.82rem;
        /* text-align: center; */
        margin: 0 6px;
    }

    /* Stats — 3 in a row on mobile */
    .ind-stats {
        flex-wrap: nowrap;
        width: 100%;
    }

    .ind-stat {
        flex: 1;
        padding: 14px 8px;
    }

    .ind-stat-number {
        font-size: 1.3rem;
    }

    .ind-stat-label {
        font-size: 0.49rem;
        max-width: 70px;
    }
}


.svc-section {
    padding: 40px 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Outer container */
.svc-container {
    background: linear-gradient(160deg, #020818 0%, #040d2e 40%, #071040 70%, #020818 100%);
    border-radius: 24px;
    padding: 52px 48px;
    max-width: 1252px;
    margin: 0 auto;
}

.svc-heading {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 700;
    max-width: 420px;
    line-height: 1.35;
    margin: 0 0 44px 0;
}

/* ---- Grid ---- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ---- Card ---- */
.svc-card {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);

    /* Scroll animation */
    opacity: 0;
    transform: translateY(70px);

    /* Smooth transition */
    transition:
        opacity 0.65s ease,
        transform 0.35s ease,
        box-shadow 0.3s ease;
}

/* ✅ Subtle Hover Lift */
.svc-card.visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Visible state */
.svc-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animation */
.svc-card:nth-child(1) {
    transition-delay: 0s;
}

.svc-card:nth-child(2) {
    transition-delay: 0.15s;
}

.svc-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Image */
.svc-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* Text block */
.svc-card-body {
    padding: 22px 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-card-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.svc-card-desc {
    color: #8a9bbf;
    font-size: 0.82rem;
    line-height: 1.72;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .svc-container {
        padding: 40px 28px;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-card:nth-child(3) {
        transition-delay: 0.15s;
    }
}

@media (max-width: 580px) {
    .svc-section {
        padding: 12px 14px;
    }

    .svc-container {
        padding: 32px 18px;
        border-radius: 16px;
    }

    .svc-heading {
        font-size: 1.3rem;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .svc-card:nth-child(1),
    .svc-card:nth-child(2),
    .svc-card:nth-child(3) {
        transition-delay: 0s;
    }

    .svc-card-img {
        height: 180px;
    }

    /* Mobile me subtle effect */
    .svc-card.visible:hover {
        transform: translateY(-4px);
    }
}


.kf-section {
    padding: 10px 0px 40px 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.kf-heading {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #0d1b4b;
    margin: 0 0 48px 0;
}

/* ---- Grid ---- */
.kf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ---- Card ---- */
.kf-card {
    background: rgba(232, 230, 230, 0.628);
    /* ✅ DARK PREMIUM BACKGROUND */
    /* background: linear-gradient(145deg, #0f1f5c, #0a163f); */

    border-radius: 14px;
    padding: 28px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;

    /* separation */
    border: 1px solid rgba(30, 28, 28, 0.08);
    box-shadow: 0 8px 25px rgba(248, 184, 184, 0.25);

    /* animation */
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.55s ease,
        transform 0.35s ease,
        box-shadow 0.3s ease;
}

/* visible */
.kf-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ✅ hover */
.kf-card.visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* stagger */
.kf-card:nth-child(1) {
    transition-delay: 0.00s;
}

.kf-card:nth-child(2) {
    transition-delay: 0.08s;
}

.kf-card:nth-child(3) {
    transition-delay: 0.16s;
}

.kf-card:nth-child(4) {
    transition-delay: 0.24s;
}

.kf-card:nth-child(5) {
    transition-delay: 0.08s;
}

.kf-card:nth-child(6) {
    transition-delay: 0.16s;
}

.kf-card:nth-child(7) {
    transition-delay: 0.24s;
}

.kf-card:nth-child(8) {
    transition-delay: 0.32s;
}

/* icon */
.kf-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kf-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kf-icon-emoji {
    font-size: 2.2rem;
    line-height: 1;
}

/* ✅ text color fix for dark cards */
.kf-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .kf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .kf-card:nth-child(n) {
        transition-delay: 0.08s;
    }
}

@media (max-width: 400px) {
    .kf-heading {
        font-size: 1.3rem;
    }

    .kf-section {
        padding: 50px 14px;
    }
}


.ph-section {
    position: relative;
    width: 100%;
    padding: 80px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #1565c0 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: center;
}

/* Network dots SVG background */
.ph-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='300'%3E%3Ccircle cx='60' cy='60' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='180' cy='40' r='2' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='300' cy='80' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='420' cy='30' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='540' cy='70' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='100' cy='160' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='240' cy='200' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='360' cy='150' r='2' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='480' cy='190' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='560' cy='240' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='30' cy='250' r='3' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='150' cy='280' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='450' cy='260' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Cline x1='60' y1='60' x2='180' y2='40' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='180' y1='40' x2='300' y2='80' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='300' y1='80' x2='420' y2='30' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='420' y1='30' x2='540' y2='70' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='60' y1='60' x2='100' y2='160' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='300' y1='80' x2='240' y2='200' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='240' y1='200' x2='360' y2='150' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='360' y1='150' x2='480' y2='190' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='480' y1='190' x2='560' y2='240' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='100' y1='160' x2='240' y2='200' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='30' y1='250' x2='150' y2='280' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='150' y1='280' x2='240' y2='200' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='450' y1='260' x2='480' y2='190' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 600px 300px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.ph-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ph-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.ph-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

/* Breadcrumb */
.ph-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-top: 4px;
}

.ph-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.ph-breadcrumb a:hover {
    color: #ffffff;
}

.ph-breadcrumb .ph-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.ph-breadcrumb .ph-current {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .ph-section {
        padding: 60px 20px;
    }

    .ph-title {
        font-size: 1.7rem;
    }

    .ph-desc {
        font-size: 0.85rem;
    }
}



.pg-section {
    padding: 70px 24px;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Each card — fixed height, inner scroll */
.pg-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    height: 420px;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pg-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

/* Scrollable image container */
.pg-img-wrap {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.pg-img-wrap::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.pg-img-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* Auto scroll on hover */
.pg-card:hover .pg-img-wrap {
    animation: autoScroll 4s linear forwards;
}

@keyframes autoScroll {
    0% {
        scroll-behavior: auto;
    }

    100% {
        transform: translateY(0);
    }
}

/* Overlay tag at bottom */
.pg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 20px 16px 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pg-card:hover .pg-overlay {
    opacity: 1;
}

.pg-tag {
    display: inline-block;
    background: #ffffff;
    color: #0d1b4b;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 900px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pg-grid {
        grid-template-columns: 1fr;
    }

    .pg-card {
        height: 360px;
    }

    .pg-section {
        padding: 50px 16px;
    }
}


.ct-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.ct-overlay.ct-show {
    opacity: 1;
    pointer-events: all;
}

.ct-overlay.ct-hiding {
    opacity: 0;
    pointer-events: none;
}

/* ---- Popup Box ---- */
.ct-box {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 880px;
    max-height: 82vh;
    overflow-y: auto;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    position: relative;
    display: flex;
    margin: 40px 0 4px 0;
    flex-direction: column;
    scrollbar-width: none;
    transform: scale(0.93) translateY(16px);
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    opacity: 0;
}

.ct-overlay.ct-show .ct-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.ct-box::-webkit-scrollbar {
    display: none;
}

/* ---- Close ---- */
.ct-x {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #555;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s;
    line-height: 1;
}

.ct-x:hover {
    background: #f0f0f0;
}

/* ---- Main Row ---- */
.ct-main {
    display: flex;
    min-height: 340px;
    border-bottom: 3px solid #e2e8f0;
}

/* ======= LEFT ======= */
.ct-L {
    flex: 0 0 40%;
    background: linear-gradient(155deg, #0b1842 0%, #162460 40%, #0b1842 100%);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 14px 0 0 0;
    position: relative;
    overflow: hidden;
}

.ct-L::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.ct-L-top {
    position: relative;
    z-index: 1;
}

.ct-L h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.ct-L-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Testimonial */
.ct-tcard {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: none;
}

.ct-tcard.ct-ton {
    display: block;
}

.ct-ttop {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ct-tavatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a3a8a, #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ct-stars {
    color: #ffc107;
    font-size: 0.88rem;
    letter-spacing: 1px;
}

.ct-ttext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.65;
    margin: 0 0 8px 0;
    font-style: italic;
}

.ct-tauthor {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.ct-tauthor strong {
    color: #fff;
    font-style: normal;
}

/* Arrows */
.ct-arrows {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.ct-arr {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ct-arr:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Bottom info */
.ct-L-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-L-bottom a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.ct-L-bottom a:hover {
    color: #fff;
}

.ct-L-bottom a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.ct-L-bottom a .ct-ico {
    font-size: 1rem;
}

/* ======= RIGHT ======= */
.ct-R {
    flex: 1;
    padding: 28px 28px 22px;
    display: flex;
    flex-direction: column;
}

.ct-R-eye {
    font-size: 0.78rem;
    color: #999;
    margin: 0 0 1px 0;
}

.ct-R h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d1b4b;
    margin: 0 0 18px 0;
    line-height: 1.3;
}

.ct-R h3 b {
    color: #1565c0;
    font-weight: 700;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ct-frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ct-fg {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ct-fg label {
    font-size: 0.74rem;
    color: #666;
    font-weight: 500;
}

.ct-fg label sup {
    color: #e53935;
}

.ct-fi,
.ct-fs,
.ct-fa {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #ddd;
    padding: 7px 0;
    font-size: 0.85rem;
    color: #222;
    background: transparent;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.22s;
}

.ct-fi:focus,
.ct-fs:focus,
.ct-fa:focus {
    border-bottom-color: #1565c0;
}

.ct-fi::placeholder,
.ct-fa::placeholder {
    color: #bbb;
}

.ct-fs {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 18px;
    color: #bbb;
}

.ct-fs.ct-picked {
    color: #222;
}

.ct-fa {
    resize: none;
    height: 46px;
}

/* Captcha */
.ct-cap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    background: #fafafa;
    width: fit-content;
}

.ct-chk {
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.2s;
    user-select: none;
}

.ct-chk.ct-checked {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.ct-cap-label {
    font-size: 0.8rem;
    color: #333;
}

.ct-cap-rc {
    margin-left: 6px;
    font-size: 0.58rem;
    color: #999;
    text-align: center;
    line-height: 1.4;
}

/* Send button — right aligned, not full width */
.ct-send-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 1px;
}

.ct-send {
    background: #0d1b4b;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.ct-send:hover {
    background: #162464;
    transform: translateY(-1px);
}

.ct-send:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ======= TRUST BAR ======= */
.ct-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 28px;
    border-top: 3px solid #e2e8f0;
    background: #f1f4f9;
    border-radius: 0 0 14px 14px;
    margin-top: 0px;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.04);
}

.ct-trust-txt h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0d1b4b;
    margin: 0 0 2px 0;
}

.ct-trust-txt p {
    font-weight: 700;
    font-size: 0.70rem;
    color: #666;
    margin: 0;
    max-width: 360px;
    line-height: 1.45;
}

.ct-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ct-jd-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #333;
}

.ct-jd-name em {
    color: #ff6600;
    font-style: normal;
}

.ct-jd-rev {
    font-size: 0.64rem;
    font-weight: 600;
    color: #555;
}

.ct-jd-str {
    color: #ffc107;
    font-size: 0.64rem;
}

.ct-bdg p {
    text-align: center;
    font-weight: 600;
}

.ct-bdg-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 2px;
}

.ct-bdg-icon.hs {
    background: #ff7a59;
}

.ct-bdg-icon.dr {
    background: #0d1b4b;
}

.ct-bdg p {
    font-size: 0.58rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* Error style */
.ct-fi.ct-err,
.ct-fs.ct-err {
    border-bottom-color: #e53935;
}

.ct-err-msg {
    font-size: 0.68rem;
    color: #e53935;
    margin-top: 2px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 680px) {
    .ct-main {
        flex-direction: column;
        min-height: unset;
    }

    .ct-L {
        border-radius: 14px 14px 0 0;
        padding: 22px 18px;
        display: none;
    }

    .ct-overlay {
        margin-top: -120px;
    }

    .ct-R {
        padding: 18px;
    }

    .ct-L h2 {
        font-size: 1.2rem;
    }

    .ct-frow {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .ct-trust {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 18px;
    }

    .ct-badges {
        gap: 10px;
    }
}

/* WhatsApp bubble - right bottom of left blue panel */
.ct-wa-bubble {
    position: absolute;
    bottom: 20px;
    margin-bottom: -20px;
    right: -8px;
    width: 66px;
    height: 66px;
    background: #ffffff;
    /*border-radius: 12%;
    */
    border-radius: 25px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: 2px solid #eeeeee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ct-wa-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.ct-wa-bubble img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}


/* blog */

.blog-hero {
    position: relative;
    width: 100%;
    padding: 80px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #1565c0 100%);
    text-align: center
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='300'%3E%3Ccircle cx='60' cy='60' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='180' cy='40' r='2' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='300' cy='80' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='420' cy='30' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='540' cy='70' r='3' fill='rgba(255,255,255,0.15)'/%3E%3Cline x1='60' y1='60' x2='180' y2='40' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='180' y1='40' x2='300' y2='80' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='300' y1='80' x2='420' y2='30' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cline x1='60' y1='60' x2='100' y2='160' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 600px 300px;
    pointer-events: none;
    z-index: 0
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.blog-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px 0
}

.blog-hero p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    margin: 0 0 16px 0
}

.bbc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .88rem
}

.bbc a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none
}

.bbc a:hover {
    color: #fff
}

.bbc .bsep {
    color: rgba(255, 255, 255, .4)
}

.bbc .bcur {
    color: #fff;
    font-weight: 600
}

/* ===== TAGS ===== */
.btag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px
}

.btag.web {
    background: #e3f2fd;
    color: #1565c0
}

.btag.mobile {
    background: #e8f5e9;
    color: #2e7d32
}

.btag.ai {
    background: #fce4ec;
    color: #c62828
}

.btag.design {
    background: #fff3e0;
    color: #e65100
}

.btag.ecom {
    background: #f3e5f5;
    color: #6a1b9a
}

.btag.seo {
    background: #e0f7fa;
    color: #00695c
}

/* ===== VIEWS ===== */
#blogListView,
#blogPostView {
    transition: opacity .3s ease
}

/* ===== LAYOUT ===== */
.blog-wrap {
    max-width: 1290px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start
}

/* ===== FILTERS ===== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px
}

.bfbtn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid #d0d5e8;
    background: #fff;
    color: #0d1b4b;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .22s;
    font-family: inherit
}

.bfbtn:hover,
.bfbtn.active {
    background: #0d1b4b;
    color: #fff;
    border-color: #0d1b4b
}

/* ===== FEATURED ===== */
.blog-featured {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    margin-bottom: 32px;
    display: flex;
    border: 1px solid #eef0f8;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer
}

.blog-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12)
}

.bfi {
    flex: 0 0 48%;
    min-height: 260px;
    overflow: hidden
}

.bfi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block
}

.blog-featured:hover .bfi img {
    transform: scale(1.04)
}

.bfb {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px
}

.bfbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.bstar {
    font-size: .72rem;
    color: #f57f17;
    font-weight: 600;
    background: #fff8e1;
    padding: 3px 10px;
    border-radius: 50px
}

.bfb h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d1b4b;
    line-height: 1.35
}

.bfb p {
    font-size: .86rem;
    color: #555;
    line-height: 1.75
}

.bmeta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.bmi {
    font-size: .74rem;
    color: #888
}

.bread-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d1b4b;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background .2s;
    width: fit-content
}

.bread-btn:hover {
    background: #1a2d72
}

/* ===== GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef0f8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    cursor: pointer
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .11)
}

.bci {
    width: 100%;
    height: 180px;
    overflow: hidden
}

.bci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block
}

.blog-card:hover .bci img {
    transform: scale(1.05)
}

.bcb {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1
}

.bcb h3 {
    font-size: .93rem;
    font-weight: 700;
    color: #0d1b4b;
    line-height: 1.4
}

.bcb p {
    font-size: .8rem;
    color: #666;
    line-height: 1.7;
    flex: 1
}

.bcf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px
}

.bclink {
    font-size: .76rem;
    font-weight: 600;
    color: #1565c0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0
}

.bclink:hover {
    gap: 8px
}

/* ===== PAGINATION ===== */
.blog-pag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    flex-wrap: wrap
}

.bpbtn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1.5px solid #d0d5e8;
    background: #fff;
    color: #0d1b4b;
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-family: inherit
}

.bpbtn:hover,
.bpbtn.active {
    background: #0d1b4b;
    color: #fff;
    border-color: #0d1b4b
}

.bpbtn:disabled {
    opacity: .35;
    cursor: not-allowed
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 90px
}

.bwid {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #eef0f8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
}

.bwid h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eaf6
}

.bsearch {
    display: flex;
    border: 1.5px solid #d0d5e8;
    border-radius: 8px;
    overflow: hidden
}

.bsearch input {
    flex: 1;
    border: none;
    padding: 9px 12px;
    font-size: .82rem;
    outline: none;
    font-family: inherit;
    color: #333
}

.bsearch input::placeholder {
    color: #bbb
}

.bsearch button {
    background: #0d1b4b;
    border: none;
    padding: 9px 14px;
    cursor: pointer;
    color: #fff;
    font-size: .9rem;
    transition: background .2s
}

.bsearch button:hover {
    background: #1a2d72
}

.bcat-list {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.bcat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    border: none;
    background: none;
    font-family: inherit;
    width: 100%;
    text-align: left
}

.bcat:hover {
    background: #f0f2f8
}

.bcat-name {
    font-size: .82rem;
    color: #333;
    font-weight: 500
}

.bcat-count {
    background: #e8eaf6;
    color: #3949ab;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px
}

.brecent {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.bri {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer
}

.bri:hover .brit {
    color: #1565c0
}

.bri-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0
}

.bri-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.brit {
    font-size: .78rem;
    font-weight: 600;
    color: #0d1b4b;
    line-height: 1.4;
    transition: color .2s
}

.brid {
    font-size: .68rem;
    color: #999;
    margin-top: 2px
}

.btags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.btaglink {
    display: inline-block;
    padding: 4px 12px;
    border: 1.5px solid #d0d5e8;
    border-radius: 50px;
    font-size: .72rem;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    background: none;
    font-family: inherit
}

.btaglink:hover {
    background: #0d1b4b;
    color: #fff;
    border-color: #0d1b4b
}

.bnews p {
    font-size: .79rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6
}

.bnews input {
    width: 100%;
    border: 1.5px solid #d0d5e8;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: .81rem;
    outline: none;
    font-family: inherit;
    margin-bottom: 8px;
    box-sizing: border-box;
    transition: border-color .2s
}

.bnews input:focus {
    border-color: #1565c0
}

.bnews button {
    width: 100%;
    background: linear-gradient(135deg, #1a237e, #1565c0);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit
}

/* ===== POST VIEW ===== */
#blogPostView {
    display: none
}

.post-hero {
    position: relative;
    width: 100%;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

.post-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 60, .92) 0%, rgba(10, 18, 60, .45) 60%, rgba(10, 18, 60, .15) 100%);
    z-index: 1
}

.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 24px 40px;
    width: 100%
}

.post-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.post-bc span {
    color: rgba(255, 255, 255, .5)
}

.post-bc a,
.post-bc button {
    color: rgba(255, 255, 255, .75);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: .8rem;
    padding: 0;
    text-decoration: none
}

.post-bc a:hover,
.post-bc button:hover {
    color: #fff
}

.post-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px
}

.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.post-meta-bar span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .75)
}

.post-wrap2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 24px 70px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: start
}

.post-article {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border: 1px solid #eef0f8
}

.post-article h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d1b4b;
    margin: 26px 0 10px;
    line-height: 1.35
}

.post-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1b4b;
    margin: 20px 0 8px
}

.post-article p {
    font-size: .91rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 14px
}

.post-article p:last-child {
    margin-bottom: 0
}

.post-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d1b4b;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    margin-bottom: 24px;
    transition: background .2s
}

.post-back-btn:hover {
    background: #1a2d72
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #eef0f8;
    flex-wrap: wrap
}

.post-share span {
    font-size: .83rem;
    font-weight: 600;
    color: #0d1b4b
}

.sbtn {
    padding: 7px 16px;
    border-radius: 8px;
    border: none;
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .2s
}

.sbtn:hover {
    opacity: .85
}

.sbtn.tw {
    background: #1da1f2;
    color: #fff
}

.sbtn.li {
    background: #0077b5;
    color: #fff
}

.sbtn.wa {
    background: #25d366;
    color: #fff
}

.sbtn.cp {
    background: #f0f2f8;
    color: #0d1b4b
}

.post-related {
    margin-top: 32px
}

.post-related h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 16px
}

.rel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.rel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef0f8;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s
}

.rel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1)
}

.rel-img {
    width: 100%;
    height: 120px;
    overflow: hidden
}

.rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.rel-card:hover .rel-img img {
    transform: scale(1.06)
}

.rel-body {
    padding: 12px
}

.rel-body h4 {
    font-size: .81rem;
    font-weight: 700;
    color: #0d1b4b;
    line-height: 1.4;
    margin-bottom: 4px
}

.rel-body span {
    font-size: .7rem;
    color: #888
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px
}

.cta-wid {
    background: linear-gradient(135deg, #0d1b4b, #1565c0);
    border-radius: 14px;
    padding: 20px;
    text-align: center
}

.cta-wid h4 {
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 7px
}

.cta-wid p {
    color: rgba(255, 255, 255, .8);
    font-size: .76rem;
    line-height: 1.6;
    margin-bottom: 12px
}

.cta-wid button {
    width: 100%;
    background: #fff;
    color: #0d1b4b;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: .81rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .2s
}

.cta-wid button:hover {
    opacity: .9
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

    .blog-wrap,
    .post-wrap2 {
        grid-template-columns: 1fr
    }

    .blog-sidebar,
    .post-sidebar {
        position: static
    }
}

@media(max-width:768px) {
    .blog-featured {
        flex-direction: column
    }

    .bfi {
        flex: 0 0 auto;
        min-height: 190px
    }

    .bfb {
        padding: 22px
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .blog-hero h1 {
        font-size: 1.7rem
    }

    .post-title {
        font-size: 1.5rem
    }

    .post-article {
        padding: 22px 18px
    }

    .rel-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {

    .blog-wrap,
    .post-wrap2 {
        padding: 32px 14px 50px
    }
}