
html {
    font-size: 62.5%;
    /*line-height: 1.5;*/
    /*#6fda44*/
    /*#008329*/
    overflow-x: hidden ;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    overflow-x: hidden;
    position: relative;
    overflow-x: hidden !important;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a {
    text-decoration: none;
}

.btn-style {
    font-size: 16px;
    line-height: 24px;
    color: #2D3D8A;
    background: #fff;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

button,
input[type="button"],
input[type="submit"],
.btn {
    border-radius: 999px;
    text-transform: capitalize;
}

.btn-style:hover {
    background: #2D3D8A;
    color: #fff;
    border: 1px solid #ddd;
}

/* —— Header CTAs + hero “Expert Consultation”: gradients + idle / hover animation —— */
/* Gradient on ::before + shimmer on ::after, both z-index:-1 so label stays crisp on top */
@keyframes cta-transform-drift {
    0%,
    100% {
        transform: translate3d(-8%, -6%, 0) scale(1.08);
    }
    50% {
        transform: translate3d(8%, 6%, 0) scale(1.08);
    }
}

@keyframes cta-shimmer {
    0% {
        transform: translateX(-140%) skewX(-12deg);
    }
    100% {
        transform: translateX(220%) skewX(-12deg);
    }
}

.menu_main .btn-nav-nda,
.menu_main .btn-nav-idea,
.menu_main .btn-nav-talk {
    position: relative;
    overflow: hidden;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease,
        filter 0.3s ease;
}

.menu_main .btn-nav-nda::before,
.menu_main .btn-nav-idea::before,
.menu_main .btn-nav-talk::before {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: -2;
    border-radius: inherit;
    background-size: 220% 220%;
    will-change: transform;
    animation: cta-transform-drift 7s ease-in-out infinite;
}

.menu_main .btn-nav-nda::after,
.menu_main .btn-nav-idea::after,
.menu_main .btn-nav-talk::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 45%;
    height: 200%;
    z-index: -1;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.24),
        transparent
    );
    pointer-events: none;
    border-radius: inherit;
    animation: cta-shimmer 3.8s ease-in-out infinite;
}

.menu_main .btn-nav-nda::before {
    background-image: linear-gradient(125deg, #0f1f4d 0%, #2D3D8A 38%, #4f6fd4 72%, #2a3f8c 100%);
}

.menu_main .btn-nav-idea::before {
    background-image: linear-gradient(125deg, #1e40af 0%, #3b82f6 35%, #7c3aed 70%, #2563eb 100%);
}

.menu_main .btn-nav-talk::before {
    background-image: linear-gradient(125deg, #075985 0%, #0ea5e9 40%, #38bdf8 78%, #0369a1 100%);
}

.menu_main .btn-nav-nda::after {
    animation-delay: 0s;
}
.menu_main .btn-nav-idea::after {
    animation-delay: 1.1s;
}
.menu_main .btn-nav-talk::after {
    animation-delay: 2.2s;
}

.menu_main .btn-nav-nda:hover,
.menu_main .btn-nav-idea:hover,
.menu_main .btn-nav-talk:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.45);
    filter: brightness(1.08);
}

.menu_main .btn-nav-nda:hover::before,
.menu_main .btn-nav-idea:hover::before,
.menu_main .btn-nav-talk:hover::before {
    animation-play-state: paused;
}

.menu_main .btn-nav-nda:hover::after,
.menu_main .btn-nav-idea:hover::after,
.menu_main .btn-nav-talk:hover::after {
    animation-play-state: paused;
}

.menu_main .btn-nav-nda:focus-visible,
.menu_main .btn-nav-idea:focus-visible,
.menu_main .btn-nav-talk:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

/* Hero primary CTA — indigo / violet / magenta / blue + shimmer */
.header_area .banner_text .btn-hero-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 14px 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    box-shadow: 0 6px 28px rgba(76, 29, 149, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, filter 0.3s ease;
}

.header_area .banner_text .btn-hero-cta::before {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: -2;
    border-radius: inherit;
    background-image: linear-gradient(
        130deg,
        #312e81 0%,
        #4c1d95 22%,
        #2D3D8A 48%,
        #c026d3 78%,
        #2563eb 100%
    );
    background-size: 240% 240%;
    will-change: transform;
    animation: cta-transform-drift 8s ease-in-out infinite;
}

.header_area .banner_text .btn-hero-cta::after {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 40%;
    height: 180%;
    z-index: -1;
    background: linear-gradient(
        95deg,
        transparent,
        rgba(255, 255, 255, 0.38),
        transparent
    );
    pointer-events: none;
    border-radius: inherit;
    animation: cta-shimmer 4.2s ease-in-out infinite;
    animation-delay: 0.6s;
}

.header_area .banner_text .btn-hero-cta:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-4px) scale(1.045);
    box-shadow: 0 16px 40px rgba(192, 38, 211, 0.35), 0 12px 36px rgba(45, 61, 138, 0.4);
    filter: brightness(1.1) saturate(1.05);
}

