/* ========== HERO SECTION ========== */
.hero_mechanical {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
}

.logo-link svg {
    height: 50px;
    width: auto;
    display: block;
}


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

.hero_mechanical .overlay_content {
    z-index: 2;
    position: relative;
    padding: 60px 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero_mechanical h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero_mechanical p.lead {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero_mechanical .btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero_mechanical .btn-warning {
    background-color: #f7941d;
    border-color: #f7941d;
}

.hero_mechanical .btn-warning:hover {
    background-color: #da7d04;
    border-color: #da7d04;
}

.hero_mechanical .btn-outline-light:hover {
    background-color: #ffffff;
    color: #111;
}

/* ========== WHAT WE DO SECTION ========== */

#what-we-do {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

#what-we-do h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
}

#what-we-do .text-primary {
    color: #2d3d8a;
}

#what-we-do p.text-muted {
    font-weight: 500;
    margin-bottom: 20px;
}

#what-we-do .card {
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 12px;
}

#what-we-do .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

#what-we-do .card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 100px;
    object-fit: cover;
}

#what-we-do .card-body {
    padding: 5px;
}

#what-we-do .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

#what-we-do .card-text {
    font-size: 0.9rem;
}

#what-we-do .col-md-4.col-lg-3 .card {
    width: 250px;
    margin: 10px;
}


#what-we-do .col-md-4.col-lg-3 {
    flex: 0 0 calc(20% - 1px);
    max-width: calc(20% - 1px);
    margin-bottom: 10px;

}

@media (max-width: 767.98px) {
    #what-we-do .col-md-4.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0px;
        padding-right: 20px;
        box-sizing: border-box;

    }

    #what-we-do .card {
        width: 100%;
        margin: 10px auto;

    }

    #what-we-do .card-body {
        padding: 10px;
    }

    #what-we-do .card-title {
        font-size: 1rem;
    }

    #what-we-do .card-text {
        font-size: 0.85rem;
    }
}

/* ===================== PIPELINE SECTION ===================== */


#pipeline {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
    height: auto;
    overflow: visible;
}

#pipeline h2 {
    font-size: 2rem;
    font-weight: 700;
}

.text-accent {
    color: #2d3d8a;
}

.pipeline-card {
    width: calc(20% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px 20px;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: 0.3s ease;
    min-height: 220px;
}

.pipeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f36f2b;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pipeline-card h6 {
    margin-top: 30px;
    font-size: 0.95rem;
    font-weight: 600;
}

.pipeline-card p {
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.4;
    color: #666;
}

@media (max-width: 768px) {
    .pipeline-card {
        flex: 0 0 calc(50% - 20px);
    }
}

/* ===================== TOOLING & TECH STACK SECTION ===================== */


/* TOOLING SECTION ENHANCEMENTS */
#tech-stack {
    background: url('assets/tech-bg.jpg') center center / cover no-repeat;
    position: relative;
    padding: 100px 0;
    color: #fff;
    height: 105vh;
    /* height: auto;  */
    overflow: visible;
}

#tech-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 34, 72, 0.75);
    z-index: 1;
}

#tech-stack .container {
    position: relative;
    z-index: 2;
}

#tech-stack h2 {
    font-size: 2rem;
    font-weight: 700;
}

#tech-stack p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.tool-card {
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.logo-img {
    max-width: 60px;
    height: auto;
    display: inline-block;
}

#tech-stack .small {
    font-size: 0.85rem;
    color: #333;
}

#tech-stack h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}



@media (max-width: 768px) {
    .logo-img {
        max-width: 50px;
    }

    #tech-stack {
        height: auto;
    }
}


/* section 5/6 */

/* ========================== INDUSTRIES SECTION ========================== */
#industries {
    padding: 80px 0;
    background-color: #f8f9fa;
    height: 100vh;
    /* height: auto;       */
    overflow: visible;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #2d3d8a;
}


#industries h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#industries .text-primary {
    color: #2d3d8a;
}

#industries .text-muted {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

#industries .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

#industries .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#industries .card-img-top {
    height: 160px;
    object-fit: cover;
}

#industries .card-body {
    padding: 15px 10px;
}

#industries .card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}


@media (max-width: 768px) {
    #industries {
        height: auto;
    }
}

/* ========================== PORTFOLIO SECTION ========================== */

.highlight-accent {
    color: #2d3d8a;
}

.text-dark {
    color: #000;
}

#portfolio {
    padding: 80px 0;
    background-color: #ffffff;
    height: 100vh;
    /* height: auto;     */
    overflow: visible;
}

#portfolio h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#portfolio .text-muted {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

#portfolio .card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    margin-top: 50px;

}

#portfolio .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#portfolio .card-img-top {
    height: 180px;
    object-fit: contain;
    padding: 20px;
    background-color: #ffffff;

}

#portfolio .card-body {
    padding: 15px;
    text-align: center;
}

#portfolio .card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

#portfolio .card-img-top {
    height: 180px;
    object-fit: contain;
    padding: 20px;
    background-color: #f1f3f6;
}



@media (max-width: 768px) {
    #portfolio {
        height: auto;
    }
}


