@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif !important;
}

body.no-scroll {
    overflow: hidden;
}

:root {
    --primary: #991B2B;
    --secondary: #717171;
    --active: #991B2B;
    --header_bg: #F3F3F3;
    --black_text: #242423;
}

body.has-sticky-nav {
    padding-top: 80px;
}

/* ================= HEADER ================= */

nav.navbar {
    padding: 20px 0;
    background: #fff;
    position: relative;
    width: 100%;
    z-index: 999;
    transition: 0.3s;
}

/* STICKY */
nav.navbar.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(240, 240, 240, 0.74);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid #DCDCDC;
    animation: slideDown 0.3s ease forwards;
}

/* ANIMATION */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= MENU DESKTOP ================= */

.phone-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
}

.menu-list {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    position: relative;
}

.menu-list li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: #717171;
}

.navbar-sticky li a {
    color: var(--black_text);
}

/* HOVER */
.menu-list li a:hover {
    color: var(--primary);
}

/* ================= SUBMENU ================= */

.submenu {
    position: absolute;
    top: 100%;
    left: -15px;
    background: #fff;
    min-width: 135px;
    display: none;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submenu li {
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    text-align: center;
}

/* DESKTOP HOVER */
.menu-list li:hover>.submenu {
    display: block;
}

/* ARROW */
.has-submenu svg {
    transition: 0.3s;
}

.has-submenu.active svg {
    transform: rotate(180deg);
}

/* ================= BUTTON ================= */

.action_btn a {
    background: linear-gradient(180deg, #DD5667 0%, #991B2B 100%);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.action_btn a:hover {
    box-shadow: 0 8px 16px rgba(190, 0, 32, 0.4);
}

/* ================= TOGGLE ================= */

.toggle-menu {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

.close-menu {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* SHOW */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* footer */
.footer-wrapper {
    overflow: hidden;
}

.footer-wrapper .footer_top {
    background: #231f20;
    padding: 50px 0px 40px 0px;
    position: relative;
    z-index: 1;
    background-image: url(../assets/images/footerbg_up.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer-wrapper .footer_top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/footer_bgb.png') no-repeat center / cover;
    z-index: -1;
}

.footer-wrapper .footer_top .company-details{
	text-align:center;
}
.footer-wrapper .footer_top .company-details .footer_logo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.footer-wrapper .footer_top .company-details .footer_logo img {
    width: 100%;
}

.footer-wrapper .footer_top .company-details img {
    margin-bottom: 8px;
}

.footer-wrapper .footer_top .company-details p {
    font-weight: 500;
    font-size: 14px;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.footer-wrapper .footer_top .common-links h3 {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.footer-wrapper .footer_top .common-links ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.footer-wrapper .footer_top .common-links ul li {
    list-style: none;
}

.footer-wrapper .footer_top .common-links ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #CCCCCC;
}

.footer-wrapper .footer_top .common-links ul li a:hover {
    color: var(--primary);
}

.footer-wrapper .footer_top .contact-item {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px
}

.footer-wrapper .footer_top .contact-item p {
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.footer-wrapper .footer_top .contact-item .address_info {
    font-weight: 500;
    font-size: 12px;
    color: #AFAFAF;
}

.footer-wrapper .footer_top .align_items {
    text-align: center;
}

.footer-wrapper .copyright-container {
    padding: 10px 0px;
}
.footer-wrapper .footer_top .company-details .container img {
    margin-bottom: 0px;
}

.footer-wrapper .copyright-container .container {
    display: flex;
    justify-content: space-between;
	  flex-direction: column;
    align-items: center;
}

.footer-wrapper .copyright-container .container p {
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    margin: 0px;
}

.footer-wrapper .copyright-container ul {
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 15px;
	padding-left:0px;
}

.footer-wrapper .copyright-container ul li {
    list-style-type: none;
    padding: 0px;
}

.footer-wrapper .copyright-container ul li a {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: cover;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-wrapper .copyright-container ul li a img {
    width: 18px;
    height: 18px;
}


/* Hero Section */
.banner-wrapper {
    background: #F5F5F5;
    padding: 60px 0px 10px 0px;
    position: relative;
    overflow: hidden;
}

.banner-wrapper {
    background-image: url(../assets/images/bannerupbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-wrapper::before {
    content: '';
    background-image: url(../assets/images/banner-img2.png);
    background-position: bottom;
    background-size: cover;
}

.banner-wrapper img.bannerleft-img {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
}

.banner-wrapper .banner-leftcol {
    padding-top: 50px;
}
.banner-leftcol > span{
	display: block;
    margin-left: 6px;
    color: #991b2b;
}
.banner-wrapper .banner-leftcol h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    text-transform: capitalize;
    color: var(--black_text);
    margin-bottom: 20px;
}

.banner-wrapper .banner-leftcol h1 span {
    color: var(--primary);
}

.banner-wrapper .banner-leftcol p {
    font-weight: 500;
    font-size: 18px;
    color: #717171;
    margin-bottom: 60px;
	line-height: 24px;
}

.banner-wrapper .banner-leftcol .banner_btn {
    display: flex;
    gap: 16px;
}

.banner-wrapper .banner-leftcol .banner_btn .our-services {
    border: 1px solid var(--black_text);
    border-radius: 12px;
    padding: 16px 22px;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black_text);
    text-decoration: none;
    z-index: 9;
}

.banner-wrapper .banner-leftcol .banner_btn .our-services:hover {
    background: var(--black_text);
    color: #fff;
}


.left_col img,
.left_bloginfo img {
    width: 100%;
}
.banner-rightcol img{
	width:90%;
}
.commom-btn {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
}

.contact-btn {
    background: linear-gradient(180deg, #DD5667 0%, #991B2B 26.44%, #991B2B 100%);
    padding: 16px 22px;
    border-radius: 12px;
    text-transform: capitalize;
    color: #FFFFFF;
    text-decoration: none;
}

.contact-btn:hover {
    box-shadow: 0px 8px 16px 0px #BE002066;
}

.typewriter {
    color: #991B2B;
    border-right: 2px solid #991B2B;
    padding-right: 5px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


/* Section Client */
.client-wrapper {
    padding: 40px 0px;
    border-bottom: 2px solid var(--primary);
    overflow: hidden;
}

.client-wrapper h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}

.client-wrapper .client_logorow {
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.client-wrapper .slick-slide img {
    margin: auto;
}

/* Who we Are */
.whoare-wrapper {
    padding: 80px 0px;
    overflow: hidden;
}

.whoare-wrapper .right_col {
    padding: 37px 0px;
}

.whoare-wrapper .right_col h3 {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--primary);
    margin-bottom: 12px;
}

.whoare-wrapper .right_col h2 span{
	    color: #991b2b;
}
.whoare-wrapper .right_col h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    color: var(--black_text);
    margin-bottom: 24px;
}

.whoare-wrapper .right_col p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #717171;
    margin-bottom: 16px;
}

.whoare-wrapper .right_col .learn_morebtn {
    background: linear-gradient(180deg, #DD5667 0%, #991B2B 26.44%, #991B2B 100%);
    padding: 16px 22px;
    border-radius: 12px;
    text-transform: capitalize;
    color: #FFFFFF;
    text-decoration: none;
}

.whoare-wrapper .right_col .learn_morebtn:hover {
    box-shadow: 0px 8px 16px 0px #BE002066;
}

.whoare-wrapper .right_col .learn_more {
    margin-top: 30px;
    display: inline-block;
}

/* counter section */
.counter_sec {
    margin-bottom: 80px;
    overflow: hidden;
}

.counter_sec .stats {
    padding: 20px 40px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
    flex-wrap: wrap;
    box-shadow: 0px 28px 28px 0px #991B2B66;
}

.counter_sec .stats .stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.counter_sec .stats .stat-box h2,
.stat-box span {
    display: inline-block;
    font-weight: 500;
    font-size: 38px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.red{
	color: var(--primary);
}
.counter_sec .stats .stat-box p {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.counter_sec .stats .stat-box .counter_inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.counter_sec .stats .stat-box .counter_inner img {
    margin-right: 10px;
}

.counter_sec .stats .stat-box .counter_inner .icon img {
    width: 40px;
    height: 40px;
    border-radius: none;
    padding: 0px;
}


/* our strategic sec  */
.ourstrategic-wrapper {
    background: url(../assets/images/Strategicbg.png);
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
    overflow: hidden;
}

.ourstrategic-wrapper h3 {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.ourstrategic-wrapper h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 0px;
}

.ourstrategic-wrapper p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 16px;
	margin-top: 40px;
}

.strategic_tablerow {
    position: relative;
}

.strategic_tablerow::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 23.33%;
    width: 14px;
    pointer-events: none;
    box-shadow: -7px 0 9px rgb(0 0 0 / 10%);
    border-radius: 20px 0px 0px 20px;
}

.ourstrategic-wrapper .strategic_tablerow .table-container {
    margin-top: 6px;
    background: transparent;
    border-radius: 16px;
}

.ourstrategic-wrapper .strategic_tablerow .table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container thead {
  
}

.table-container th {
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    color: var(--black_text);
    padding: 20px;
	text-align:center;
}

.table-container th img {
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 12px;
    margin-right: 12px;
}

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

.table-container table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
}

.strategic_tablerow td {
    padding: 20px;
    vertical-align: center;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #343433;
	line-height:22px;
}

.division {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.table-container table th{
	background: #ffffff;
	
}
.new-table-color .table-container table th{

}
.new-table-color .division span {
	font-size:24px;

}
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    gap: 8px;
    transition: transform 0.3s ease;
}

.icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px;
}

/* Colors */
.red .icon img {
    background: #991B2B;
}

.green .icon img {
    background: #006400;
}

.blue .icon img {
    background: #305CDE;
}

.black .icon img {
    background: #000000;
}

.navy .icon img {
    background: #10264B;
}

.red span {
    color: var(--primary);
}

.green span {
    color: #006400;
}

.blue span {
    color: #305CDE;
}

.black span {
    color: #000000;
}

.navy span {
    color: #10264B;
}

.table-container th:first-child {
    width: 23%;
}

.cell{
		       background-color: transparent !important;
}

.arrow-row{
    width:100%;
    display:flex;
    justify-content:space-around; /* equal spacing */
    align-items:center;
       margin: 7px 0px 32px 0px;
}
.connector{
       position: relative;
    width: 2px;
    height: 25px;
    background: #ffffff;
    margin: 0px auto;
}

/* top arrow */
.connector::before{
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: translateX(-50%) rotate(45deg);
}

/* bottom arrow */
.connector::after{
   content: "";
    position: absolute;
    bottom: 0px;
    left: 70%;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateX(-50%) rotate(45deg);
}

.table-container tbody tr:nth-child(odd) {
 /*   background-color: #f4f4f4; */
}
.odd{
	background-color: #f4f4f4;
}

.ta {
    border-top-left-radius: 20px;
	border-bottom: #f4f4f4 4px solid;
}

.table-container tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table-container tr:last-child td {
   /* border-bottom-left-radius: 20px;*/
}
.spcell{
	border-top-left-radius: 0px !important;
}

.table-container th:nth-child(2) {
    border-top-left-radius: 20px;
}

.strip-table::before {
    display: none;
}

.new-table-color .red .icon img {
    background: #1f3a5f;
}

.new-table-color .red span {
    color: #1f3a5f;
}

.new-table-color .green .icon img {
    background: #F59E0B;
}

.new-table-color .green span {
    color: #F59E0B;
}

.new-table-color .blue .icon img {
    background: #16A34A;
}

.new-table-color .blue span {
    color: #16A34A;
}
.right_bloginfo a, .blog_inner a{    text-decoration: none;}

/* logo_midsec */
.logo_midsec .logo_midrow {
    padding: 0px 0px;
    margin: 86px 0px 80px 0px;
    text-align: center;
    border-radius: 12px;
    position: relative;
}

.logo_midsec .logo_midrow img{
	border-radius: 10px;
}
.logo_midsec .logo_midrow img.logomidside {
    position: absolute;
    right: 14px;
    top: 14px;
}

/* Our Practice */
.ourpractice-wrapper {
    margin-bottom: 100px;
}

.ourpractice-wrapper .row {
    display: flex;
    align-items: stretch;
}

.ourpractice-wrapper .col-lg-4,
.ourpractice-wrapper .col-lg-8 {
    padding: 0px;
}

.practice-toprow {
    margin-bottom: 30px;
}

.practice-toprow h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    color: var(--black_text);
	width: 35%;
	float: left;
}

.practice-toprow p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #717171;
    margin-bottom: 0px;
}

.custom-tabs {
    background: url(../assets/images/practice_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    gap: 23px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    padding: 1px 0px 0px 0px;
}

.custom-tabs .nav-link {
    border: none;
    padding: 40px 34px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    position: relative;
    transition: 0.3s;
    width: 100%;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    display: flex;
    align-items: center;
    gap: 28px;
}

button.nav-link:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

/* ===== RED (Cybersecurity) ===== */
.custom-tabs .nav-link.red:hover {
    background: rgba(255, 0, 0, 0.08);
}

.custom-tabs .nav-link.red:hover img {
    transform: scale(1.2);
}

/* ===== GREEN (Sustainability) ===== */
.custom-tabs .nav-link.green:hover {
    background: rgba(0, 128, 0, 0.08);
}

.custom-tabs .nav-link.green:hover img {
    transform: scale(1.2);
}

/* ===== BLUE (Business) ===== */
.custom-tabs .nav-link.blue:hover {
    background: rgba(0, 0, 255, 0.08);
}

.custom-tabs .nav-link.blue:hover img {
    transform: scale(1.2);
}

/* ===== BLACK (GRC) ===== */
.custom-tabs .nav-link.black:hover {
    background: rgba(0, 0, 0, 0.06);
}

.custom-tabs .nav-link.black:hover img {
    transform: scale(1.2);
}

/* ===== DARK BLUE (Capacity) ===== */
.custom-tabs .nav-link.darkblue:hover {
    background: rgba(0, 51, 153, 0.08);
}

.custom-tabs .nav-link.darkblue:hover img {
    transform: scale(1.2);
}

/* COLORS */
.nav-link.red {
    color: #991B2B;
}

.nav-link.green {
    color: #006400;
}

.nav-link.blue {
    color: #305CDE;
}

.nav-link.black {
    color: #000000;
}

.nav-link.darkblue {
    color: #10264B;
}

/* ACTIVE STATE */
.nav-link.active.red {
    background: #991b2b47;
}

.nav-link.active.green {
    background: #00640033;
}

.nav-link.active.blue {
    background: #305cde47;
}

.nav-link.active.black {
    background: #0000005c;
}

.nav-link.active.darkblue {
    background: #0000002a;
}

/* RIGHT SIDE BOX */
.content-box {
    padding: 1px 16px 16px 16px;
    position: relative;
    box-shadow: 0px 12px 12px 0px #0000000D;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 100%;
}

.red-theme::after {
    background: #b02a37;
}

.green-theme::after {
    background: #198754;
}

.blue-theme::after {
    background: #0d6efd;
}

.black-theme::after {
    background: #000;
}

.dark-theme::after {
    background: #10264B;
}

.content-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.content-box p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
    color: #717171;
}

.tab_info h4 {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black_text);
    margin-bottom: 12px;
}

.ineer_info p {
    border: 1px solid #006400;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #006400;
    background: #D9E8D9;
    margin-bottom: 8px;
}

.tab_info hr {
    border: 1px solid #343433;
    margin-top: 8px;
}

.content-box .ineer_info p {
    display: inline-block;
    padding: 6px 14px;
    margin: 5px 6px 5px 0;
    border-radius: 20px;
    font-size: 14px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background: rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.content-box .ineer_info p {
    display: inline-block;
    padding: 6px 14px;
    margin: 5px 6px 5px 0;
    border-radius: 20px;
    font-size: 14px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background: rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.red-theme .ineer_info p {
    background: rgba(153, 27, 43, 0.1);
    border: 1px solid #b02a37;
    color: #b02a37;
}

.green-theme .ineer_info p {
    background: rgba(0, 100, 0, 0.1);
    border: 1px solid #198754;
    color: #198754;
}

.blue-theme .ineer_info p {
    background: rgba(48, 92, 222, 0.1);
    border: 1px solid #305CDE;
    color: #305CDE;
}

.black-theme .ineer_info p {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #000;
    color: #000;
}

.dark-theme .ineer_info p {
    background: #10264b29;
    border: 1px solid #10264B;
    color: #10264B;
}

.tab-content,
.tab-pane {
    height: 100% !important;
}

.mobile-accordion-wrapper {
    padding: 0 15px;
}

.mobile-accordion-wrapper .practice-subtitle {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #717171;
    margin-bottom: 20px;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}

.acc-btn {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: none;
    width: 100%;
    text-align: left;
    background: transparent;
    border-radius: 12px !important;
}

.acc-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s;
}

.acc-btn:not(.collapsed) img {
    transform: scale(1.15);
}

/* Button colors — reuse your existing color tokens */
.acc-btn.red {
    color: #991B2B;
    background: #991b2b20;
}

.acc-btn.green {
    color: #006400;
    background: #00640015;
}

.acc-btn.blue {
    color: #305CDE;
    background: #305cde20;
}

.acc-btn.black {
    color: #1a1a1a;
    background: #00000012;
}

.acc-btn.darkblue {
    color: #10264B;
    background: #10264b15;
}

/* Active (open) state */
.acc-btn.red:not(.collapsed) {
    background: #991b2b47;
}

.acc-btn.green:not(.collapsed) {
    background: #00640033;
}

.acc-btn.blue:not(.collapsed) {
    background: #305cde47;
}

.acc-btn.black:not(.collapsed) {
    background: #0000005c;
}

.acc-btn.darkblue:not(.collapsed) {
    background: #0000002a;
}

/* Remove Bootstrap's default arrow and replace with nothing (or keep it) */
.acc-btn::after {
    margin-left: auto;
    flex-shrink: 0;
}

/* Body — reuse your existing .content-box styles, just remove top border-radius */
.accordion-body.content-box {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Remove Bootstrap's default accordion border */
.accordion-item,
.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}


/* What we do section */
.wwd-section {
    overflow: hidden;
    background-image: url(../assets/images/what-wedobg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px;
}

#whatWeDo .wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    height: 320px;
}

#whatWeDo .tabs {
    display: flex;
    gap: 10px;
    flex: 1;
}

#whatWeDo .tab {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px 14px;
    background: rgba(221, 221, 221, 0.3);
    border-top: 4px solid #991B2B;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 16px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    flex: 0 0 60px;
    overflow: hidden;
}

#whatWeDo .tab img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* CONTENT PANEL — shown inline as expanded tab */
#whatWeDo .content-panel {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(221, 221, 221, 0.3);
    border-bottom: 4px solid #991B2B;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    padding: 30px 25px;
    flex: 0 0 340px;
    color: #fff;
    transition: all 0.4s ease;
}

#whatWeDo .content-panel.active {
    display: flex;
}