.header_area .banner_text .btn-hero-cta:hover::before,
.header_area .banner_text .btn-hero-cta:hover::after {
    animation-play-state: paused;
}

.header_area .banner_text .btn-hero-cta:focus-visible {
    outline: 2px solid #f0abfc;
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .menu_main .btn-nav-nda::before,
    .menu_main .btn-nav-idea::before,
    .menu_main .btn-nav-talk::before,
    .header_area .banner_text .btn-hero-cta::before {
        animation: none;
    }

    .menu_main .btn-nav-nda::after,
    .menu_main .btn-nav-idea::after,
    .menu_main .btn-nav-talk::after,
    .header_area .banner_text .btn-hero-cta::after {
        animation: none;
    }

    .menu_main .btn-nav-nda:hover,
    .menu_main .btn-nav-idea:hover,
    .menu_main .btn-nav-talk:hover,
    .header_area .banner_text .btn-hero-cta:hover {
        transform: none;
    }
}

.single_portfolio_slider_right a {
    color: #fff;
    background: #2D3D8A;
}

.footer-subscribe button:hover,
.col-md-12.btn_area input:hover,
.single_portfolio_slider_right a:hover {
    background: #fff;
    color: #2D3D8A;
    border: 1px solid #2D3D8A;
}

h1 {
    font-weight: 800;
    font-size: 80px;
    line-height: 90px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    text-transform: capitalize;
    color: #03070B;
}

h2 span {
    color: #2D3D8A;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    color: #03070B;
}

.section_padding {
    padding: 130px 0;
}


/*  ============     1. start css Header area      ==============  */

.header_area {
    background: url('../images/banner.jpg') no-repeat scroll 0 0/ cover;
    position: relative;
    background-position: center;
    position: relative;
    z-index: 50;
}

.header_area:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2D3D8A;
    opacity: .8;
    z-index: 0;
}

.header_area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 110px;
    opacity: 0.3;
    background: #FFFF;
    width: 100%;
    height: 2px;
    z-index: 9;
}

.extra_div {
    position: relative;
    z-index: 9;
}

/* Menu area  */
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0;
}

.menu_main,
.menu_main .menu,
.menu_main .logo-link,
.menu_main .menu ul li a,
.menu_main .btn-style {
    transition: all 0.3s ease;
}

.menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    padding: 4px 18px;
    display: inline-block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: #ddd;
    opacity: 0.8;
}

/* logo */
.logo a img {
    width: 100px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Mobile Humber menu j */

.humberMenu {
    display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 32px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: translate(0, 9px) rotate(-45deg);
    -ms-transform: translate(0, 9px) rotate(-45deg);
    transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: translate(0, -9px) rotate(45deg);
    -ms-transform: translate(0, -9px) rotate(45deg);
    transform: translate(0, -9px) rotate(45deg);
}

.btn_main_mobile {
    display: none;
}

/* Banner area start  */
.banner_area {
    max-width: 1010px;
    width: auto;
    margin: auto;
    text-align: center;
    padding: 300px 0 260px 0;
}

.banner_text p {
    padding: 20px 0 50px 0;
    max-width: 653px;
    margin: auto;
}

/*.page_header{
  position: relative;
}
.page_header::after {
  background: #2D3D8A;
  opacity: 0.9;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}*/
/*  ============     1. start css Header area      ==============  */

.about_single_item_left img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}

.about_single_item_left {
    position: relative;
}

