@import url('https://use.typekit.net/your-kit-id.css');

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

body {
    background: #ffffff;
    font-family: "din-next-w1g", "DIN Next W1G", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

a {
    text-decoration: none;
    outline: none;
}

/*====================================== Header CSS Strat ================================*/
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-bottom: 1px solid #CCCCCC;
    padding: 0 40px;
    height: 80px;
    position: relative;
    top: 0;
    position: sticky;
    z-index: 99;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding-right: 40px;
    border-right: 1px solid #CCCCCC;
    height: 100%;
}

.nav-logo img {
    max-height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links li a {
    color: #010101;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #031F55;
}


.custom-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.custom-dropdown.is-open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 180px;
    list-style: none;
    display: none;
    z-index: 1000;
    margin-top: 10px;
}

.custom-dropdown.is-open .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #1a202c;
}

.dropdown-menu-custom li a:hover {
    background-color: #f7fafc;
    color: #052356;
}

.nav-action {
    display: flex;
    align-items: center;
    padding-left: 40px;
    border-left: 1px solid #CCCCCC;
    height: 100%;
}

.btn-contact {
    background-color: #031F55;
    color: #FEFEFE;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-contact:hover{
    color: #FEFEFE;
}
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #031F55;
    z-index: 1005;
}

/* Mobile & Tablet Responsive Query */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo,
    .nav-action {
        border: none;
        padding: 0;
    }

    .hamburger {
        display: block !important;
    }


    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid #CCCCCC;
        display: none !important;
        z-index: 1000;
    }


    .nav-links.open {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background-color: #f7fafc;
        width: 100%;
    }

    .nav-action {
        display: none;
    }
}

/*=============================Header CSS END===========================================*/

/*===============================Footer CSS Start======================================*/
/*.site-footer {
    width: 100%;
    background-color: #010101;
    color: #ffffff;
}

.footer-main {
    padding: 80px 0 60px 0;
}

.footer-container {
    
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}


.footer-brand {
    max-width: 480px;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
    margin-bottom: 30px;

    filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-author {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0;
}


.footer-links-wrapper {
    max-width: 480px;
}

.footer-links-title {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFFCC;
    margin-bottom: 24px;
}


.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    row-gap: 16px;
    column-gap: 30px;
}

.footer-links-list li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list li a:hover {
    color: #ffffff;
}


.footer-bottom {
    background-color: #031F55;
    padding: 24px 0;
}

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

.copyright-text {
    color: #FEFEFE;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
}

.legal-links li a {
    color: #FEFEFE;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease
}

.legal-links li a:hover {
    opacity: 0.8;
}


@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-heading {
        font-size: 22px;
    }

    .footer-links-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .footer-links-list {
        grid-template-columns: 1fr;
    }

    .legal-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}*/

/*===============================Footer CSS End======================================*/
/*===============================Blog Banner CSS Start======================================*/
.blog-banner-section {
    width: 100%;
    padding: 40px 0;
    background-color: #ffffff;
}

.banner-container {
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 40px;
}


.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-link {
    color: #7D7D7D;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #031F55;
}

.breadcrumb-separator {
    color: #718096;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.breadcrumb-current {
    color: #0D0D0D;
    font-weight: 500;
    font-size: 20px;
}


.banner-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.1) 40%, 
    rgba(0, 0, 0, 0.75) 100%
  );*/
    z-index: 2;
}


.banner-tags {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.tag-badge {
    background-color: #F9F9FB;
    color: #0D0D0D;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.banner-title {
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin: -75px 20px;
}


@media (max-width: 992px) {
    .banner-container {
        padding: 0 20px;
    }

    .banner-card {
        height: 380px;
        padding: 24px;
    }

    .banner-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .blog-banner-section {
        padding: 20px 0;
    }

    .banner-card {
        height: 300px;
        padding: 16px;
        border-radius: 12px;
    }

    .banner-title {
        font-size: 24px;
    }

    .tag-badge {
        padding: 4px 12px;
        font-size: 13px;
    }

    .breadcrumb-nav {
        font-size: 14px;
        flex-wrap: wrap;
    }
}

/*===============================Blog Banner CSS End======================================*/
/*=============================== Blog Content & Watermark CSS Strat ===============================*/


.blog-content-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

.bg-watermark-logo {
    position: absolute;
    top: 50%;
    left: 32.5%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 600px;
    pointer-events: none;
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    /*max-width: 1280px;*/
    margin: 0 auto;
    padding: 0 24px;
}


.blog-layout-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch; 
}


.blog-main-content {
    flex: 1;
    min-width: 0;
}

.content-container h2,
.content-container h3 {
    color: #031F55;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-container h2 {
    font-size: 16px;
}

.content-container h3 {
    font-size: 20px;
    margin-left: 0;
}


.content-container p {
    color: #808080;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-container p.lead-text {
    font-size: 16px;
    font-weight: 400;
    color: #808080;
}

.content-container p.app-item {
    margin-bottom: 18px;
    padding-left: 4px;
}