#whatWeDo .content-panel img {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    background: #991B2B;
    border-radius: 50%;
    padding: 8px;
}

#whatWeDo .content-panel h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
}

.wwd-section h2 {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    text-align: center;
}

.wwd-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.wwd-section .sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.wwd-wrapper {
    display: flex;
    gap: 20px;
    height: 330px;
    align-items: stretch;
    overflow: hidden;
    justify-content: center;
}

.wwd-item {
    border-radius: 12px;
    border-bottom: 4px solid #991B2B;
    background: #FFFFFF4D;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 64px;
    display: flex;
    flex-direction: row;
    position: relative;
    transition: all 1s ease-in-out;
}

.wwd-icon-wrap img {
    width: 50px;
}

.wwd-item.active {
    flex: 1 1 auto;
    border-top: none;
    border-bottom: 4px solid #991B2B;
    flex: 0.6;
}

.wwd-collapsed {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    width: 64px;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.2s;
    justify-content: space-between;
}

.wwd-item.active .wwd-collapsed {
    opacity: 0;
    width: 0;
    padding: 0;
    overflow: hidden;
    min-width: 0
}

.wwd-collapsed .wwd-icon-wrap img {
    transform: rotate(180deg);
}

.wwd-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #991B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wwd-icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: #fff
}