.about_text .g-5, .gx-5 {
    --bs-gutter-x: 10rem;
}

.about_single_item_left:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 61, 138, 0.9);
    z-index: 9;
}

.about_single_item_left::before {
    position: absolute;
    background-image: url('../images/maker1.png');
    right: -80px;
    bottom: -106px;
    content: "";
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.work_single_item_left {
    position: relative;
}

.work_single_item_left img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}

.work_single_item_left:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 61, 138, 0.9);
    z-index: 9;
}

.work_single_item_left::before {
    position: absolute;
    background-image: url('../images/typing.png');
    right: 64px;
    top: -106px;
    content: "";
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.about_single_item p {
    color: #03070B;
    opacity: 0.6;
}

.about_single_item h3 {
    padding: 30px 0 5px 0;
}

.about_single_item h3 img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.about_single_item a {
    padding: 30px 0 5px 0;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    color: #03070B;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
}

.about_single_item a:hover {
    text-decoration: underline;
}

.about_single_item a img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/*  ============     2. start css About area      ==============  */

/*  ============     3. start css Services area      ==============  */

.services_area {
    background: rgba(45, 61, 138, .1);
}

.services_text {
    max-width: 1264px;
    width: auto;
    margin: auto;
}

.header_style {
    text-align: center;
    padding-bottom: 35px;
}

.header_style p {
    color: #000000;
    opacity: 0.6;
}

/* singl item area  */
.services_single_item {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 60px 33px;
    border-bottom: 4px solid transparent;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    height: 100%;
}

.services_single_item:hover {
    border-bottom: 4px solid #2D3D8A;
}

.services_single_item span {
    width: 130px;
    background: #2D3D8A;
    height: 130px;
    border-radius: 500px;
    /*display: inline-block;*/
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
}

.services_single_item span img {
    max-width: 64px;
    max-height: 64px;
    height: auto;
    width: auto;
}

.services_single_item h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #03070B;
}

.services_single_item p {
    color: #03070B;
    opacity: 0.6;
    font-size: 16px;
    line-height: 24px;
}

/*  ============     3. start css Services area      ==============  */
/*  ============     3. start css Services area      ==============  */

.portfolio_area {
    background: url('../images/meeting.jpg') no-repeat scroll 0 0/ cover;
    position: relative;
}

.portfolio_area:after {
    background: #2D3D8A;
    opacity: 0.9;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.single_portfolio_slider_right {
    padding: 45px 33px;
}

.portfolio_text {
    position: relative;
    z-index: 9;
}

.portfolio_text .header_style h2 {
    color: #fff;
}

.single_portfolio_slider_right h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    color: #03070B;
}

.single_portfolio_slider_right p {
    color: rgba(3, 7, 11, .6);
    margin: 10px 0 40px 0;
    line-height: 26px;
}

.single_portfolio_slider_card {
    padding: 17px 54px;
    background: rgba(45, 61, 138, .2);
    text-align: center;
    margin-top: 50px;
}

.single_portfolio_slider_card p {
    font-style: italic;
    line-height: 28px;
    max-width: 420px;
    margin: auto;
    color: #000000;
}


/*  ============     3. start css Services area      ==============  */
/*  ============     3. start css Services area      ==============  */

.single_portfolio_slider_sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
}

.single_portfolio_slider_left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.single_portfolio_slider_left img {
    width: 100%;
}

.single_portfolio_slider_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.about_single_item_right p {
    color: #03070B;
    opacity: 0.6;
}

.portfolio_main_slider {
    position: relative;
}

.portfolio_main_slider .owl-prev {
    position: absolute;
    top: 43%;
    left: -90px;
}

.portfolio_main_slider .owl-next {
    position: absolute;
    top: 43%;
    right: -90px;
}

.owl-carousel .owl-item img {
    height: 100%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
}

.owl-prev,
.owl-next {
    opacity: 0.8;
}

.owl-prev:hover,
.owl-next:hover {
    opacity: 1;
}

.single_portfolio_slider_card span {
    font-weight: 600;
    color: #000000;
    margin-top: 14px;
    display: inline-block;
}

/*  ============     3. start css Services area      ==============  */
/*  ============     3. start css Services area      ==============  */
.faq_area {
    background: rgba(45, 61, 138, .1);
}