.content-container p.app-item strong {
    color: #808080;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}

/*===============================
  Sticky Right Sidebar Styles
===============================*/

.blog-sidebar {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    align-self: flex-start; 
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
}


.handles-card {
        background-color: #031F5526;
    padding: 24px;
    border-radius: 8px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1a30 !important;
    margin-bottom: 20px !important;
}

.sidebar-links-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-links-list li a {
        display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 14px 18px;
    border-radius: 6px;
    text-decoration: none;
    color: #010101;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-links-list li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-links-list li a span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-links-list li a .arrow {
    font-size: 16px;
    margin-left: 10px;
}


.help-banner-card {
    /*border-radius: 8px;*/
    position: relative;
    overflow: hidden;
    height: 290px;
    background: linear-gradient(rgba(3, 31, 85, 0.85), rgba(3, 31, 85, 0.85)), url('../images/resource-contact-img.svg') center/cover no-repeat;
}

.banner-body {
    padding: 36px 24px 28px 24px;
        height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    bottom: 80px;
}

.banner-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.banner-email {
        color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.banner-email:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

.banner-phone-bar {
        display: flex;
    align-items: center;
    gap: 12px;
    background-color: #031f55;
    padding: 16px 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.25s ease;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.banner-phone-bar:hover {
    color: #ffffff;
}

/*===============================
  Responsive Media Queries
===============================*/

@media (max-width: 992px) {
    .blog-content-section {
        padding: 40px 0;
    }

    .content-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .blog-layout-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .blog-sidebar {
        width: 100%;
        position: static;
    }

    .bg-watermark-logo {
        width: 85%;
    }

    .content-container h2 {
        font-size: 24px;
    }

    .content-container h3 {
        font-size: 20px;
    }

    .content-container p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .blog-content-section {
        padding: 30px 0;
    }

    .bg-watermark-logo {
        width: 95%;
    }

    .content-container h2 {
        font-size: 22px;
        margin-top: 24px;
    }

    .content-container h3 {
        font-size: 18px;
        margin-top: 24px;
    }

    .content-container p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .content-container p.app-item {
        margin-bottom: 14px;
    }
}

/*=============================== Blog Content & Watermark CSS END ===============================*/

/*=============================== Related Blogs Slider CSS Strat===============================*/
.related-blogs-section {
    width: 100%;
    padding: 0px 0 60px 0;
    background-color: #ffffff;
}

.related-container {
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 40px;
}


.related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slick-prev-custom,
.slick-next-custom {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #000000;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-next-custom {
    background-color: #031F55;
    color: #ffffff;
    border-color: #031F55;
}

.slick-prev-custom:hover {
    background-color: #f7fafc;
}

.slick-next-custom:hover {
    background-color: #02163d;
}


.related-blog-slider {
    margin: 0 -12px;
}

.blog-card-item {
    padding: 0 12px;
}


.blog-card {
    background: #ffffff;
    padding-bottom: 20px;
    border-bottom: 1px solid #D6D6D6;
}

.card-img-box {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    color: #0D0D0D;
    margin-bottom: 12px;
}

.author-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.author-meta .dot {
    font-weight: bold;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.card-title a {
    color: #0D0D0D;
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #031F55;
}

.card-desc {
    font-size: 18px;
    font-weight: 400;
    color: #808080;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 992px) {
    .related-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-img-box {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .related-blogs-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .slick-prev-custom,
    .slick-next-custom {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/*=============================== Related Blogs Slider CSS END===============================*/


/*=============================== Static Grid Related Blogs CSS Strat ===============================*/


.bl-list-section {
    width: 100%;
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.bl-container {
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 30px;
}

.bl-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #010101;
    margin-bottom: 32px;
}


.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
    margin-bottom: 50px;
}


.bl-card {
    display: flex;
    flex-direction: column;
}

.bl-img-box {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.bl-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bl-author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #0D0D0D;
    font-weight: 400;
    margin-bottom: 10px;
}

.bl-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}


.bl-title {
    font-size: 24px;
    font-weight: 400;
    color: #0D0D0D;
    line-height: 1.35;
    margin-bottom: 10px;
}

.bl-title a {
    color: #0D0D0D;
    text-decoration: none;
}

.bl-desc {
    font-size: 18px;
    color: #808080;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}


.bl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    border-top: 1px solid #7D7D7D;
    border-bottom: 1px solid #7D7D7D;
    gap: 50px;
}

.bl-page-nav {
    font-size: 20px;
    font-weight: 400;
    color: #031F55;
    text-decoration: none;
}

.bl-page-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bl-page-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #7D7D7D;
    text-decoration: none;
}

.bl-page-item.active {
    background-color: #031F55;
    color: #ffffff;
}

.bl-page-dots {
    color: #98a2b3;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 0 4px;
}

a.bl-page-nav:hover {
    color: #031F55;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .bl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bl-grid {
        grid-template-columns: 1fr;
    }

    .bl-pagination {
        flex-direction: row;
        gap: 16px;
    }
}

/*=============================== Static Grid Related Blogs CSS Strat ===============================*/


/*============================== Phlex Hero Banner Unique CSS Strat =========================*/
.phlex-hero-banner {
    position: relative;
    width: 100%;
    height: 860px;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: #0a0a0a url('../images/blod-banner.svg') no-repeat center center / cover;
    color: #ffffff;
    padding: 80px 0 40px;
    overflow: hidden;
    box-sizing: border-box;
}


.phlex-hero-banner-fiber {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: #0a0a0a url('../images/fibersizing.png') no-repeat center center / cover; */
  background:
  linear-gradient(90deg, rgba(1,1,1,0.95) 0%, rgba(1,1,1,0.7) 50%, rgba(1,1,1,0) 100%),
  url('../images/fibersizing.png') no-repeat center center / cover;
  color: #ffffff;
  padding: 80px 0 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.phlex-hero-overlay-fiber {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(0, 0, 0, 0.92) 0%, 
    rgba(0, 0, 0, 0.75) 45%, 
    rgba(0, 0, 0, 0.2) 100%
  );

 z-index: 1;
}

.phlex-hero-banner-spcf {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0a0a url('../images/spcf.png') no-repeat center center / cover;
  color: #ffffff;
  padding: 80px 0 40px;
  overflow: hidden;
  box-sizing: border-box;
}



.phlex-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(
    90deg, 
    rgba(0, 0, 0, 0.92) 0%, 
    rgba(0, 0, 0, 0.75) 45%, 
    rgba(0, 0, 0, 0.2) 100%
  );
*/


    z-index: 1;
}

.phlex-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    /*max-width: 1360px;*/
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 120px);
}

.phlex-hero-content {
    max-width: 790px;
    margin-top: auto;
    margin-bottom: auto;
}


.phlex-hero-title {
    font-size: 70px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FEFEFE;
    margin-bottom: 24px;
    line-height: 1.1;
}


.phlex-hero-subtitle {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    color: #FEFEFE;
    margin-bottom: 28px;
}


.phlex-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #FEFEFE;
    margin-bottom: 20px;
    font-weight: 400;
}

.phlex-hero-desc:last-of-type {
    margin-bottom: 0;
}


.phlex-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    text-align: center;
}

.phlex-hero-scroll span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #FEFEFE;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.phlex-hero-scroll-icon {
    font-size: 20px;
    color: #ffffff;
    animation: phlexHeroBounce 2s infinite;
}


@keyframes phlexHeroBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1200px) {
    .phlex-hero-title {
        font-size: 46px;
    }

    .phlex-hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .phlex-hero-banner {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .phlex-hero-overlay {
        background: rgba(0, 0, 0, 0.85);
    }

    .phlex-hero-content {
        max-width: 100%;
    }

    .phlex-hero-title {
        font-size: 38px;
    }

    .phlex-hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .phlex-hero-container {
        padding: 0 20px;
    }

    .phlex-hero-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .phlex-hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .phlex-hero-desc {
        font-size: 14px;
    }
}

.phlex-hero-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}


.phlex-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
    letter-spacing: 0.2px;
}

.phlex-hero-btn.phlex-hero-btn-white img {
    height: 30px;
}

.phlex-hero-btn-white {
    background-color: #ffffff;
    color: #031F55;
    border: 1px solid #ffffff;
}

.phlex-hero-btn-white:hover {
    background-color: #f1f5f9;
    color: #0d1b2a;
    transform: translateY(-1px);
}

.phlex-hero-btn-white i {
    font-size: 18px;
    line-height: 1;
}


.phlex-hero-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.phlex-hero-btn-outline:hover {
    background-color: #ffffff;
    color: #0d1b2a;
    transform: translateY(-1px);
}


@media (max-width: 576px) {
    .phlex-hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .phlex-hero-btn {
        width: 100%;
    }
}

/*============================== Phlex Hero Banner Unique CSS END =========================*/


/*=========================== Phlex Options Section Unique CSS Strat=============================*/
.phlex-options-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}


.phlex-options-watermark {
    position: absolute;
    top: 65px;
    left: -33px;
    width: 220px;
    height: auto;
    /* opacity: 0.12; */
    pointer-events: none;
    z-index: 1;
}

.phlex-options-container {
    position: relative;
    z-index: 2;
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 32px;
}


.phlex-options-header {
    text-align: center;
    max-width: 1220px;
    margin: 0 auto 50px auto;
}

.phlex-options-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #010101;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.phlex-options-subtitle {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #7D7D7D;
    margin-bottom: 16px;
}

.phlex-options-subtitle-sub {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #7D7D7D;
    margin: 0;
}


.phlex-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.phlex-options-card {
    position: relative;
    min-height: 480px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-strat;
    padding: 48px;
    box-sizing: border-box;
}


.phlex-options-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    /* height: 100%; */
    height: 80%;
    object-fit: cover;
    z-index: 1;
}


.phlex-options-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(59.62% 62.49% at 96.62% 20.47%, rgba(125, 125, 125, 0) 0%, rgba(125, 125, 125, 0.54) 29.01%, rgba(125, 125, 125, 0.76) 60.58%, #7d7d7d 100%);
}