.wwd-expanded {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 26px;
    color: #fff;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.10s 0.25s, width 0s;
    white-space: normal;
    flex-shrink: 0;
}

.wwd-item.active .wwd-expanded {
    opacity: 1;
    width: auto;
    min-width: 240px;
    flex: 1;
    background: #ffffff03;
    backdrop-filter: blur(2px);
}

.wwd-expanded .big-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #991B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wwd-expanded .big-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.wwd-expanded h3 {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}

.wwd-expanded p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #CCCCCC;
    text-align: left;
}

.box img {
    margin-bottom: 16px;
}

.box h6 {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 4px;
}

.box p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #CCCCCC;
    text-align: left;
}


/* Why Allied Boston? section */
/* .why-section {  overflow: hidden;  padding: 80px 0px;  background: #F7F7F7;  text-align: center;} */
.why-section {
    padding: 80px 0px;
    background: #F7F7F7;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 37%;
    left: 0;
    right: 0px;
    width: 100%;
    height: 375px;
    background: url('../assets/images/whybg.png') no-repeat center;
    background-size: cover;
    z-index: 0;
    margin: 0px auto;
}

.why-section * {
    position: relative;
    z-index: 1;
}

.why-section .container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-section h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--black_text);
}

.why-section .subtitle {
    max-width: 1000px;
    margin-bottom: 65px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #717171;
}