.faq_text {
    max-width: 1032px;
    width: auto;
    margin: auto;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/nagative.png");
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion-button::after {
    background-image: url("../images/possitive.png");
}

.accordion-item {
    border-bottom: 1px solid #2D3D8A;
    -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.accordion-item .accordion-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    color: #03070B;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    -webkit-box-shadow: inset 0 0px 0 rgba(0, 0, 0, .125);
    box-shadow: inset 0 0px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent !important;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
}

.accordion-body p {
    color: #03070B;
    opacity: 0.6;
}

.accordion-body {
    padding: 1rem 1.25rem;
    padding-top: 0;
}


/*  ============     3. start css Services area      ==============  */


/*  ============     1. start css Header area      ==============  */

.hero_area {
    position: relative;
    background: url('../images/hero.jpg') no-repeat scroll 0 0 / cover;
}

.hero_area:after {
    background: #2D3D8A;
    opacity: 0.9;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero_text {
    position: relative;
    z-index: 9;
    max-width: 1126px;
    width: auto;
    margin: auto;
    text-align: center;
}

.hero_text h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.hero_text p {
    padding: 10px 0 40px 0;
}

/*  ============     1. start css Header area      ==============  */

/*  ============     1. start css Header area      ==============  */

.content_text {
    max-width: 1246px;
    width: auto;
    margin: auto;
}

.form_card_area {
    background: #FFFFFF;
    mix-blend-mode: normal;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    padding: 37px 40px;
}

.form-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    text-transform: capitalize;
    color: #03070B;
}

.form-label i {
    margin-right: 5px;
}

.form-control {
    font-size: 18px;
    line-height: 35px;
    color: #03070B !important;
    opacity: 0.4;
    border: 0 !important;
    border-bottom: 1px dashed #03070B !important;
    padding: 10px 0;
    padding-top: 2px;
}

.form-control:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25);
}

.btn_area {
    /*   margin: 0 auto; */
    margin-top: 30px;
    text-align: center;
}

.col-md-12.btn_area input {
    background: #2D3D8A;
    color: #fff;
}

/*  ============     1. start css Header area      ==============  */
.footer_area {
    background: #03070B;
}

.footer_text {
    width: auto;
    margin: auto;
}

.footer_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 65px;
}

.footer_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer_menu ul li a {
    display: inline-block;
    padding: 7px 18px;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid transparent;
}

.footer_menu ul li a:hover {
    color: #ddd;
    opacity: 0.8;
}

.footer-content h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.footer-content p {
    color: #FFFFFF;
    opacity: 0.6;
    margin: 8px 0 25px 0;
}

.row.footer-text-row {
    margin-bottom: 75px;
}

.socail-icon ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 22px;
}

.socail-icon ul li a {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.socail-icon ul li a:hover {
    opacity: 1;
}

.footer-copy-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 60px 0px;
}

.footer-copy-right ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer-copy-right ul li a:hover {
    color: #ddd;
}

.footer-copy-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}

.footer-subscribe {
    width: 75%;
    position: relative;
}

.footer-subscribe input {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    color: #03070B;
    padding: 15px 18px;
    width: 100%;
}

.footer-subscribe button {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 13px 30px;
    background: #2D3D8A;
    border: none;
    position: absolute;
    right: 7px;
    top: 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid transparent;
}

.footer_area.section_padding hr {
    background: rgba(255, 255, 255, 0.2);
}

.footer_area.section_padding {
    padding-bottom: 0;
}

/* Unified footer (used across root pages) */
.footer_v2 {
    background: linear-gradient(180deg, #0a1230 0%, #060b1f 100%);
    color: #dbe4ff;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    /* Keep legal links clear from the fixed Calendly badge */
    padding-bottom: 90px !important;
}

.footer_v2 .footer_top {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 28px;
}

.footer_v2 .footer_brand {
    max-width: 360px;
}

.footer_v2 .brand_logo_wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #fff;
}

.footer_v2 .brand_logo_wrap img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer_v2 .brand_logo_wrap span {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.6px;
    line-height: 1;
}