.phlex-options-card-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(86.21% 98.02% at 92.46% 9.05%, rgba(3, 31, 85, 0) 0%, rgba(3, 31, 85, 0.55) 33.81%, rgba(3, 31, 85, 0.81) 57.66%, #031F55 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phlex-options-card:hover .phlex-options-card-overlay::after {
    opacity: 1;
}

.phlex-overlay-grey,
.phlex-overlay-blue {
    background: none !important;
}


.phlex-options-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.phlex-options-number {
    display: block;
    font-size: 48px;
    font-weight: 500;
    color: #FEFEFE;
    margin-bottom: 24px;
    line-height: 1;
}

.phlex-options-card-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: #FEFEFE;
    margin-bottom: 20px;
}

.phlex-options-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #FEFEFE;
    margin-bottom: 12px;
    font-weight: 400;
}

.phlex-options-card-text:last-of-type {
    margin-bottom: 0;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 992px) {
    .phlex-options-watermark {
        width: 160px;
    }

    .phlex-options-main-title {
        font-size: 32px;
    }

    .phlex-options-grid {
        grid-template-columns: 1fr;
    }

    .phlex-options-card {
        min-height: 400px;
        padding: 32px;
    }

    .phlex-options-number {
        font-size: 38px;
    }

    .phlex-options-card-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .phlex-options-section {
        padding: 50px 0;
    }

    .phlex-options-watermark {
        width: 120px;
    }

    .phlex-options-container {
        padding: 0 16px;
    }

    .phlex-options-main-title {
        font-size: 26px;
    }

    .phlex-options-subtitle,
    .phlex-options-subtitle-sub {
        font-size: 14px;
    }

    .phlex-options-card {
        padding: 24px;
        min-height: 360px;
    }

    .phlex-options-card-title br {
        display: none;
    }
}

/*=========================== Phlex Options Section Unique CSS END=============================*/

/*==========================Phlex Process Section Unique CSS Strat==========================*/
.phlex-process-section {
    width: 100%;
    background-color: #031f55;
    padding: 40px 0;
    color: #fefefe;
    box-sizing: border-box;
    overflow: hidden;
}

.phlex-process-container {
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 32px;
}


.phlex-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.phlex-process-content {
    max-width: 580px;
}

.phlex-process-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #fefefe;
    margin-bottom: 24px;
}

.phlex-process-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #fefefe;
    margin-bottom: 28px;
    opacity: 0.95;
}


.phlex-process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin-bottom: 28px;
}

.phlex-process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #fefefe;
}

.phlex-process-item i {
    font-size: 20px;
    color: #fefefe;
}


.phlex-process-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phlex-process-graphic-wrapper {
    width: 100%;
    max-width: 620px;
}

.phlex-process-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1199px) {
    .phlex-process-title {
        font-size: 40px;
    }

    .phlex-process-desc,
    .phlex-process-item {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .phlex-process-section {
        padding: 70px 0;
    }

    .phlex-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phlex-process-content {
        max-width: 100%;
    }

    .phlex-process-graphic-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .phlex-process-section {
        padding: 50px 0;
    }

    .phlex-process-container {
        padding: 0 20px;
    }

    .phlex-process-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .phlex-process-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .phlex-process-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .phlex-process-item {
        font-size: 15px;
    }
}

/*==========================Phlex Process Section Unique CSS END==========================*/


/*==========================Phlex Flexibility Section Unique CSS Start======================*/
.phlex-flexibility-section {
    width: 100%;
    background-color: #ffffff;
    padding: 35px 0;
    box-sizing: border-box;
}

.phlex-flexibility-container {

    margin: 0 auto;
    padding: 0 32px;
}


.phlex-flexibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.phlex-flexibility-content {
    max-width: 580px;
}

.phlex-flexibility-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
    color: #010101;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.phlex-flexibility-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
    color: #7D7D7D;
    margin-bottom: 24px;
}

.phlex-flexibility-desc:last-child {
    margin-bottom: 0;
}


.phlex-flexibility-media {
    width: 100%;
}

.phlex-flexibility-img-box {
    position: relative;
    width: 100%;
    height: 496px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000000;
}

.phlex-flexibility-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1199px) {
    .phlex-flexibility-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .phlex-flexibility-section {
        padding: 70px 0;
    }

    .phlex-flexibility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phlex-flexibility-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .phlex-flexibility-section {
        padding: 50px 0;
    }

    .phlex-flexibility-container {
        padding: 0 20px;
    }

    .phlex-flexibility-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .phlex-flexibility-desc {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

/*==========================Phlex Flexibility Section Unique CSS END======================*/

/*=========================Phlex Typical Properties Table CSS Strat=============================*/
.phlex-props-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-props-container {
    /*max-width: 1100px;*/
    margin: 0 auto;
    padding: 0 24px;
}

.phlex-props-title {
    font-size: 48px;
    font-weight: 500;
    color: #010101;
    text-align: center;
    margin-bottom: 40px;
}


.phlex-props-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.phlex-props-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 12px 10px;
    margin: 0 auto;
}
table.phlex-props-table td:hover {
    /* background: #031F551A; */
}

.phlex-props-table th {
    background-color: #031f55;
    color: #fefefe;
    font-size: 24px;
    font-weight: 500;
    padding: 18px 24px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #7d7d7d;
}

.phlex-props-th-left {
    width: 35%;
}

.phlex-props-th-right {
    width: 65%;
}


.phlex-props-subhead-row td {
    background-color: #031f55 !important;
    color: #fefefe !important;
    font-size: 24px !weight: 500;
    font-weight: 500;
    text-align: center !important;
    border-radius: 8px;
    border: 1px solid #7d7d7d;
    padding: 18px 24px;
}


.phlex-props-divider-row td {
    background-color: #7d7d7d !important;
    color: #fefefe !important;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid #7d7d7d;
}


.phlex-props-table td {
    padding: 16px 24px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #7d7d7d;
    background-color: #ffffff;
    box-sizing: border-box;
}


.phlex-props-label {
    color: #031f55;
    font-weight: 600;
    text-align: center;
}


.phlex-props-val {
    color: #010101;
    text-align: center;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 992px) {
    .phlex-props-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .phlex-props-table th,
    .phlex-props-subhead-row td,
    .phlex-props-divider-row td {
        font-size: 20px;
        padding: 14px 18px;
    }

    .phlex-props-table td {
        font-size: 16px;
        padding: 14px 18px;
    }
}

@media (max-width: 576px) {
    .phlex-props-section {
        padding: 50px 0;
    }

    .phlex-props-container {
        padding: 0 16px;
    }

    .phlex-props-title {
        font-size: 30px;
    }

    .phlex-props-table {
        border-spacing: 6px 6px;
        min-width: 600px;
    }

    .phlex-props-table th,
    .phlex-props-subhead-row td,
    .phlex-props-divider-row td {
        font-size: 16px;
        padding: 12px 10px;
    }

    .phlex-props-table td {
        font-size: 14px;
        padding: 12px 10px;
    }
}

/*=====================Phlex Typical Properties Table CSS END=============================*/

/*=========================Phlex Available Areal Weights CSS Strat==========================*/
.phlex-weights-section {
    position: relative;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 90px 0;
    background-color: #050505;
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}


.phlex-weights-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


.phlex-weights-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}


.phlex-weights-container {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}