.why-section .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 73px 20px;
    position: relative;
}

.why-section .grid::before {
    content: "";
    position: absolute;
    top: 17%;
    left: 0;
    right: 0px;
    width: 276px;
    height: 237px;
    background: url('../assets/images/whyimg-2.png') no-repeat center;
    background-size: contain;
    z-index: 1;
    margin: 0px auto;
}

.why-section .card {
    border: 0px;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
    box-shadow: 0px 12px 12px 0px #0000000D;
    position: relative;
}

.why-section .card::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    right: 14px;
    width: 62px;
    height: 62px;
    background: url('../assets/images/card-img.png') no-repeat center;
    background-size: contain;
    z-index: 1;
    margin: 0px auto;
}

.why-section .card:hover::before {
    background: url('../assets/images/card-imghover.png') no-repeat center;
}

.why-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 12px 0px #991B2B26;
}

.why-section .card:hover h3 {
    color: var(--primary);
}

.why-section .icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #991B2B;
    color: #991B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: -54px;
}

.card:hover .icon {
    background: #991B2B;
}

.card .icon svg path {
    fill: #991B2B;
}

.item svg path {
    fill: #991B2B !important;
}

.card:hover .icon svg path {
    fill: #ffffff;
}

.why-section .icon img {
    width: 100%;
}