.footer_v2 .brand_caption {
    color: rgba(219, 228, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.footer_v2 .brand_contact a {
    display: block;
    color: #dbe4ff;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.footer_v2 .brand_contact a:hover {
    color: #fff;
}

.footer_v2 .footer_links_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 620px;
}

.footer_v2 .footer_links_group h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer_v2 .footer_links_group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_v2 .footer_links_group li {
    margin-bottom: 8px;
}

.footer_v2 .footer_links_group a {
    color: rgba(219, 228, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.footer_v2 .footer_links_group a:hover {
    color: #fff;
}

.footer_v2 .footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 8px;
    padding: 18px 0 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer_v2 .footer_bottom p {
    margin: 0;
    color: rgba(219, 228, 255, 0.86);
    font-size: 14px;
}

.footer_v2 .footer_legal {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer_v2 .footer_legal a {
    color: rgba(219, 228, 255, 0.9);
    font-size: 14px;
}

.footer_v2 .footer_legal a:hover {
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .footer_v2 .footer_top {
        flex-direction: column;
        gap: 26px;
    }

    .footer_v2 .footer_links_grid {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
        max-width: 100%;
    }
}

@media only screen and (max-width: 640px) {
    .footer_v2 {
        padding-bottom: 110px !important;
    }

    .footer_v2 .footer_links_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer_v2 .brand_logo_wrap span {
        font-size: 22px;
    }

    .footer_v2 .footer_bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


.form_card_area .form-label i {
    color: #2D3D8A;
}

.owl-dots .owl-dot.active span {
    background: #fff !important;
}

.owl-dots .owl-dot {
    border: 3px solid white !important;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    text-align: center;
    margin: 0px 5px 4px 9px;
    padding: 74px !important;
}

.owl-dots .owl-dot span {
    background: transparent !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 2.5px 2.6px;
}

.owl-dots {
    margin-top: 35px;
}

.contact_text {
    width: 100%;
    max-width: 1264px;
    margin: auto;
}

/*.single_portfolio_slider_sub {
  max-width: 1322px;
  margin: auto;
}*/
.footer_right_s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer_right_scontents {
    max-width: 435px;
}

/*.footer_maxw{
  max-width: 1246px;
  margin: auto;
}*/


/*==================== START MUNNA CSS ====================*/
.request_modal p {
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.modal-dialog {
    max-width: 580px;
}

/*Strt Portfolio Section*/
.portfolio_main {
    padding: 80px 0px;
}

.portfolio_pos {
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.portfolio_pos::before {
    content: "";
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: -50%;
    width: 2014px;
    height: 2014px;
    background: radial-gradient(50% 50% at 50% 50%, #2D3D8A 0%, rgba(75, 75, 75, 0) 100%);
    opacity: 0.6;
    z-index: -3;
}

.portfolio_pos::after {
    content: "";
    position: absolute;
    top: 85%;
    transform: translateY(-50%);
    right: -50%;
    width: 2014px;
    height: 2014px;
    background: radial-gradient(50% 50% at 50% 50%, #2D3D8A 0%, rgba(75, 75, 75, 0) 100%);
    opacity: 0.6;
    z-index: -3;
}

.portfolio_title p {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: #fff;
}

.portfolio_title_portfolio p {
    color: #000;
}

.portfolio_single_title p {
    font-size: 20px;
    line-height: 21px;
    color: #000;
    margin-top: 30px;
    border-bottom: 3px solid #2D3D8A;
    display: inline-block;
    font-weight: 700;
    color: #2D3D8A;
}

.portfolio_single_contents p {
    color: #000;
    margin-top: 20px;
}

.portfolio_single_title p {
    color: #2D3D8A !important;
}

.portfolio_page_images {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0px 30px 0px;
}

.portfolio_img_single {
    flex: 0 0 25%;
    padding: 2px;
    background: #000;
}

.portfolio_img_single img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/*End Portfolio Section*/

.idea_pt {
    margin-top: 20px;
}

/*.works_title p{
  font-size: 25px;
  margin-top: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}*/
.works_title p {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.works_contents p {
    color: #e1e1e1;
    margin-bottom: 30px;
}

.works_banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin-bottom: 50px;
}

.works_main {
    padding-top: 0px !important;
    position: relative;
    z-index: 4;
}

.works_main::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2D3D8A;
    opacity: 0.9;
    z-index: -1;
}

.out_team_main {
    background: rgba(45, 61, 138, .1);
    padding: 70px 0px 90px 0px;
}

.our_team_all {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
}

.team_single {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team_single a img {
    width: 200px !important;
    height: 175px !important;
    object-fit: cover;
}

.team_single a {
    font-size: 25px;
    line-height: auto;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.team_single a span {
    margin-top: 30px;
}

.our_team_title h2 {
    text-align: center;
    margin-bottom: 50px;
}

.photo_gallary_main {
    padding: 70px 0px 90px 0px;
}

.photo_gallary_all {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

.photo_gallary_single {
    flex: 0 0 25%;
}

.photo_gallary_single img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 10px;
}

.photo_gallary_btn {
    text-align: center;
}

.photo_gallary_btn a {
    display: inline-block;
    margin-top: 50px;
    background: #fff;
    color: #2D3D8A;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #2D3D8A;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
}

.photo_gallary_btn a:hover {
    background: #2D3D8A;
    color: #fff;
}

.modal-body {
    background: rgba(45, 61, 138, 0.8);
}

.team_details_img img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.team_details_img {
    display: flex;
    justify-content: center;
    margin: 30px 0px;
}

.team_details_title h2 {
    color: #FFF;
    margin-top: 20px;
}

.team_details_contents p {
    margin-top: 20px;
}

.fixedheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 61, 138, 1);
    z-index: 55;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.fixedheader .menu {
    padding: 12px 0;
}

.fixedheader .logo-link {
    transform: scale(0.9);
    transform-origin: left center;
}

.fixedheader .menu ul li a {
    font-size: 15px;
    padding: 3px 14px;
}

.fixedheader .btn-style {
    padding: 10px 22px;
    font-size: 14px;
    line-height: 20px;
}

.modalunder_btn {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.quesionnaire_page {
    padding-top: 40px;
}

.quesionnaire_title h2 {
    color: #FFF;
}

.quesionnaire_single {
    margin-top: 25px;
}

.quesionnaire_single label {
    color: #FFF;
    font-size: 20px;
    margin: 0px 20px 0px 3px;
    cursor: pointer;
}

.quesionnaire_single p {
    font-size: 20px;
}

.quesionnaire_single input {
    accent-color: #EFCB58;
    cursor: pointer;
}

.quesionnaire_single textarea {
    height: 150px;
    max-width: 700px;
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    font-size: 20px;
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF;
}

.quesionnaire_single_form {
    max-width: 700px;
    margin-top: 25px;
}

.quesionnaire_single_form input {
    width: 100%;
    border: 1px solid #FFF;
    color: #000;
    background: #FFF;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 5px 10px;
}

.quesionnaire_single_form input::placeholder {
    opacity: 1;
}

.quesionnaire_single_form button {
    font-size: 20px;
    max-width: 150px;
    width: 100%;
    padding: 10px;
    background: #FFF;
    color: #000;
}

.quesionnaire_single_form button:hover {
    background: #DDD;
}

/*==================== END MUNNA CSS ====================*/


.cform .form-control {
    margin-bottom: 12px;
    padding: 2px 12px;
    font-size: 16px;
}

.cform .btn {
    font-size: 16px;
}

/* Request NDA modal - upgraded UI */
#exampleModal .modal-dialog,
#requestNDA .modal-dialog {
    max-width: 680px;
}

#exampleModal .modal-content,
#requestNDA .modal-content {
    background: transparent;
    border: 0;
}

#exampleModal .modal-body.request_modal,
#requestNDA .modal-body.request_modal {
    background: linear-gradient(160deg, #5868ab 0%, #4d5ea8 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(7, 15, 45, 0.45);
}

#exampleModal .nda_modal_header,
#requestNDA .nda_modal_header {
    margin-bottom: 12px;
}

#exampleModal .nda_modal_header h3,
#requestNDA .nda_modal_header h3 {
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 4px;
}

#exampleModal .nda_modal_header p,
#requestNDA .nda_modal_header p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

#exampleModal .cform,
#requestNDA .cform {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

#exampleModal .cform .form-control,
#requestNDA .cform .form-control {
    margin-bottom: 0;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    background: rgba(244, 248, 255, 0.96);
    color: #1f2f67 !important;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 14px;
    opacity: 1;
}

#exampleModal .cform select.form-control,
#requestNDA .cform select.form-control {
    cursor: pointer;
}

#exampleModal .cform .form-control::placeholder,
#requestNDA .cform .form-control::placeholder {
    color: #6b78a9;
    opacity: 1;
}

#exampleModal .cform .form-control:focus,
#requestNDA .cform .form-control:focus {
    border-color: #88b4ff !important;
    box-shadow: 0 0 0 3px rgba(136, 180, 255, 0.3);
    background: #fff;
}

#exampleModal #cbusiness,
#requestNDA #cbusiness,
#exampleModal .cform .btn,
#requestNDA .cform .btn,
#exampleModal .cform .emsg,
#requestNDA .cform .emsg {
    grid-column: 1 / -1;
}

#exampleModal .cform .btn,
#requestNDA .cform .btn {
    justify-self: start;
    margin-top: 2px;
    min-width: 140px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

#exampleModal .cform .btn:hover,
#requestNDA .cform .btn:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

#exampleModal .cform .emsg,
#requestNDA .cform .emsg {
    margin-top: 2px;
}