.phlex-weights-title {
    font-size: 48px;
    font-weight: 500;
    color: #FEFEFE;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}


.phlex-weights-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}


.phlex-weight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}


.phlex-weight-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #7D7D7D;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phlex-weight-icon-box i {
    font-size: 28px;
    color: #ffffff;
}


.phlex-weight-val {
    font-size: 32px;
    font-weight: 500;
    color: #FEFEFE;
    margin: 0;
    line-height: 1;
}


.phlex-weight-divider {
    width: 1px;
    height: 90px;
    background-color: #FFFFFF;
}


.phlex-weights-footer-text {
    font-size: 18px;
    font-weight: 500;
    color: #FEFEFE;
    margin: 0;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 992px) {
    .phlex-weights-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .phlex-weight-val {
        font-size: 30px;
    }

    .phlex-weight-divider {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .phlex-weights-grid {
        flex-direction: column;
        gap: 30px;
    }

    .phlex-weight-divider {
        width: 60%;
        height: 1px;
    }

    .phlex-weights-title {
        font-size: 30px;
    }

    .phlex-weight-val {
        font-size: 28px;
    }

    .phlex-weights-footer-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .phlex-weights-section {
        padding: 60px 0;
    }

    .phlex-weight-icon-box {
        width: 54px;
        height: 54px;
    }

    .phlex-weight-icon-box i {
        font-size: 22px;
    }
}

/*=========================Phlex Available Areal Weights CSS END==========================*/

/*========================Phlex CTA Requirement Section CSS Strat===========================*/
.phlex-cta-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    background-color: #031f55;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.phlex-cta-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* object-fit: cover;
    object-position: center right;
    z-index: 1; */
}


.phlex-cta-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10%;
    height: 100%;
    background: linear-gradient(90deg,
        #031F55 0%,
        rgba(3, 31, 85, 0) 100%);
    z-index: 2;
}

.phlex-cta-container {
    position: relative;
    z-index: 3;
    /*max-width: 1320px;*/
    width: 100%;
    margin: 0 auto;
    padding: 80px 32px;
}

.phlex-cta-content {
    max-width: 580px;
}


.phlex-cta-title {
    font-size: 48px;
    font-weight: 500;
    color: #fefefe;
    line-height: 1.2;
    margin-bottom: 24px;
}


.phlex-cta-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #fefefe;
    margin-bottom: 20px;
    opacity: 0.95;
}

.phlex-cta-desc:last-of-type {
    margin-bottom: 36px;
}


.phlex-cta-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.phlex-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
}


.phlex-cta-btn-white {
    background-color: #ffffff;
    color: #031f55;
    border: 1px solid #ffffff;
    height: 55px;
}

.phlex-cta-btn-white:hover {
    background-color: #f1f5f9;
    color: #031f55;
    transform: translateY(-2px);
}

.phlex-cta-btn-white i {
    font-size: 18px;
    line-height: 1;
}


.phlex-cta-btn-outline {
    background-color: transparent;
    color: #fefefe;
    border: 1px solid #ffffff;
}

.phlex-cta-btn-outline:hover {
    background-color: #ffffff;
    color: #031f55;
    transform: translateY(-2px);
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1199px) {
    .phlex-cta-title {
        font-size: 40px;
    }

    .phlex-cta-desc {
        font-size: 16px;
    }

   /* .phlex-cta-bg-img {
        width: 65%;
    }*/
}

@media (max-width: 991px) {
    .phlex-cta-section {
        min-height: auto;
    }

    /*.phlex-cta-bg-img {
        width: 100%;
        opacity: 0.25;
    }*/

    .phlex-cta-overlay {
        background: linear-gradient(180deg, #031f55 0%, rgba(3, 31, 85, 0.95) 100%);
    }

    .phlex-cta-container {
        padding: 60px 24px;
    }

    .phlex-cta-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .phlex-cta-container {
        padding: 50px 20px;
    }

    .phlex-cta-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .phlex-cta-desc {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .phlex-cta-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .phlex-cta-btn {
        width: 100%;
    }
}

/*========================Phlex CTA Requirement Section CSS Strat===========================*/

/*==================================Phlex FAQ Section Custom CSS Strat=========================*/
.phlex-faq-section {
    width: 100%;
    padding: 90px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-faq-container {
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 32px;
}


.phlex-faq-main-title {
    font-size: 44px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}


.phlex-faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}


.phlex-custom-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.phlex-custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background-color: transparent;
    border-radius: 0 !important;
}

.phlex-custom-accordion .accordion-item:first-child {
    border-top: none;
}

.phlex-custom-accordion .accordion-button {
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background-color: transparent;
    box-shadow: none !important;
}

.phlex-custom-accordion .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    transform: rotate(0deg) !important;
}

/* Custom Accordion Chevron Icon */
.phlex-custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M12 10.8284L16.95 15.7782L18.364 14.364L12 8L5.63604 14.364L7.05025 15.7782L12 10.8284Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px;
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease-in-out;
}

.phlex-custom-accordion .accordion-button.collapsed::after {
    transform: rotate(180deg);
}

.phlex-custom-accordion .accordion-body {
    padding: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.65;
    color: #666666;
    font-weight: 400;
}


.phlex-faq-card {
    background-color: #f3f5f8;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.phlex-faq-card-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phlex-faq-card-icon i {
    font-size: 48px;
    color: #031f55;
}

.phlex-faq-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.phlex-faq-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 28px;
}

.phlex-faq-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /*width: 100%;*/
    padding: 14px 20px;
    background-color: #031f55;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
}

.phlex-faq-card-btn:hover {
    background-color: #021740;
    color: #ffffff;
    transform: translateY(-2px);
}

.phlex-faq-card-btn i {
    font-size: 16px;
    line-height: 1;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1199px) {
    .phlex-faq-grid {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .phlex-faq-section {
        padding: 70px 0;
    }

    .phlex-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .phlex-faq-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .phlex-faq-section {
        padding: 50px 0;
    }

    .phlex-faq-container {
        padding: 0 20px;
    }

    .phlex-faq-main-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .phlex-custom-accordion .accordion-button {
        font-size: 16px;
        padding: 18px 0;
    }

    .phlex-custom-accordion .accordion-body {
        font-size: 14px;
    }
}

/*==================================Phlex FAQ Section Custom CSS END=========================*/

/*========================== Index Banner CSS Strat =====================================*/
.phlex-hero-banner.home-page {
    background: #0a0a0a url(../images/home-banner-img.svg) no-repeat center center / cover;
}

/*========================== Index Banner CSS END =====================================*/

/*==========================Phlex Advanced Manufacturing CSS Strat=========================*/
.phlex-adv-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-adv-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}


.phlex-adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.phlex-adv-heading-wrapper {
    position: relative;
    padding-top: 10px;
}


.phlex-adv-watermark {
    position: absolute;
    top: -60px;
    left: -20px;
    width: 388px;
    /* opacity: 0.12; */
    pointer-events: none;
    z-index: 1;
}


.phlex-adv-title {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    color: #010101;
    margin: 0;
}

.phlex-adv-blue-text {
    color: #031f55;
}

.phlex-adv-content {
    padding-top: 8px;
}

.phlex-adv-subtext {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #7d7d7d;
    margin-bottom: 24px;
}

.phlex-adv-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #7d7d7d;
    margin: 0;
}

.phlex-adv-desc strong {
    color: #031F55;
    font-weight: 500;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1199px) {
    .phlex-adv-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .phlex-adv-section {
        padding: 60px 0;
    }

    .phlex-adv-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .phlex-adv-watermark {
        width: 220px;
        top: -15px;
        left: -10px;
    }
}