.why-section .card h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.why-section .card p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #717171;
    margin: 0px;
    width: 100%;
}

/* Highlight card */
.why-section .highlight {
    border: 1px solid #c62828;
    background: #fff5f5;
}

.why-section .highlight .icon {
    background: #c62828;
    color: #fff;
}

/* Section Industry */
section.industries {
    padding: 80px 0px;
    overflow: hidden;
}

.industry_row h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    color: var(--black_text);
    margin-bottom: 20px;
    text-align: center;
}

.border_one {
    border: 1px dashed #34343340;
    border-radius: 194px;
    padding: 85px 63px 63px 63px;
}

.border_second {
    border: 1px dashed #34343340;
    border-radius: 194px;
    position: relative;
}

.row-top {
    display: flex;
    justify-content: space-evenly;
}

.row-bottom {
    display: flex;
    justify-content: space-evenly;
}

.center_row div {
    text-align: center;
    margin: 80px 0px;
}

.center_row div img {
    background: #991B2B;
    width: 80px;
    height: 80px;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0px 8px 15px 0px #00000012;
    box-shadow: 0px 8px 15px 0px #991B2B59;
}

.row-top p{
	font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--black_text);
    padding: 3px;
    background: #fff;
}
.row-bottom p {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--black_text);
    padding: 3px;
    background: #fff;
}