@media (max-width: 767.98px) {
    #exampleModal .modal-body.request_modal,
    #requestNDA .modal-body.request_modal {
        padding: 18px;
        border-radius: 14px;
    }

    #exampleModal .nda_modal_header h3,
    #requestNDA .nda_modal_header h3 {
        font-size: 22px;
    }

    #exampleModal .cform,
    #requestNDA .cform {
        grid-template-columns: 1fr;
    }
}

.white {
    color: white;
}

.emsg {
    margin-top: 12px
}

.jobtitle {
    color: #2d3d8a;
    font-size: 17px;
}

.banner_text h1 {
    text-align: left;
    font-size: 76px;
    line-height: 76px;
}

.pmeta {
    display: flex;
    gap: 22px;
    align-items: center;
}

.readtime {
    background-color: #E9EDFF;
    padding: 3px 12px;
    font-weight: 600;
}

.mt-50 {
    margin-top: 50px;
    gap: 23px;
}

.fea-single-post h3 {
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 18px;
}

.iimg {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.fea-single-post p {
    color: black;
    margin: 12px 0px;
}

.readmore {
    background-color: #2d3d8a;
    color: white !important;
    padding: 10px 21px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.fea-single-post {
    margin-top: 30px;
}

.mcontent p {
    color: black !important;
}

.mimg {
    width: 100%;
    margin-bottom: 24px;
}

.mcontent h2 {
    margin-top: 27px;
    margin-bottom: 12px;
    font-size: 33px;
    font-weight: 300;
}

.mcontent h3 {
    margin-top: 27px;
    margin-bottom: 12px;
    font-size: 28px;
}

.mcontent h4 {
    margin-top: 27px;
    margin-bottom: 12px;
    font-size: 24px;
}

/* Global Request NDA close button + wrapper */
.request_modal_wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.nda-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.7);
    background: #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    color: #000000;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    padding: 0;
    z-index: 10;
}

.nda-close-btn span {
    transform: translateY(-1px);
}

.nda-close-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.4);
}

.singlepost h1 {
    color: black;
    font-size: 37px;
    text-align: left;
    line-height: 43px;
    margin-bottom: 19px;
}

.singlepost li {
    list-style: inherit !important;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 32px;
    margin-top: 12px;
}

.blogbtn {
    background-image: linear-gradient(to right, #3AC9E9, #1E4BE9);
    color: white;
    text-transform: uppercase;
    border: 0px;
    font-weight: 500;
    display: none !important;
}

iframe {
    width: 100%;
    height: 240px;
}

.singleclient {
    text-align: center;
    margin-top: 22px
}

.singleclient h3 {
    font-size: 21px;
    font-weight: 600;
    margin-top: 12px;
}

.singleclient p {
    color: black;
}

@media (max-width: 768px) {
    .banner_text video {
        margin-top: 29px;
    }

    .singlepost h1 {
        font-size: 23px;
        line-height: 35px;
    }

    .blogbtn {
        width: 162px;
    }
}

@media (max-width: 567px) {
    .banner_text h1 {
        font-size: 37px !important;
        line-height: 48px !important;
    }
}