@media (max-width: 576px) {
    .phlex-adv-section {
        padding: 40px 0;
    }

    .phlex-adv-container {
        padding: 0 20px;
    }

    .phlex-adv-title {
        font-size: 32px;
    }

    .phlex-adv-subtext,
    .phlex-adv-desc {
        font-size: 15px;
    }
}

/*==============================Phlex Advanced Manufacturing CSS END============================*/
/*=====================Phlex Carbon Fiber Products Grid CSS Strat===========================*/
.phlex-products-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-products-container {
    /*max-width: 1280px;*/
    margin: 0 auto;
    padding: 0 24px;
}

/* Title Styling */
.phlex-products-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.phlex-products-title span {
    color: #001b54;
}


.phlex-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Base Card Style */
.phlex-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 540px;
    padding: 36px 32px 0 32px;
    border-radius: 2px;
    overflow: hidden;
    box-sizing: border-box;
}


.card-gray {
    background-color: #616161;
    color: #ffffff;
}

.card-gray .phlex-card-overlay {
    background: linear-gradient(180deg, #616161 0%, rgba(97, 97, 97, 0) 100%);
}


.card-blue {
    background-color: #001b54;
    color: #ffffff;
}

.card-blue .phlex-card-overlay {
    background: linear-gradient(180deg, #001b54 0%, rgba(0, 27, 84, 0) 100%);
}

/* Card Content Area */
.phlex-card-content {
    position: relative;
    z-index: 3;
}

.phlex-card-num {
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin-right: 28px;
    min-width: 60px;
    letter-spacing: -1px;
}

.phlex-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #FEFEFE;
    margin-bottom: 16px;
    line-height: 1.3;
}

.phlex-card-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    color: #FEFEFE;
    margin: 0;
}


.phlex-card-img-wrapper {
    position: relative;
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-right: -32px;
    height: 220px;
    margin-top: 20px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
}

.phlex-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.phlex-card-overlay {
    display: none;
}

   .phlex-product-card {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.phlex-product-card:hover {
    background-color: #001b54;
    color: #fff;
}

.phlex-product-card:hover .phlex-card-img-wrapper img {
    filter: sepia(1) saturate(3) hue-rotate(175deg) brightness(0.7);
    transition: filter 0.3s ease;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1100px) {
    .phlex-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .phlex-products-section {
        padding: 60px 0;
    }

    .phlex-products-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    .phlex-products-grid {
        grid-template-columns: 1fr;
    }

    .phlex-product-card {
        min-height: auto;
        padding: 28px 24px 0 24px;
    }

    .phlex-card-img-wrapper {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .phlex-products-title {
        font-size: 26px;
    }

    .phlex-card-num {
        font-size: 30px;
    }

    .phlex-card-title {
        font-size: 19px;
    }
}

/*=====================Phlex Carbon Fiber Products Grid CSS END===========================*/

/*======================Phlex Demanding Applications CSS Strat ===========================*/
.phlex-apps-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-apps-container {
    /*max-width: 1320px;*/
    margin: 0 auto;
    padding: 0 32px;
}


.phlex-apps-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}


.phlex-apps-title {
    font-size: 48px;
    font-weight: 500;
    color: #010101;
    line-height: 1.15;
    margin-bottom: 20px;
}

.phlex-blue-text {
    color: #031F55;
}

.phlex-apps-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #7D7D7D;
    font-weight: 400;
    margin-bottom: 16px;
}

.phlex-apps-subtext strong {
    color: #031F55;
    font-weight: 500;
}

.phlex-apps-caption {
    font-size: 18px;
    color: #7d7d7d;
    font-weight: 400;
    margin-bottom: 24px;
}


.phlex-apps-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phlex-tab-item {
    border: 1px solid #dcdcdc;
    padding: 16px 20px;
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.phlex-tab-title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.phlex-tab-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #7D7D7D;
    margin: 0;
    transition: color 0.3s ease;
}

.phlex-tab-item.active {
    background-color: #031F55;
    border-color: #031F55;
}

.phlex-tab-item.active .phlex-tab-title,
.phlex-tab-item.active .phlex-tab-desc {
    color: #ffffff;
}


.phlex-apps-right {
    position: relative;
    width: 100%;
}

.phlex-img-frame {
    width: 100%;
    height: 885px;
    overflow: hidden;
    border-radius: 2px;
}

.phlex-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease-in-out;
}


.phlex-circle-badge {
    position: absolute;
    top: -45px;
    left: -45px;
    width: 120px;
    height: 120px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phlex-rotating-text {
    width: 100%;
    height: 100%;
    animation: rotateCircle 12s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.phlex-center-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phlex-center-logo img {
    width: 90px;
    height: auto;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
    .phlex-apps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phlex-apps-right {
        margin-top: 20px;
    }

    .phlex-circle-badge {
        top: -30px;
        left: 10px;
        width: 100px;
        height: 100px;
    }

    .phlex-img-frame {
        height: 480px;
    }
}

@media (max-width: 576px) {
    .phlex-apps-section {
        padding: 50px 0;
    }

    .phlex-apps-container {
        padding: 0 20px;
    }

    .phlex-apps-title {
        font-size: 30px;
    }

    .phlex-img-frame {
        height: 360px;
    }
}

/*======================Phlex Demanding Applications CSS END ===========================*/

/*====================Phlex Flexible Materials Section CSS Start========================*/
.phlex-flex-section {
    width: 100%;
    padding: 60px 0;
    padding-top: 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-flex-container {
    /*max-width: 1240px;*/
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}


.phlex-flex-title {
    font-size: 48px;
    font-weight: 500;
    color: #010101;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.phlex-blue-text {
    color: #031f55;
}


.phlex-flex-subtext {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 18px;
    line-height: 1.6;
    color: #7D7D7D;
    font-weight: 500;
}

.phlex-flex-subtext strong {
    color: #031f55;
    font-weight: 600;
}


.phlex-flex-desc {
    max-width: 1080px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    line-height: 1.65;
    color: #7D7D7D;
    font-weight: 500;
}


.phlex-flex-img-wrapper {
    width: 100%;
    max-height: 422px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 36px;
}

.phlex-flex-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.phlex-flex-btn-wrapper {
    display: flex;
    justify-content: center;
}

.phlex-flex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #031F55;
    color: #FEFEFE;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s ease-in-out;
}

.phlex-flex-btn:hover {
    background-color: #031F55;
    color: #FEFEFE;
    transform: translateY(-2px);
}

.phlex-flex-btn i {
    font-size: 16px;
    line-height: 1;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 991px) {
    .phlex-flex-section {
        padding: 60px 0;
    }

    .phlex-flex-title {
        font-size: 36px;
    }

    .phlex-flex-subtext,
    .phlex-flex-desc {
        font-size: 14px;
    }

    .phlex-flex-img-wrapper {
        max-height: 320px;
    }
}

@media (max-width: 576px) {
    .phlex-flex-section {
        padding: 40px 0;
    }

    .phlex-flex-container {
        padding: 0 16px;
    }

    .phlex-flex-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .phlex-flex-img-wrapper {
        max-height: 220px;
        margin-bottom: 28px;
    }

    .phlex-flex-btn {
        width: 100%;
    }
}

/*====================Phlex Flexible Materials Section CSS END========================*/

/*===================Why Phlex Carbon Fiber Section CSS Strat=========================*/
.phlex-why-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.phlex-why-container {
    /*max-width: 1280px;*/
    margin: 0 auto;
    padding: 0 24px;
}


.phlex-why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: flex-start;
}


.phlex-why-title {
    font-size: 48px;
    font-weight: 500;
    color: #010101;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.phlex-why-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #7D7D7D;
    font-weight: 500;
    max-width: 480px;
}


.phlex-why-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.phlex-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px 30px;
    border-radius: 2px;
    overflow: hidden;
    min-height: 110px;
    box-sizing: border-box;
}