.row-bottom svg,
.row-top svg {
    box-shadow: 0px 8px 15px 0px #00000012;
    width: 66px;
    height: 66px;
    padding: 15px;
    border-radius: 14px;
    background: #fff;
}

.row-bottom p {
    margin-bottom: 0px;
    margin-top: 20px;
}

.row-bottom img {
    margin-bottom: 20px;
}

.row-top {
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    width: 100%;
    top: -92px;
}

.row-bottom {
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    width: 100%;
    bottom: -80px;
}

.row-bottom .item,
.row-top .item {
    text-align: center;
    transition: transform 0.3s ease;
}

.row-bottom .item:hover,
.row-top .item:hover {
    transform: translateY(-5px);
}

.item svg path {
    fill: #991B2B !important;
}

.item:hover svg path {
    fill: #ffffff !important;
}

.row-bottom .item:hover svg,
.row-top .item:hover svg {
    background-color: var(--primary);
    box-shadow: 0px 8px 15px 0px #991B2B59;
}

/* Our Clients */
.our_clients {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background: url('https://www.alliedboston.com/ab_new/assets/images/client_bg.jpg') center/cover no-repeat;
} 

.our_clients h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    color: #fff;
}

.clients-grid {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 23px;
    z-index: 2;
    flex-wrap: wrap;
    margin-top: -35px;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo_card {
    width: 100%;
    background: #FFFFFF;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 4px solid #991B2B;
    transition: 0.3s;
    padding: 28px 10px;
}

.logo_card:hover {
    transform: translateY(-5px);
}

.highlight .card {
    border: 2px solid #4db5ff;
    box-shadow: 0 0 10px rgba(77, 181, 255, 0.6);
}

.col.padding_64px {
    padding-top: 64px;
}

.col.padding_128px {
    padding-top: 128px;
}
.mobile{
	display:none;
}
.logo_footer{
	width: 280px;
}
.clients-mobile {
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

/* Clients Feedback */
section.clients_feedback {
    background: linear-gradient(180deg, #F7F7F7 0%, rgba(247, 247, 247, 0) 100%);
    overflow: hidden;
    position: relative;
}

.client_feedbackleft {
    padding-top: 103px;
    padding-bottom: 0px;
}

.client_feedbackleft img {
    margin-bottom: 62px;
}

.client_feedbackleft h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.stat-box p{
	text-align: center;
	width:70%;
}

.client_feedbackleft p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #717171;
    margin-bottom: 50px;
}

.feedback-track-wrapper {
    height: 650px;
    overflow: hidden;
    position: relative;
    padding-right: 30px;
}

.feedback-dots {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 9;
}

.feedback-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #23232333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.feedback-dot.active {
    background: #a51d2d;
    width: 12px;
    height: 12px;
}

.feedback-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.clients_feedback .card.hovered {
    background: #a51d2d;
    color: #fff;
    border-left: 6px solid #FFFFFF30;
    box-shadow: 0px 12px 20px 0px #991B2B66;
}

.clients_feedback .card.hovered .testimonial_info svg path {
    fill: #fff;
}

.clients_feedback .card.hovered p,
.clients_feedback .card.hovered h4,
.clients_feedback .card.hovered span {
    color: #fff;
}

.clients_feedback .card {
    background: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    margin: 10px 0;
    border-left: 6px solid #CCCCCC;
    transition: background 0.3s ease, transform 0.3s ease,
        box-shadow 0.3s ease, color 0.3s ease,
        width 0.6s ease;
    flex-shrink: 0;
    width: 77%;
    margin-left: auto;
}

.clients_feedback .card:hover {
    background: #a51d2d;
    color: #fff;
    border-left: 6px solid #FFFFFF30;
    box-shadow: 0px 12px 20px 0px #991B2B66;
    margin-left: auto;
    z-index: 9;
    width: 85%;
}

.clients_feedback .card:hover .testimonial_info svg path {
    fill: #fff;
}

.clients_feedback .card:hover p,
.clients_feedback .card:hover h4,
.clients_feedback .card:hover span {
    color: #fff;
}

.clients_feedback .card h4 {
    font-weight: 600;
    font-size: 14px;
    color: #343433;
    margin-bottom: 0px;
}

.clients_feedback span {
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
}

.testimonial_info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.testimonial_info svg {
    width: 25px;
    height: 25px;
    min-width: 25px;
}

.testimonial_info svg path {
    fill: #CCCCCC;
}

.testimonial_info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #717171;
    margin-bottom: 0px;
}