/* ===================== STRATEGY DESIGN SECTION ===================== */
#strategy-design {
    background-color: #f8f9fa;
}

#strategy-design h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

#strategy-design p.small,
#strategy-design ul {
    font-size: 0.95rem;
    color: #6c757d;
}

#strategy-design ul {
    list-style: disc;
    margin-top: 15px;
    padding-left: 1.5rem;
}

#strategy-design img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 8px;
    height: 300px;
}

/* ===================== CLIENT QUOTES SECTION ===================== */
#client-quotes h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

#client-quotes p {
    font-size: 0.95rem;
    color: #6c757d;
}

#client-quotes .card {
    border-radius: 12px;
    min-height: 300px;
}

#client-quotes img.rounded-circle {
    border: 3px solid #eee;
}

#client-quotes h6 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
}

#client-quotes p.small {
    font-size: 0.85rem;
    color: #333;
}


/* CTA HERO SECTION */

#cta-hero {
    background: url('assets/cta-bg.jpg') center center / cover no-repeat;
    height: 100vh;
    position: relative;
}

#cta-hero .overlay {
    background-color: rgba(20, 30, 80, 0.7);
    /* dark blue overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cta-hero h2 {
    font-size: 2rem;
    font-weight: 700;
}

#cta-hero p {
    font-size: 1rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
}

.btn-orange {
    background-color: #f36f2b;
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e2590f;
    color: white;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
}

/* ========== BUTTON RESPONSIVENESS ========== */
@media (max-width: 768px) {
    .hero_mechanical h1 {
        font-size: 2rem;
    }

    .hero_mechanical .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    #what-we-do .card-img-top {
        height: 140px;
    }

    #what-we-do .col-md-4.col-lg-3 .card {
        width: 100%;
    }
}


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 ;
}

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;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

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

.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: 100;
    font-size: 50px;
    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 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;
}

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

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


.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;
}


.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;
}


.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;
}

.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;
}*/


@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;
    }
}


@media all and (min-width: 1640px) {
    .container {
        min-width: 1640px;
        width: 100%;
    }
}

@media all and (min-width: 993px) {
    .menu ul {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .humberMenu {
        display: none;
    }
}


@media all and (max-width:1400px) {

    .owl-carousel .owl-item img {
        height: auto;
    }

    .single_portfolio_slider_left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #D1E1F0;
    }
}

@media all and (max-width: 992.99px) {
    .btn_main_right {
        display: none;
    }

    /* 	mobile responsive */
    .logo {
        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;
        width: 100%;
    }

    .menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        width: 100%;
        top: 93px;
        background: #2D3D8A;
        width: 100%;
        left: 0;
        display: none;
        padding: 15px 0px;
    }

    .menu ul li {
        width: 100%;
        text-align: center;
        background: #2D3D8A;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }

    .menu ul li a {
        width: 100%;
    }

    .menu ul li a:hover {
        background: #fff;
        color: #2D3D8A;
    }

    .header_area::before {
        display: none;
    }

    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .banner_area {
        padding: 200px 0 260px 0;
    }



    h2 {
        font-size: 36px;
    }

    .hero_text h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .footer-subscribe {
        width: 100%;
    }


    .footer-content {
        margin-bottom: 30px;
    }


    .footer_right_scontents {
        max-width: 100%;
    }

    .footer_right_s {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }



    .btn_main_mobile {
        display: flex !important;
        justify-content: center;
        margin-top: 10px;
    }



}


@media all and (max-width: 767px) {
    .banner_area {
        padding: 150px 0 150px 0;
    }

    p {
        line-height: 26px;
    }



    h1,
    .hero_text h1 {
        font-size: 26px;
        line-height: 36px;
    }

    p {
        line-height: 24px;
        font-size: 14px;
    }

    h2 {
        font-size: 26px;
    }

    .accordion-item .accordion-button {
        font-size: 14px;
    }

    .about_single_item_left img {
        -o-object-fit: cover;
        object-fit: cover;
        height: 222px;
    }

    .about_single_item_left::before {
        background-size: cover;
    }

    .services_single_item p {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-copy-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 9px;
    }

    .footer-content p {
        margin: 2px 0 16px 0;
    }

    .footer-content {
        margin-bottom: 30px;
    }

    .footer_menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer_menu ul li a {
        padding: 7px 7px;
    }

    .footer_menu ul {
        margin-top: 10px;
    }

    .row.footer-text-row {
        margin-bottom: 0;
    }


}



@media all and (max-width: 567px) {

    .section_padding {
        padding: 40px 0;
    }

    .about_single_item_left::before {
        right: -26px;
        bottom: -37px;
    }

    .container {
        padding: 0 20px;
    }

    h1,
    .hero_text h1 {
        font-size: 24px;
    }

   
    .footer_menu ul li a {
        padding: 7px 4px;
        font-size: 14px;
    }
 
    .footer-copy-right ul li a {
        font-size: 14px;
    }

    .footer-subscribe button {
        padding: 6px 10px;
    }

    .footer-subscribe input {
        padding: 8px 10px;
    }



}