.phlex-card.bg-grey {
    background-color: #7b7e80;
    color: #ffffff;
}

.phlex-card.bg-blue {
    background-color: #031f55;
    color: #ffffff;
}

.phlex-card.bg-grey.phlex-hover-blue {
    transition: background-color 0.3s ease;
}

.phlex-card.bg-grey.phlex-hover-blue:hover {
    background-color: #031f55;
}


.phlex-card-num {
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin-right: 28px;
    min-width: 60px;
    letter-spacing: -1px;
    color: #FEFEFE;
}


.phlex-card-content {
    flex: 1;
    z-index: 2;
    padding-right: 140px;
}

.phlex-card-title {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.phlex-card-desc {
    /* font-size: 18px; */
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}


.phlex-card-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    height: 100%;
    pointer-events: none;
}

.phlex-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
}


.phlex-card.bg-grey .phlex-card-img img {
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.phlex-card.bg-blue .phlex-card-img img {
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.phlex-card.bg-grey.phlex-hover-blue:hover .phlex-card-img img {
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
    .phlex-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phlex-why-desc {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .phlex-why-section {
        padding: 50px 0;
    }

    .phlex-why-title {
        font-size: 32px;
    }

    .phlex-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        min-height: auto;
    }

    .phlex-card-num {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .phlex-card-content {
        padding-right: 0;
        margin-bottom: 12px;
    }

    .phlex-card-img {
        position: relative;
        width: 100%;
        height: 120px;
    }

    .phlex-card-img img {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/*===================Why Phlex Carbon Fiber Section CSS END=========================*/
/*================== Phlex Carbon Fiber (PCF) CTA Banner Strat==============================*/
.pcf-cta-banner-section {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  background-image: url('../images/right-corbon-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #031435;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* Background Overlay */
.pcf-cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
      /* background: linear-gradient(180deg, rgba(3, 20, 53, 0.82) 0%, rgba(2, 14, 38, 0.88) 100%); */
    z-index: 1;
    background: #031F55A8;
}

.pcf-cta-wrapper {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* Typography */
.pcf-cta-main-title {
      font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #FEFEFE;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pcf-cta-description {
      font-size: 18px;
    line-height: 1.6;
    color: #FEFEFE;
    font-weight: 500;
    max-width: 820px;
    margin: 0 auto 36px auto;
}

/* Button Group */
.pcf-cta-action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons Base */
.pcf-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease-in-out;
  box-sizing: border-box;
}

/* Primary Button */
.pcf-cta-btn-primary {
  background-color: #ffffff;
  color: #031f55;
  border: 1px solid #ffffff;
}

.pcf-cta-btn-primary:hover {
  background-color: #f0f4f8;
  color:#031F55;
}

.pcf-cta-btn-icon {
  margin-left: 10px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.pcf-cta-btn-primary:hover .pcf-cta-btn-icon {
  transform: translate(2px, -2px);
}

/* Secondary Button */
.pcf-cta-btn-secondary {
  background-color:#031F55;
  color: #FEFEFE;
      border: 1px solid #FEFEFE;
}

.pcf-cta-btn-secondary:hover {
  background-color: #031f55;
  border-color: #ffffff;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 991px) {
  .pcf-cta-banner-section {
    padding: 70px 20px;
  }
  .pcf-cta-main-title {
    font-size: 34px;
  }
  .pcf-cta-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .pcf-cta-banner-section {
    padding: 50px 16px;
  }
  .pcf-cta-main-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .pcf-cta-description {
    font-size: 13.5px;
    margin-bottom: 28px;
  }
  .pcf-cta-description br {
    display: none;
  }
  .pcf-cta-action-group {
    flex-direction: column;
    width: 100%;
  }
  .pcf-cta-btn {
    width: 100%;
  }
}
/*================== Phlex Carbon Fiber (PCF) CTA Banner END==============================*/

/*=================== Unique Scope: Phlex Resources Section Strat=====================*/
.pcf-res-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.pcf-res-container {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 24px;
}


.pcf-res-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
}

.pcf-res-header-left {
  max-width: 620px;
}

.pcf-res-title {
  font-size: 48px;
    font-weight: 500;
    color: #010101;
    margin: 0 0 12px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.pcf-res-subtitle {
      font-size: 18px;
    line-height: 1.6;
    color: #7D7D7D;
    margin: 0;
    font-weight: 500;
}


.pcf-res-view-btn {
 display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #031F55;
    color: #FEFEFE;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: background-color 0.25s ease;
}

.pcf-res-view-btn:hover {
  color: #FEFEFE;
}

.pcf-res-btn-icon {
  font-size: 15px;
}


.pcf-res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pcf-res-card {
  display: flex;
  flex-direction: column;
}


.pcf-res-img-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #f4f4f4;
}

.pcf-res-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pcf-res-card:hover .pcf-res-img-wrapper img {
  transform: scale(1.03);
}


.pcf-res-img-tall {
  height: 400px;
}

.pcf-res-img-short {
  height: 250px;
}


.pcf-res-card-content {
  display: flex;
  flex-direction: column;
}

.pcf-res-date {
      font-size: 18px;
    color: #7D7D7D;
    margin-bottom: 8px;
    font-weight: 400;
}

.pcf-res-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: #0d0d0d;
}

.pcf-res-card-title a {
      color: #010101;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pcf-res-card-title a:hover {
  color: #031f55;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
  .pcf-res-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .pcf-res-img-tall,
  .pcf-res-img-short {
    height: 300px; 
  }
}

@media (max-width: 640px) {
  .pcf-res-section {
    padding: 50px 0;
  }
  .pcf-res-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .pcf-res-title {
    font-size: 32px;
  }
  .pcf-res-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pcf-res-img-tall,
  .pcf-res-img-short {
    height: 240px;
  }
  .pcf-res-view-btn {
    width: 100%;
  }
}
/*=================== Unique Scope: Phlex Resources Section END=====================*/


/*=============================About US Banner Start====================================*/
section.phlex-hero-banner.about-page {
    background: 
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(269.76deg, rgba(3, 31, 85, 0) 36.31%, #031F55 62.54%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/about-banner-img.svg') no-repeat center center / cover #0a0a0a;
}

/*=============================About US Banner END====================================*/

/*========================= Phlex Supplier Info Section Strat=========================*/
.pcf-sup-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background-color: #ffffff;
  /* Optional Watermark logo as seen in 2nd image */
 
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 80%;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom: 1px solid #7D7D7D;
}

.pcf-sup-container {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 40px;
}

/* 2-Column Grid Layout */
.pcf-sup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Content Styles */
.pcf-sup-title {
      font-size: 48px;
    font-weight: 500;
    color: #010101;
    line-height: 1.2;
    margin: 0 0 28px 0;
    letter-spacing: -0.5px;
}

.pcf-sup-title-blue {
  color: #031f55; /* Navy Blue */
}

.pcf-sup-text {
      font-size: 18px;
    line-height: 1.7;
    color: #7D7D7D;
    margin: 0 0 22px 0;
    font-weight: 500;
}

.pcf-sup-highlight {
  color: #031f55;
  font-weight: 600;
}


.pcf-sup-goal {
  color: #010101;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 0;
}

.pcf-sup-goal strong {
  font-weight: 700;
}

.pcf-sup-goal-blue {
  color: #031f55;
  /*font-weight: 700;*/
}


.pcf-sup-media {
  width: 100%;
}

.pcf-sup-img-wrapper {
  width: 100%;
  height: 510px;
  max-height: 580px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pcf-sup-img-wrapper img {
  width: 100%;
  /* height: 100%; */
  height: 568px;
  object-fit: cover;
  display: block;
}
img.phlex-adv-watermark-about {
    position: absolute;
    top: 7px;
    left: -74px;
    width: 388px;
    /* opacity: 0.12; */
    pointer-events: none;
    z-index: 1;
}
/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
  .pcf-sup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pcf-sup-title {
    font-size: 36px;
  }

  .pcf-sup-img-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 640px) {
  .pcf-sup-section {
    padding: 50px 0;
  }

  .pcf-sup-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .pcf-sup-text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .pcf-sup-goal {
    font-size: 14.5px;
    margin-top: 20px;
  }

  .pcf-sup-img-wrapper {
    max-height: 280px;
  }
}
/*========================= Phlex Supplier Info Section END =========================*/

/*======================== Phlexibility Section Strat=========================*/
.pcf-phlex-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.pcf-phlex-container {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Text */
.pcf-phlex-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 50px auto;
}

.pcf-phlex-title {
      font-size: 48px;
    font-weight: 500;
    color: #010101;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.pcf-phlex-subtitle {
      font-size: 18px;
    line-height: 1.65;
    color: #7D7D7D;
    margin: 0;
    font-weight: 500;
}

/* 4 Column Cards Layout */
.pcf-phlex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual Card Styling */
.pcf-phlex-card {
  position: relative;
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 28px;
  box-sizing: border-box;
  color: #ffffff;
}

/* Card Background Image & Position */
.pcf-phlex-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.4s ease;
}

.pcf-phlex-card:hover .pcf-phlex-card-bg {
  transform: scale(1.04);
}

/* Overlay Gradients for Card Colors */
.pcf-phlex-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Grey Cards Overlay (01 & 03) */
.pcf-phlex-card-grey .pcf-phlex-card-overlay {
  background: linear-gradient(90deg, #7D7D7D 0%, rgba(125, 125, 125, 0) 100%);

}

/* Blue Cards Overlay (02 & 04) */
.pcf-phlex-card-blue .pcf-phlex-card-overlay {
  background: linear-gradient(90.09deg, #031F55 0.08%, rgba(3, 31, 85, 0) 129.29%);

}

/* Default - All new cards are Grey */
.pcf-phlex-card .pcf-phlex-card-overlay {
  background: linear-gradient(
    90deg,
    #7D7D7D 0%,
    rgba(125, 125, 125, 0) 100%
  );
  transition: background 0.4s ease;
}

/* Hover - Card becomes Blue */
.pcf-phlex-card:hover .pcf-phlex-card-overlay {
  background: linear-gradient(
    90.09deg,
    #031F55 0.08%,
    rgba(3, 31, 85, 0) 129.29%
  );
}

/* Card Text Content Position */
.pcf-phlex-card-content {
  position: relative;
  z-index: 3;
}

.pcf-phlex-num {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.pcf-phlex-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.pcf-phlex-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #e2e8f0;
  margin: 0;
  font-weight: 300;
}

/* Bottom Paragraph Note */
.pcf-phlex-footer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pcf-phlex-footer p {
      font-size: 18px;
    line-height: 1.6;
    color: #7D7D7D;
    margin: 0;
    font-weight: 500;
}

/*==================================
  Responsive Breakpoints
==================================*/
@media (max-width: 1024px) {
  .pcf-phlex-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pcf-phlex-card {
    height: 380px;
  }
  .pcf-phlex-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .pcf-phlex-section {
    padding: 50px 0;
  }
  .pcf-phlex-title {
    font-size: 28px;
  }
  .pcf-phlex-subtitle br {
    display: none;
  }
  .pcf-phlex-grid {
    grid-template-columns: 1fr;
  }
  .pcf-phlex-card {
    height: auto;
    min-height: 280px;
    padding: 24px;
  }
}
/*======================== Phlexibility Section END=========================*/

/*======================== Phlex Path Forward Strat=========================*/
.pcf-path-section {
  width: 100%;
  padding: 90px 0;
  background-color: #000000; /* Pure dark theme */
  color: #ffffff;
  box-sizing: border-box;
}

.pcf-path-container {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Typography */
.pcf-path-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 60px auto;
}

.pcf-path-title {
  font-size: 48px;
    font-weight: 500;
    color: #FEFEFE;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pcf-path-desc {
      font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
    color: #7D7D7D;
}

.pcf-path-desc strong {
      color: #FEFEFE;
    font-weight: 500;
}

/* Workflow Container Layout */
.pcf-path-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* Individual Process Step Box */
.pcf-path-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* 
.pcf-path-img-box {
  width: 100%;
  height: 280px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #111111;
}

.pcf-path-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.pcf-path-step:hover .pcf-path-img-box img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.pcf-path-img-box img {
  filter: grayscale(100%);
  transition: filter 0.8s ease, transform 0.8s ease;
}

.pcf-path-step.path-step-active .pcf-path-img-box img {
  filter: grayscale(0%);
  transform: scale(1.03);
} */



.pcf-path-img-box {
  width: 100%;
  height: 280px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #111111;
  position: relative;
}

/* Path flow image */
.pcf-path-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* Start grayscale */
  filter: grayscale(100%);

  transition: filter 0.8s ease, transform 0.8s ease;
}

/* Blue shade overlay */
.pcf-path-img-box::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90.09deg,
    #031F55 0.08%,
    rgba(3, 31, 85, 0) 129.29%
  );

  opacity: 0;
  transition: opacity 0.8s ease;

  pointer-events: none;
}

/* Normal hover */
.pcf-path-step:hover .pcf-path-img-box img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* When sequential animation reaches this card */
.pcf-path-step.path-step-active .pcf-path-img-box::after {
  opacity: 0.9;
}

.pcf-path-step.path-step-active .pcf-path-img-box img {
  filter: grayscale(0%);
  transform: scale(1.03);
}



.pcf-path-step-title {
      font-size: 18px;
    font-weight: 500;
    color: #FEFEFE;
    line-height: 1.35;
    margin: 0;
}

/* Flow Arrow Styling */
.pcf-path-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-top: 80px; */
  color: #ffffff;
  font-size: 18px;
  user-select: none;
  height: 280px;
}
.pcf-sup-img-wrapper.about-ftr{
        height: 100%;
    max-height: 562px;
}
/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
  .pcf-path-title {
    font-size: 34px;
  }
  .pcf-path-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .pcf-path-step {
    flex: 0 0 calc(33.33% - 24px);
  }
  .pcf-path-arrow {
    display: none; /* Hide arrows on smaller grid layouts for clean look */
  }
}

@media (max-width: 640px) {
  .pcf-path-section {
    padding: 50px 0;
  }
  .pcf-path-title {
    font-size: 26px;
  }
  .pcf-path-desc {
    font-size: 13.5px;
  }
  .pcf-path-desc br {
    display: none;
  }
  .pcf-path-step {
    flex: 0 0 100%;
    max-width: 280px;
  }
}
/*======================== Phlex Path Forward END=========================*/

.phlex-cta-section.about-section {
    background: #7D7D7D;
}
.phlex-cta-section.about-section .phlex-cta-overlay {
    background: linear-gradient(90deg, #7D7D7D 0%, rgba(125, 125, 125, 0) 100%);
}

section.phlex-hero-banner.contact-us {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), linear-gradient(269.76deg, rgba(3, 31, 85, 0) 36.31%, #031F55 62.54%), linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/contact-banner-img.svg) no-repeat center center / cover #0a0a0a;
}


/*================================================
  Unique Scope: Phlex Get In Touch Strat
================================================*/
.pcf-git-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
  box-sizing: border-box;
  font-family: inherit;
}

.pcf-git-container {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Main Flex Layout */
.pcf-git-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Left Contact Info Card */
.pcf-git-info-card {
  position: relative;
  width: 38%;
  background-color: #031f55; /* Phlex Dark Navy */
  border-radius: 12px;
  padding: 48px 40px;
  box-sizing: border-box;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pcf-git-info-heading {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 48px 0;
    letter-spacing: -0.3px;
}

.pcf-git-info-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pcf-git-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pcf-git-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding-top: 2px;
}

.pcf-git-details {
  display: flex;
  flex-direction: column;
}

.pcf-git-label {
      font-size: 18px;
    color: #FEFEFE;
    margin-bottom: 6px;
    font-weight: 500;
}

.pcf-git-val {
      font-size: 22px;
    font-weight: 500;
    color: #FEFEFE;
    text-decoration: none;
    line-height: 1.35;
}

a.pcf-git-val:hover {
  text-decoration: none;
  color: #FEFEFE;
}

.pcf-git-subval {
  display: block;
  margin-top: 2px;
}

/* Bottom Decorative Accent Circles */
.pcf-git-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.pcf-git-circle-1 {
      width: 219px;
    height: 220px;
    background: #FFFFFF1F;
    bottom: -90px;
    right: -50px;
}

.pcf-git-circle-2 {
  width: 130px;
    height: 130px;
    background: #FFF9F921;
    bottom: 33px;
    right: 70px;
}

/* Right Form Container */
.pcf-git-form-card {
  width: 62%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px 0 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.pcf-git-form-title {
  font-size: 48px;
    font-weight: 500;
    color: #010101;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

/* Form Elements */
.pcf-git-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pcf-git-form-row {
  display: flex;
  gap: 30px;
}

.pcf-git-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pcf-git-field-label {
      font-size: 18px;
    font-weight: 500;
    color: #010101;
    margin-bottom: 12px;
}

.pcf-git-input {
      width: 100%;
    border: none;
    border-bottom: 1px solid #c8c8c8;
    padding: 10px 0;
    font-size: 16px;
    color: #7D7D7D;
    font-weight: 500;
    outline: none;
    background: transparent;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.pcf-git-input::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

.pcf-git-input:focus {
  border-bottom-color: #031f55;
}

.pcf-git-textarea {
  resize: vertical;
  min-height: 40px;
}

/* Submit Button */
.pcf-git-btn-wrap {
  margin-top: 10px;
}

.pcf-git-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #031f55;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

/*.pcf-git-submit-btn:hover {
  background-color: #021438;
}*/

.pcf-git-arrow {
  font-size: 16px;
}

/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
  .pcf-git-wrapper {
    flex-direction: column;
  }

  .pcf-git-info-card,
  .pcf-git-form-card {
    width: 100%;
    padding: 32px;
  }

  .pcf-git-form-card {
    padding-left: 0;
  }

  .pcf-git-form {
    padding: 20px 0;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .pcf-git-section {
    padding: 40px 0;
  }

  .pcf-git-info-card {
    padding: 28px 20px;
  }

  .pcf-git-form-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .pcf-git-form-row {
    flex-direction: column;
    gap: 24px;
  }

  .pcf-git-val {
    font-size: 17px;
  }

  .pcf-git-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/*================================================
  Unique Scope: Phlex Get In Touch END
================================================*/


/*================================================
  Unique Scope: Phlex Map Section Start
================================================*/
/*================================================
  Unique Scope: Phlex Map Section (pcf-map-)
================================================*/
/*================================================
  Unique Scope: Phlex Map Section (pcf-map-)
================================================*/
.pcf-map-section {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.pcf-map-container {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 24px;
}

/* Outer Rounded Card Container */
.pcf-map-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background-color: #e5e3df;
}

/* Wrapper to crop default Google Card out of view */
.pcf-map-iframe-wrapper {
  position: absolute;
  top: -65px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 80px);
  overflow: hidden;
}

/* Iframe dimensions */
.pcf-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Custom Overlay Group (Fixed Top-Left) */
.pcf-map-overlay-left {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

/* Zoom Controls (+ / -) */
.pcf-map-zoom-controls {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.pcf-map-zoom-btn {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.pcf-map-zoom-btn:first-child {
  border-bottom: 1px solid #e0e0e0;
}

.pcf-map-zoom-btn:hover {
  background-color: #f2f2f2;
}

/* Get Directions Button */
.pcf-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #031f55;
  color: #ffffff;
  padding: 0 16px;
  height: 32px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

.pcf-map-directions-btn:hover {
  background-color: #021438;
}

/* Arrow Icon */
.pcf-map-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .pcf-map-card {
    height: 320px;
  }
}
.home-cards-wrp{
    position: relative;
}
.arrow-icons img{
     position: absolute;
    z-index: 9;
    bottom: 29px;
    right: -5px;   
}
/*================================================
  Unique Scope: Phlex Map Section END
================================================*/


/*================================================
  Site Footer Styles
================================================*/
.site-footer {
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

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

/* Footer Main Background */
.footer-main {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 30px;
}

.footer-container {
     margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Brand Column */
.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 28px;
}

.footer-logo img {
    height: 86px;
    width: 286px;
    display: block;
}

.footer-heading {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.footer-author {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0;
}

.footer-links-title {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFFCC;
    margin-bottom: 24px;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
}

/* 2-Column Grid for Our Products */
.footer-products-grid {
    display: flex;
    gap: 60px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.footer-links-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Bottom Copyright Bar */
.footer-bottom {
    background-color: #031f55; 
    padding: 20px 0;
    
}

.bottom-container {
    align-items: center;
    justify-content: center;
}

.copyright-text {
    color: #FEFEFE;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.legal-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
.right-partxs-ftr {
    display: flex;
    gap: 50px;
}
/*==================================
  Responsive Styles
==================================*/
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        width: 100%;
    }

    .footer-products-grid {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .footer-main {
        padding: 50px 0;
    }

    .footer-products-grid {
        flex-direction: column;
        gap: 16px;
    }

    .bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .legal-links {
        gap: 16px;
        flex-wrap: wrap;
    }
    .right-partxs-ftr {
    
    flex-direction: column;
}
}
.phlex-apps-right.mobile {
    display: none; 
}
 
.phlex-img-frame {
    margin-bottom: 10px;
    display: block; 
}
 
/* Responsive  */
@media (max-width: 768px) {
    .phlex-apps-right.mobile {
        display: block; 
    }
    .phlex-apps-right.web {
        display: none;
    }
    .phlex-img-frame {
    margin-bottom: 10px;
}
}

@media (max-width: 768px) {
.phlex-hero-overlay {
    background: none;
}
.bottom-container{
    align-items: center!important;
}
}