.clients_feedback button {
    background: #a51d2d;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
}

img.client_bottomimg {
    position: absolute;
    width: 100%;
    bottom: 0px;
}

img.client_topimg {
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 1;
}

.quote-icon path {
    fill: #D9D9D9;
    transition: 0.3s;
}

.card:hover .quote-icon path {
    fill: #fff;
}

.slick-slide {
    cursor: pointer;
}

.slick-dots {
    position: absolute;
    bottom: 50% !important;
    display: block;
    width: 20%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: flex !important;
    flex-direction: column !important;
    left: 107% !important;
}

.slick-dots li button:before {
    font-size: 8px !important;
    color: #231F2033 !important;
    opacity: 100 !important;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--primary) !important;
    font-size: 12px !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.clients_feedback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    width: 100%;
    height: 100%;
    background: url(../assets/images/whybg.png) no-repeat center;
    background-size: cover;
    z-index: -1;
    margin: 0px auto;
}

.feedbach_leftimg {
    margin-top: 45px;
}

.feedbach_leftimg img {
    margin-bottom: 0px;
    width: 197px;
    position: relative;
    left: 100px;
}

section.clients_feedback .slick-list {
    height: 650px !important;
}


/* blog Section*/
section.blog_section {
    margin-top: 100px;
    margin-bottom: 80px;
    overflow: hidden;
}

.blog_section h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 51px;
    text-transform: capitalize;
    color: var(--black_text);
    margin-bottom: 30px;
}

.blog_left h3,
.blogright_top h3 {
    font-weight: 600;
    font-size: 28px;
    text-transform: capitalize;
    color: var(--black_text);
    margin-bottom: 0px;
}

.blog_left h3 {
    margin-bottom: 32px;
}

.blog_leftimg {
    background-image: url(../assets/images/blogleft_img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 223px 12px 6px 12px;
    border-radius: 12px;
}

.blogright_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blogright_top a {
    padding: 10px 20px;
    font-size: 14px;
}

a.blogtype {
    padding: 6px 12px;
    background: #BE0020;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11px;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    margin-bottom: 14px;
}

.blog_inner {
    background: #ffffffd6;
    border-radius: 16px;
   padding: 15px;
    margin-top: 0px;
}

.blog_inner h5 {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 4px;
}

.blog_inner p {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
     color: #000000;
    margin-bottom: 16px;
}

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

.blog_innerinfo .blog_left {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.blog_innerinfo .blog_left a {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--primary);
    margin-bottom: 0px;
    text-decoration: none;
}

.blog_innerinfo .blog_left div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog_innerinfo .blog_left span {
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    color: #000000;
}

.blog_innerinfo .blog_right a {
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    color: var(--primary);
}

.blogright_top .slick-list {
    height: 426px !important;
}

.blog_right .card {
    display: flex;
    flex-direction: row;
    gap: 16px;
    box-shadow: 0px 12px 20px 0px #0000001A;
    padding: 8px;
    border-bottom: 2px solid #991B2B;
    border-radius: 16px;
    margin-bottom: 20px;
}

.left_bloginfo {
    width: 30%;
}

.right_bloginfo {
    width: 70%;
}

.right_bloginfo h5 {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--black_text);
    margin-top: 12px;
    margin-bottom: 4px;
}

.right_bloginfo p {
    font-weight: 500;
    font-size: 16px;
	line-height:22px;
    color: #717171;
    margin-bottom: 12px;
}

.right_bloginfo .blog_left span {
    color: var(--black_text);
}

/* Contact Us Section */
.contactus-section .row {
    background: #991B2B;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 40px 40px 80px 40px;
    position: relative;
    overflow: hidden;
}

img.background_before {
    position: absolute;
    width: 350px;
    bottom: 1px;
    left: 0px;
    height: 350px;
	    opacity: .6;
}

.contactus-section .row::before {
    content: '';
    background-image: url(../assets/images/contact_bg1.png);
}

.contact_leftcol {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%), url('../assets/images/contact-usleftbg.png');
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.contact_leftcol h2 {
    font-weight: 600;
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 4px;
    color: #ffff;
}

.contact_leftcol p {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #ffff;
    margin-bottom: 20px;
}

.contact_leftcol span {
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    color: #ffff;
}

.contact_leftcol img {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.contact_right h3 {
    font-weight: 600;
    font-size: 32px;
    text-transform: capitalize;
    color: #ffff;
    margin-bottom: 16px;
}

.contactus-section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Inputs */
.contactus-section input,
.contactus-section textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.contactus-section input::placeholder,
.contactus-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Focus effect */
.contactus-section input:focus,
.contactus-section textarea:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
}

/* Textarea */
.contactus-section textarea {
    margin-top: 20px;
    min-height: 140px;
    resize: none;
    grid-column: span 2;
}

/* Button */
.contactus-section button {
    margin-top: 20px;
    background: #2b2b2b;
    color: #fff;
    border: none;
    padding: 13px 51px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    box-shadow: 0px 8px 16px 0px #00000066;
}

.contactus-section button:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Subscribe Us section */
.subscribe {
    background-image: url(../assets/images/subscribe_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

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

.subscribe_row h2 {
    font-weight: 600;
    font-size: 32px;
    text-transform: capitalize;
    color: #ffff;
    margin-bottom: 0px;
}

.subscribe-box {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.subscribe-box input {
    width: 100%;
    padding: 15px 130px 15px 20px;
    border-radius: 40px;
    border: none;
    outline: none;
    background: #e5e5e5;
    font-size: 14px;
}

.subscribe-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: #BE0020;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-box button:hover {
    background: #a80016;
}

.banner-wrapper,
.client-wrapper,
.whoare-wrapper,
.counter_sec,
.ourstrategic-wrapper,
.logo_midsec,
.ourpractice-wrapper,
.wwd-section,
.why-section,
.industries,
.our_clients,
.clients_feedback,
.blog_section,
.contactus-section,
.subscribe,
.footer-wrapper {
    overflow: hidden;
}

.common-float-wrap {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.common-float-wrap a {
    animation: move 2s infinite alternate-reverse;
}

.common-float-wrap a img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
}

.common-float-wrap p {
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #000000;
}

.common-float-wrap.whatapp-float-btn {
    position: fixed;
    left: 2%;
    bottom: 4%;
}

.common-float-wrap.leave-us-msg {
    position: fixed;
    right: 2%;
    bottom: 1%;
}

@keyframes move {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(8px);
    }
}

.leave-msg-modal .modal-header {
    border-bottom: 0px;
    padding: 10px;
    padding-bottom: 0px;
}

.leave-msg-modal h3 {
    font-size: 18px;
    color: var(--active);
    margin-bottom: 1rem;
    line-height: normal;
}

.leave-msg-modal .leave-msg-wrapper .field-icon {
    position: absolute;
    right: 1px;
    bottom: 15px;
    width: 38px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    background: #fff;
}

.leave-msg-modal .leave-msg-wrapper .form-label {
    margin-bottom: 3px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.leave-msg-modal .leave-msg-wrapper .form-label span {
    color: var(--primary);
}

.leave-msg-modal .leave-msg-wrapper .form-control {
    border-radius: 7px;
    background: #FFF;
    padding: 12px 15px;
    border-color: #848484;
}

.leave-msg-modal .leave-msg-wrapper .form-control::-moz-placeholder {
    color: #9A9A9A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.leave-msg-modal .leave-msg-wrapper .form-control::placeholder {
    color: #9A9A9A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.leave-msg-modal .leave-msg-wrapper .form-control:focus {
    box-shadow: unset;
    border-color: var(--primary);
}

.leave-msg-modal .leave-msg-wrapper .connect-btn {
    width: 50%;
    margin: auto;
    margin-top: 15px !important;
    background-color: var(--primary);
    color: #fff;
    border: 0px;
    padding: 12px;
    border-radius: 8px;
}


.mr {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 35px 0px 0px 0px;
}

/* box */
.mr span {
    background: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 2;
    border: 1px solid #ddd;
}

/* top line */
.mr::before {
   content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 35px;
    background: #ffffff;
    transform: translateX(-50%);
}
.arrow-svg{
    margin-top: -11px;
}
.mt-3{
	margin-top: -25px !important;
}

.hbm{
	    margin-bottom: 40px
}

.industry_row > p {
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
    text-align: center;
    margin-bottom: 40px;
}
.our_clients .sub-heading{
	margin-top: 40px;
    margin-bottom: 0px;
}

