body, html {
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
    overflow-x: hidden;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
	outline: none;
	color: unset;
}
a:visited {
    color: unset;
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
:root {
    --text-color: #12404D;
    --hover-color: #EAB936;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --bg-color: #D0E9F0;
    --content-txt-color: #F6E3DA;
}
.post, .page {
    margin: unset;
}

/* common class */
.font-size-14 {
    font-size: 14px;
}
.font-size-16 {
    font-size: 16px;
}
.font-size-18 {
    font-size: 18px;
}
.font-size-20 {
    font-size: 20px;
}
.font-size-22 {
    font-size: 22px;
}
.font-size-26 {
    font-size: 26px;
}
.font-size-30 {
    font-size: 30px;
}
.font-size-32 {
    font-size: 32px;
}
.font-size-36 {
    font-size: 36px;
}
.font-size-45 {
    font-size: 45px;
}
.font-size-62 {
    font-size: 62px;
}
.line-height-26 {
    line-height: 26px;
}
.line-height-28 {
    line-height: 28px;
}
.line-height-32 {
    line-height: 32px;
}
.line-height-50 {
    line-height: 50px;
}
.line-height-58 {
    line-height: 58px;
}
.line-height-64 {
    line-height: 64px;
}
.line-height-70 {
    line-height: 70px;
}
.font-weight-medium {
    font-weight: 500;
}
.font-weight-semibold {
    font-weight: 600;
}
.font-weight-bold {
    font-weight: 700;
}
.mb-10 {
    margin-bottom: 10px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mt-40 {
    margin-top: 40px;
}
.text-center {
    text-align: center;
}
.color-white {
    color: var(--white-color);
}
.text-color {
    color: var(--text-color);
}
.hover-color {
    color: var(--hover-color);
}
.p-color {
    color: var(--hover-color);
}
.text-transform-uppercase {
    text-transform: uppercase;
}
.display-flex {
    display: flex;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.ds-none {
    display: none;
}
/* Breadcrumbs css */
.breadcrumbs {
    color: var(--white-color);
}
.breadcrumbs a , .breadcrumbs .breadcrumb_last {
    color: var(--white-color);
    /* text-decoration: none; */
    font-size: 16px;
    font-weight: 900;
}
.custom-separator {
    display: inline-block;
    width: 34px;
    height: 1px;
    background: #fff;
    vertical-align: middle;
    margin: 0px 15px;
}
.breadcrumb_last {
    text-decoration: underline;
    text-decoration-color: #EFB61E;
    text-decoration-thickness: 2px;
    text-underline-offset: 9px;
}

/* Header Styling */
#masthead {
    width: 100%;
    position: absolute; /* Keep header on top */
    z-index: 10; /* Above hero section */
    padding-top: 30px;
}

#masthead .header-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1080px;
    height: 75px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent for readability */
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#masthead .site-branding a img {
    width: 45px;
    height: auto;
}

#masthead .main-navigation ul li {
    padding: 0 16px;
}

#masthead .main-navigation ul li a {
    color: #0E315A;
}

#masthead .header-contact {
    width: 130px;
    background-color: var(--text-color);
    padding: 10px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid ;
    border: 1px solid var(--text-color);
}

#masthead .header-contact:hover {
    background-color: var(--white-color);
    border: 1px solid var(--text-color);
}
#masthead .header-contact:hover a {
    color: var(--text-color);
}

#masthead .header-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
	outline: none;
}

/* Active menu item style */
#masthead .main-navigation ul li.current-menu-item a,
#masthead .main-navigation ul li.current_page_item a,
#masthead .main-navigation ul li.current-menu-ancestor a {
    color: var(--hover-color); /* Highlight color (same as your screenshot) */
    position: relative;
}

/* Underline effect */
#masthead .main-navigation ul li.current-menu-item a::after,
#masthead .main-navigation ul li.current_page_item a::after,
#masthead .main-navigation ul li.current-menu-ancestor a::after {
    content: "";
    position: absolute;
    bottom: -8px; /* distance from text */
    left: 0;
    width: 80%;
    height: 2px;
    background-color: var(--hover-color); /* Same highlight color */
    border-radius: 2px;
}

/* ✅ Active menu item - Mobile menu */
.navigate-mobile-menu .mobile-nav li.current-menu-item a,
.navigate-mobile-menu .mobile-nav li.current_page_item a,
.navigate-mobile-menu .mobile-nav li.current-menu-ancestor a {
    color: var(--hover-color); /* Same highlight color */
    position: relative;
}

/* ✅ Underline for active link - Mobile */
.navigate-mobile-menu .mobile-nav li.current-menu-item a::after,
.navigate-mobile-menu .mobile-nav li.current_page_item a::after,
.navigate-mobile-menu .mobile-nav li.current-menu-ancestor a::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Adjust for spacing in mobile */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--hover-color);
    border-radius: 2px;
}

/* mobile menu */
.navigate-mobile-menu {
    display: none;
}
/* Hamburger button */
.menubutton {
    display: none;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1100;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.menubutton div {
    height: 3px;
    background: #222529;
    border-radius: 2px;
    transition: 0.3s;
}
.menubutton .menuline1 {
    width: 28px;
    transition: all 0.5s ease;
}
.menubutton .menuline2 {
    width: 24px;
    transition: all 0.5s ease;
}
.menubutton .menuline3 {
    width: 15px;
    transition: all 0.5s ease;
}
/* Mobile menu - hidden by default */
.navigate-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    padding: 30px 20px;
    z-index: 1050;
}

/* Active state (when open) */
.navigate-mobile-menu.change {
    left: 0;
    top: 0;
    transition: left 0.3s ease;
}

/* Menu items */
.navigate-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigate-mobile-menu ul li {
    margin: 20px 0;
    /* border-bottom: 1px solid lightgray; */
}

.navigate-mobile-menu ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
}
.navigate-mobile-menu .mobile-head {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
.navigate-mobile-menu .mobile-head .mob-logo img {
    width: 60px;
}
.mobile-menu-close {
    width: 45px;
    height: 45px;
    background: unset;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: absolute;
    /* top: 0px; */
    right: 30px;
    z-index: 10000;
    /* display: none; Hidden by default */
    justify-content: center;
    align-items: center;
}
.mobile-menu-panel.active .mobile-menu-close {
    display: flex; /* Show only when mobile menu is active */
}
.cross-line {
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
}

.cross-line:nth-child(1) {
    transform: rotate(45deg);
}

.cross-line:nth-child(2) {
    transform: rotate(-45deg);
}

/* Hero Section Styling */
#hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px; /* Match image height */
    display: flex;
    align-items: center;
    padding-top: 100px; /* Space for header */
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}

#hero-section .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    /*overflow-x: hidden;*/
}

#hero-section .hero-content {
    max-width: 877px;
    margin: 0 auto;
}

#hero-section h1 {
    max-width: 634px;
    margin: 0 auto 20px;
    font-size: 62px;
    color: #FFFFFF;
    text-align: center;
    line-height: 70px;
}

#hero-section h1 span {
    position: relative;
}

#hero-section h1 span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #fff;
    opacity: 0.5;
}

#hero-section .hero-content p {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 30px;
}

#hero-section .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#hero-section .hero-buttons .btn {
    background-color: #EAB936;
    color: #0E315A;
    padding: 15px 43px;
    border-radius: 32px;
    font-size: 24px;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
}

#hero-section .hero-buttons .consult-btn {
    background-color: #EAB936;
}

#hero-section .hero-buttons .brochure-btn {
    background-color: #12404D;
    color: #FFFFFF;
	outline: none;
	text-decoration: none;
}
#hero-section .hero-buttons .btn:hover {
    background-color: var(--white-color);
    color: var(--text-color);
    text-decoration: none;
}

/* Footer section css */
.site-footer {
    background-color: var(--text-color);
    color: #FFFFFF;
    /* padding: 40px 0; */
    width: 100%;
}
.footer-widgets {
    max-width: 1160px;
    margin: 0 auto;
    /* padding: 40px 20px; */
}
.footer-widgets-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 0;
}
.footer-widgets .footer-about {
    width: 40%;
    padding-right: 100px;
}
.footer-widgets .footer-services h2,
.footer-widgets .footer-company h2,
.footer-widgets .footer-contact h2 {
    font-size: 30px;
    /* line-height: 58px; */
    font-weight: 500;
    margin: 0 0 20px 0;
}
.footer-widgets .footer-about p {
    font-size: 18px;
    line-height: normal;
}
.footer-widgets .footer-about a {
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}
.footer-widgets .footer-services{
    width: 30%;
}
/* .footer-widgets .footer-services ul li {
    margin: 10px 0;
} */
.footer-widgets .footer-services ul li a {
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
}
.footer-widgets .footer-company{
    width: 30%;
}
.footer-widgets .footer-company ul li a {
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
}
.footer-widgets .footer-contact{
    width: 30%;
}
.footer-widgets .footer-contact .contact-info {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-widgets .footer-contact .contact-info a {
    color: #FFFFFF;
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}
hr {
    border: none;
    border-top: 1px solid #D9D9D9;
    margin: 0;
}
.site-info {
    max-width: 1160px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
/*     justify-content: space-between; */
	justify-content: center;
    color: #FFFFFF;
}
.site-info p {
    margin: 0;
    font-size: 14px;
    color: #EEEEEE;
    line-height: normal;
}
.site-info .custom-social-wrapper {
	display: none;
}
.site-info .custom-social-wrapper .footer-social-link {
    display: flex;
    gap: 16px
}
.site-info .custom-social-wrapper .footer-social-link a img {
    width: 32px;
    height: 32px;
}
/* who we are section css */
.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}
.who-we-are {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 100px 0 50px 0;
}
.who-we-are .who-we-are-content {
    width: 60%;
    padding-right: 40px;
}
.who-we-are .who-we-are-content p {
    color: var(--hover-color);
    font-size: 20px;
    /* line-height: 58px; */
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.who-we-are .who-we-are-content h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 30px;
    font-weight: 600;
    color: var(--text-color);
}
.who-we-responsive-title {
    display: none;
}
.who-we-are .who-we-are-content .wwa-text p {
    font-size: 18px;
    margin-bottom: 29px;
    color: var(--text-color);
    text-transform: none;
    line-height: normal;
    font-weight: normal;
}
.who-we-are .wwa-img {
    width: 50%;
}
.who-we-are .wwa-img img {
    width: 100%;
    height: auto;
}
/* why choose us section css */
#why-choose-us {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.why-choose-us p {
    color: var(--hover-color);
    font-size: 20px;
    /* line-height: 58px; */
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.why-choose-us h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 70px;
    font-weight: 600;
    color: var(--text-color);
}
.why-choose-us-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    /* flex-wrap: wrap; */
}
.why-choose-us-grid .wcu-item {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-choose-us-grid .wcu-item .wcu-img {
    font-size: 0;
}
.why-choose-us-grid .wcu-item .wcu-img img {
    width: 100%;
    max-height: 327px;
}
.why-choose-us-grid .wcu-item .wcu-text .wcu-icon-bg {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F6F6;
    border-radius: 50%;
    margin: 10px auto;

}

.why-choose-us-grid .wcu-item .wcu-text:hover .wcu-icon-bg {
    background-color: #FFFFFF;
}

.why-choose-us-grid .wcu-item .wcu-text:hover {
    background-color: #FFF3D3;
}

.why-choose-us-grid .wcu-item .wcu-text:hover hr {
    border: none;
    background-color: #FFFFFF;
    border-top: 1px solid #FFFFFF !important;
    margin: 0;
}

.why-choose-us-grid .wcu-item .wcu-text {
    border: 1px solid gray;
    border-radius: 22px;
    padding: 20px;
    min-height: 328px;
}

#why-choose-us-grid .wcu-item hr {
    margin: 10px 0;
}
.why-choose-us-grid .wcu-item .wcu-text h3 {
    font-size: 26px;
    color: var(--text-color);
    text-align: left;
    margin: 20px 0px;
}
.why-choose-us-grid .wcu-item .wcu-text p {
    font-size: 18px;
    line-height: normal;
    margin: 0;
    color: var(--text-color);
    text-align: left;         
}
/* our services section css */
#our-service {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.our-service p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.our-service h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 70px;
    font-weight: 600;
    color: var(--text-color);
}
.our-service-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.our-service-content .osc-item {
    width: 32%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
    margin-bottom: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 40px 10px;
}
.our-service-content .osc-item .osc-img {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F6F6;
    border-radius: 50%;
}
.our-service-content .osc-item .osc-img img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.our-service-content .osc-item .osc-text h3 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;   
    text-align: left;
    margin-bottom: 20px;
}
.our-service-content .osc-item .osc-text p {
    font-size: 18px;
    line-height: normal;
    margin-bottom: unset;
    color: #000000;
    text-align: left;
}
.our-service-content .osc-item:hover {
    background-color: #FFF3D3;
}
.our-service-content .osc-item:hover .osc-img {
    background-color: #FFFFFF;
}
/* Our projects section css */
#our-projects {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.our-projects p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.our-projects h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 70px;
    font-weight: 600;
    color: var(--text-color);
}
.our-projects-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.our-projects-tabs .tab {
    padding: 10px 20px;
    border: none;
    background: #f5f5f5;
    color: #333;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 500;
    width: 187px;
    height: 59px;
}

.our-projects-tabs .tab.active {
    background: #EAB936;
    color: #fff;
}

.our-projects-tabs .tab span {
    font-size: 12px;
    color: #00aaff;
}

.our-projects-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.our-projects-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.op-item {
    width: 33%;
    /* border: 2px solid #1a3c5e; */
    border-radius: 10px;
    overflow: hidden;
    /* width: 300px; */
    text-align: left;
    padding: 10px;
    margin: 10px 5px;
    background-color: #FFFFFF;
    box-shadow: 0 3px 17px 0 rgba(0, 0, 0, 0.06);
    display: none;
}

.op-item .op-img {
    width: 100%;
    height: auto;
    margin-bottom: 19px;
    padding: 12px;
    background-color: var(--text-color);
    border-radius: 22px;
}

.op-text {
    height: 128px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.op-text p {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px;
}

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

.op-location div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.op-location div img {
    width: 15px;
}

.op-location div span {
    color: #1a3c5e;
    font-weight: 600;
    font-size: 22px;
}
.op-location a {
    text-decoration: none;
    color: #EAB936;
}

.op-location .view-details {
    color: #00aaff;
    text-decoration: none;
    font-weight: 500;
}

#our-projects .slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: #00aaff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#our-projects .slider-controls {
    text-align: center;
    margin-top: 40px;
    height: 40px;
}

#our-projects .slick-prev, #our-projects .slick-next {
    width: 30px;
    height: 30px;
    /* border: 2px solid #1a3c5e; */
    background: #fff;
    border-radius: 50%;
    top: unset !important;
    cursor: pointer;
    margin: 0 10px;
    background-size: 50% auto; /* Adjust size to fit the icon */
    background-repeat: no-repeat;
    background-position: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#our-projects .slick-next {
    right: 45% !important;
}
#our-projects .slick-prev {
    left: 43% !important;
}

#our-projects .slick-prev::before {
    content: url('https://hmanjienterprise.deepcoder.in/wp-content/themes/enterprise/assets/images/prev-icon.png') !important;
    opacity: 1 !important;
}

#our-projects .slick-next::before {
    content: url('https://hmanjienterprise.deepcoder.in/wp-content/themes/enterprise/assets/images/next-icon.png') !important;
    opacity: 1 !important;
}

/* our process section css */
#our-process {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.our-process p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.our-process h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 70px;
    font-weight: 600;
    color: var(--text-color);
}

.our-process {
    text-align: center;
    margin-bottom: 40px;
}

.our-process-grid {
    position: relative;
    max-width: 1109px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* White space between steps */
    padding: 0 50px;
}

.process-step {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.step-number {
    position: absolute;
    left: 50%;
    top: -45px; /* White space above the number */
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border: 2px solid black;
    color: var(--text-color);
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    background-color: #fff;
}

/* Dark color for the first step number */
.process-step:first-child .step-number {
    border-color: var(--text-color); /* Dark border */
    color: var(--text-color); /* Dark text */
}

/* Light color for other step numbers */
.process-step:not(:first-child) .step-number {
    border-color: #cccccc; /* Light border */
    color: var(--text-color); /* Light text */
}

.step-content {
    max-width: 50%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-top: 30px; /* White space below the number */
    box-sizing: border-box;
}

.step-content img {
    width: 58px;
    margin-top: 10px;
    margin-bottom: 0;
}

.process-step:nth-child(odd) .step-content {
    margin-left: auto;
    text-align: left;
    padding: 15px 0px 15px 40px;
}

.process-step:nth-child(even) .step-content {
    margin-right: auto;
    text-align: right;
    flex-direction: row-reverse;
    padding: 15px 40px 15px 0px;
}

.step-content .step-content-item h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-color);
    margin: unset;
    line-height: normal;
}

.step-content .step-content-item p {
    font-size: 18px;
    color: var(--text-color);
}

/* Individual line for each step */
.process-step::before {
    content: "";
    position: absolute;
    top: 16px; /* Start line just below the step number */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #ddd; /* Default light line color */
    z-index: 1;
}

/* Dark line for the first step */
.process-step:first-child::before {
    background-color: #000000; /* Dark line */
}

/* Light line for other steps */
.process-step:not(:first-child)::before {
    background-color: #cccccc; /* Light line */
}

/* Individual line for each step */
.process-step::before {
    content: "";
    position: absolute;
    top: 16px; /* Start line just below the step number */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #ddd;
    z-index: 1;
}

/* Our history section css */
#our-history {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.our-history p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.our-history h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 0;
    font-weight: 600;
    color: var(--text-color);
}
#our-history .our-history-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 70px 0 0 0;
    background-color: #FFF3D3;
    border-radius: 12px;
}
#our-history .our-history-content .oh-item-content {
    width: 50%;
    text-align: left;
    padding: 0px 0px 0px 32px;
}
#our-history .our-history-content .oh-item-img {
    width: 50%;
    font-size: 0px;
}
#our-history .our-history-content h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    color: var(--text-color);
	margin-bottom: 30px;
}
#our-history .our-history-content p {
    font-size: 18px;
    line-height: normal;
    color: var(--text-color);
	margin-bottom: 20px;
}
/* Our gellary section css */
#our-gallery {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}
.our-gallery p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}  
.our-gallery h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 70px;
    font-weight: 600;
    color: var(--text-color);
}
.our-gallery-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 10px;
    /* gap: 20px; */
    flex-wrap: wrap;
    background-image: url('../images/gallery-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px;
}
.our-gallery-content .slick-slide {
    padding: 0 10px; /* spacing between slides */
    box-sizing: border-box;
}

/* Services page css */
#services-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px; /* Match image height */
    display: flex;
    align-items: center;
    padding-top: 70px; /* Space for header */
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}
#services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}
#services-header .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
#services-header h1 {
    max-width: 634px;
    margin: 0 auto 20px;
    font-size: 62px;
    line-height: 70px;
    color: #FFFFFF;
    text-align: center; 
}
/* Our services section on service page */
#our-services-page {
    width: 100%;
    text-align: center;
    padding: 50px 0 100px;
}

#our-services-page .our-services-page-content p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
#our-services-page .our-services-page-content h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 70px;
    font-weight: 600;
    color: var(--text-color);
}
#our-services-page .service-page-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
#our-services-page .service-page-block .service-page-item {
    width: 363px;
    height: 398px;
    padding: 15px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    cursor: pointer;
}
#our-services-page .service-page-block .service-page-item h3 {
    font-size: 28px;
    color: var(--white-color);
    margin: 20px 0 10px 0;
    font-weight: 600;   
    text-align: left;
    transition: transform 0.4s ease;
}
#our-services-page .service-page-block .service-page-item:hover h3 {
    transform: translateY(-10px);
}

#our-services-page .service-page-block .service-page-item p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    font-size: 18px;
    line-height: normal;
    margin-bottom: unset;
    margin-top: unset;
    color: var(--hover-color);
    text-align: left;
}

#our-services-page .service-page-block .service-page-item:hover p {
    max-height: 200px; /* Adjust based on expected text height */
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
}

#our-services-page .service-page-block .service-page-item.pro-one {
    background-image: url('../images/rw-ser.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#our-services-page .service-page-block .service-page-item.pro-two {
    background-image: url('../images/sw-ser.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#our-services-page .service-page-block .service-page-item.pro-three {
    background-image: url('../images/in-ser.png');
    background-size: cover;               
    background-position: center;
    background-repeat: no-repeat;
}
#our-services-page .service-page-block .service-page-item.pro-four {
    background-image: url('../images/rc-ser.png');
    background-size: cover;               
    background-position: center;
    background-repeat: no-repeat;
}
#our-services-page .service-page-block .service-page-item.pro-five {
    background-image: url('../images/co-ser.png');
    background-size: cover;               
    background-position: center;
    background-repeat: no-repeat;
}
#our-services-page .service-page-block .service-page-item.pro-six {
    background-image: url('../images/pm-ser.png');
    background-size: cover;               
    background-position: center;
    background-repeat: no-repeat;
}


/* What we do section */
#what-we-do {
    width: 100%;
    text-align: center;
    padding: 78px 16px 87px;
    background-color: #D0E9F0;
}
#what-we-do .what-we-do-content p {
    color: var(--hover-color);
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}
#what-we-do .what-we-do-content h2 {
    font-size: 45px;
    line-height: 58px;
    margin: 10px 0 10px;
    font-weight: 600;
    color: var(--text-color);
}
#what-we-do .what-we-do-content p.wwd-text {
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    max-width: 842px;
    padding: 0px 15px 50px;
    margin: 0 auto;
    text-transform: none;
}
#what-we-do .wwd-items {
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
#what-we-do .wwd-items .wwd-item {
    width: 30%;
    background-color: var(--text-color);
    border-radius: 22px;
    padding: 10px 10px 28px 10px;
    border: 1.5px solid var(--hover-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#what-we-do .wwd-items .wwd-item img {
    position: absolute;
    top: -15%;
}

#what-we-do .wwd-items .wwd-item h3 {
    font-size: 45px;
    line-height: 58px;
    color: #FFFFFF;
    margin: 30px 0 10px 0;
    font-weight: 600;
}       
#what-we-do .wwd-items .wwd-item p {
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
}
/* let's build section on service page */
#lets-build {
    width: 100%;
    padding: 150px 0;
    background-color: var(--text-color);
    margin: 100px 0;
    background-image: url('../images/lets-build.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    font-size: 0px;
}
#lets-build .lets-build-content h2 {
    margin-top: unset;
}
#lets-build .lets-build-content p {
    margin: 0 0 70px 0;
    max-width: 620px;
}
#lets-build .lets-build-content .contact-button {
    background-color: var(--hover-color);
    padding: 15px 43px;
    border-radius: 12px;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
}
#lets-build .lets-build-content .contact-button:hover {
    background-color: var(--white-color);
    text-decoration: none;
}
#lets-build .lets-build-section .lets-build-content {
    max-width: 832px;
}
/* get in touch section */
#get-in-touch {
    width: 100%;
    padding: 50px 0;
    margin: 0 0 100px 0;
    background-color: var(--bg-color);
    background-image: url('../images/ct-bg.png');
}
#get-in-touch .get-in-touch-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
#get-in-touch .get-in-touch-content .get-in-touch-contact {
    width: 35%;
    background-color: var(--text-color);
    border-radius: 22px;
    padding: 84px 20px 107px 20px;
    color: var(--white-color);
}
#get-in-touch .get-in-touch-content .get-in-touch-contact .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
}
#get-in-touch .get-in-touch-content .get-in-touch-contact a {
    font-size: 26px;
}
#get-in-touch .get-in-touch-content .get-in-touch-contact a:hover {
    color: var(--white-color);
}
#get-in-touch .get-in-touch-content .get-in-touch-contact p {
    line-height: 30px;   
    margin: unset;     
}
#get-in-touch .get-in-touch-content .get-in-touch-text {
    width: 65%;
    background-color: var(--white-color);
    border-radius: 22px;
    padding: 60px;
}
#get-in-touch .get-in-touch-content .get-in-touch-text h2 {
    margin: 10px 0 20px 0;
}
#get-in-touch .get-in-touch-content .get-in-touch-text p {
    margin: unset;
    width: 100%;
}
#get-in-touch .get-in-touch-content .get-in-touch-text .form-row.ct-w-unset p {
    width: unset;
}
#get-in-touch .get-in-touch-text .form-row {
    display: flex;
    gap: 20px;
}

#get-in-touch .get-in-touch-text .form-row span {
    flex: 1;
}

#get-in-touch .get-in-touch-text input,
#get-in-touch .get-in-touch-text textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

#get-in-touch .get-in-touch-text textarea {
    height: 120px;
    border-radius: 12px;
}

#get-in-touch .get-in-touch-text input[type="submit"] {
    font-size: 22px;
    line-height: 58px;
    background-color: var(--hover-color); /* Yellow button */
    border: none;
    color: var(--text-color);
    font-weight: bold;
    padding: unset;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 30px;
    border: 1px solid var(--hover-color);
}

#get-in-touch .get-in-touch-text input[type="submit"]:hover {
    background-color: var(--white-color); /* Darker on hover */
    border: 1px solid var(--text-color);
}
/* portfolio page css */
 #portfolio-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}
#portfolio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}
#portfolio-header .portfolio-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
#portfolio-header .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
#portfolio-header h1 {
    max-width: 634px;
    margin: 0 auto 20px;        
}
#portfolio-header .dp-btn {
    background-color: var(--hover-color);
    padding: 10px;
    border-radius: 12px;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
    color: var(--text-color);
    font-weight: bold;
    margin-top: 20px;
}
#portfolio-header .dp-btn:hover {
    background-color: var(--white-color);
    text-decoration: none;
    /* border: 1px solid var(--text-color); */
}
#portfolio-header .dp-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
	text-decoration: none;
	outline: none;
}
/* Portfolio Owner Section */
#portfolio-header .portfolio-owner {
    padding: 30px 50px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(217, 217, 217, 0.6);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    z-index: 3;
}
#portfolio-header .portfolio-owner .owner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

#portfolio-header .portfolio-owner .owner-text h1 {
    margin: 0 auto 0px;
}
.portfolio-owner .owner-text p {
    margin: unset;
}
/* introduction section in portfolio page */
#intro-section {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#intro-section  .intro-content-text {
    margin-top: 60px;
}
#intro-section  .intro-content-text p {
    text-align: left;
    color: var(--text-color);
    margin-bottom: 10px;
}
/* innovation section */
#innovation-section {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#innovation-section  .innovation-content-text {
    margin-top: 60px;
}
#innovation-section  .innovation-content-text p {
    text-align: left;
    color: var(--text-color);
    margin-bottom: 10px;
}
/* Our History Section */
#history-section {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#history-section .history-section h2 {
    line-height: 46px;
}
#history-section .history-section .history-sec-content {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}
#history-section .history-section .history-sec-content .hs-item {
    width: 50%;
}
#history-section .history-section .history-sec-content .hs-item p {
    text-align: left;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}
#intro-section .intro-section-content .read-more-btn,
#innovation-section .innovation-sec-content .read-more-btn,
#about-us-section .about-us-section .about-us-section-content .read-more-btn,
#pro-detail .read-more-btn {
    display: none;
}
/* Costing section */
#costing {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background-color: var(--bg-color);
}
#costing .costing-section .costing-sec-content {
    margin-top: 70px;
}
#costing .costing-section .costing-sec-content-res {
    display: none;
}
#costing .costing-section .costing-sec-content-res p {
    text-align: left;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}
#costing .costing-section .costing-sec-content p {
    text-align: left;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}
#costing .costing-section .costing-list {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-top: 40px;
}
#costing .costing-section .costing-list .costing-list-content ul {
    margin-left: 1rem;
}
#costing .costing-section .costing-list .costing-list-content ul li {
    list-style-type: disc;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}
#costing .costing-section .costing-list .costing-list-content {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}
/* Certificates Section in portfolio page */
#we-are-certified {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#we-are-certified .wac-sec-content {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10%;
}
#we-are-certified .wac-sec-content .wac-item { 
    width: 40%;
    height: 550px;
    background-color: var(--bg-color);
    margin-bottom: 50px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
#we-are-certified .wac-sec-content .wac-item .wac-item-content {
    background-color: var(--text-color);
    color: var(--white-color);
    max-height: 140px;
    padding: 10px 20px 10px 20px;
    width: 100%;
    border-radius: 0 0 22px 22px;
}
#we-are-certified .wac-sec-content .wac-item .wac-item-content p {
    font-size: 22px;
    font-weight: 500;
    line-height: 58px;
    text-align: left;
}
#we-are-certified .wac-sec-content .wac-item .wac-item-content p.wac-line {
    line-height: 30px;
}
#we-are-certified .wac-sec-content .wac-item:nth-child(3) {
    justify-content: flex-end;
    gap: 20%;
}
/* Our project section on protfolio page */
#our-project-sec {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#our-project-sec .op-sec-content {
    margin-top: 40px;
}
#our-project-sec .op-sec-content .ops-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    border: 1px solid #D7D7D7;
    padding: 32px 32px 42px 32px;
    border-radius: 22px;
    margin-bottom: 35px;
}
#our-project-sec .op-sec-content .ops-item .ops-item-detail {
    text-align: left;
    position: relative;
    flex: 1;
}
#our-project-sec .op-sec-content .ops-item .ops-item-detail .project-img {
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
}
#our-project-sec .op-sec-content .ops-item .ops-item-content {
    position: absolute;
    bottom: -20px;
    right: 60px;
    background-color: var(--text-color); /* Dark Blue */
    color: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    max-width: 555px;
}
#our-project-sec .op-sec-content .ops-item .ops-item-content .project-title {
    color: #ffc107;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}
#our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}
#our-project-sec .op-sec-content .ops-item .ops-item-content .label {
    font-weight: 600;
    font-size: 14px;
    min-width: 120px;
}
#our-project-sec .op-sec-content .ops-item .ops-item-content .value {
    font-size: 14px;
    line-height: 1.4;
}
#our-project-sec .op-sec-content .ops-item .ops-item-img {
    flex: 0 0 auto;
}
#our-project-sec .op-sec-content .ops-item .ops-item-img .certificate-img {
    width: 100%;
    max-width: 280px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
/* Other Certificate section */
#other-certificate {
    width: 100%;
    padding: 50px 0px 100px 0;
    text-align: center;
}
#other-certificate .other-certificate-img {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
#other-certificate .other-certificate-img img {
    width: 25%;
}
/* Project Page css */
 #project-page {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}
#project-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}
#project-page .project-page-hero-section {
    position: relative;
    z-index: 2;
    color: #fff;
}
#project-page .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
#project-page h1 {
    margin: 0 auto 20px;        
}
/* our achivement section */
#project-achivement {
    width: 100%;
    padding: 100px 0 50px;
    text-align: center;
}
#project-achivement .display-flex {
    justify-content: space-between;
}
#project-achivement .pro-achivement-block {
    margin-top: 60px;
}
#project-achivement .pro-achivement-block .project01 {
    width: 40%;
    background-image: url('../images/project01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achivement-block .project02 {
    width: 60%;
    background-image: url('../images/project02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achivement-block .project03 {
    width: 60%;
    background-image: url('../images/project03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achivement-block .project04 {
    width: 40%;
    background-image: url('../images/project04.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achivement-block .project05 {
    width: 40%;
    background-image: url('../images/project05.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achivement-block .project06 {
    width: 60%;
    background-image: url('../images/project06.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achivement-block .project07 {
    width: 60%;
    background-image: url('../images/project07.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
}
#project-achivement .pro-achive-item {
    width: 48%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: scale(1);
}
#project-achivement .pro-achive-item:hover {
    transform: scale(1.009);
}
#project-achivement .project-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: #ffffff;
    width: 80%;
    padding: 12px;
    background-color: rgba(18, 64, 77, 0.88);
    text-align: left;
    min-height: 123px;
    z-index: 2;
}
#project-achivement .pro-achivement-block .background-link-wrapper {
    display: block;
    text-decoration: none; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

#project-achivement .project-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

#project-achivement .project-type {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--hover-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
#project-achivement .project-description {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    padding: 10px 0px 5px 0px;
}
/* solution section */
#pro-solution {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#pro-solution .pro-solution .pro-solution-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
#pro-solution .pro-solution .pro-solution-content .pro-solution-img {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
#pro-solution .pro-solution .pro-solution-content .pro-solution-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#pro-solution .pro-solution .pro-solution-content .pro-solution-list .display-flex.gap-20 {
    align-items: center;
}
/* Our stand out section */
#pro-stand-out {
    width: 100%;
    padding: 50px 0px;
}
#pro-stand-out .pro-stand-out {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}
#pro-stand-out .pro-stand-out .pro-stand-out-content {
    width: 60%;
}
#pro-stand-out .pro-stand-out .pro-stand-out-list {
    width: 40%;
    background-color: #F3F3F3;
    padding: 30px 25px 0px;
    border-radius: 22px;
}
#pro-stand-out .pro-stand-out .pro-stand-out-list .pso-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
#pro-stand-out .pro-stand-out .pro-stand-out-list .pso-list-item:last-child {
    border-bottom: unset;
    margin-bottom: 10px;
}
#pro-stand-out .pro-stand-out .pro-stand-out-content .pso-ct-btn {
    background-color: var(--hover-color);
    padding: 10px;
    margin-top: 20px;
    border-radius: 12px;
}
#pro-stand-out .pro-stand-out .pro-stand-out-content h2 {
    margin: 0 0 50px 0;
}
/* company logo section */
#our-company-logo {
    width: 100%;
    padding: 50px 0 100px 0;
}
#our-company-logo .our-company-logo {
    display: flex;
    justify-content: space-between;
}
/* About us page css */
 #aboutus-page {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}
#aboutus-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}
#aboutus-page .aboutus-page-hero-section {
    position: relative;
    z-index: 2;
    color: #fff;
}
#aboutus-page .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
#aboutus-page h1 {
    margin: 0 auto 20px;        
}
/* About us content section */
#about-us-section {
    width: 100%;
    padding: 50px 0;
}
#about-us-section .about-us-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1%;
}
#about-us-section .about-us-section .about-us-section-content {
    width: 60%;
    padding: 0px 50px 0px 0px;
}
#about-us-section .display-none,
#our-journey .display-none {
    display: none;
}
#about-us-section .about-us-section .about-us-section-content h2 {
    margin-bottom: 20px;
}
#about-us-section .about-us-section .about-us-section-img {
    width: 40%;
}
#about-us-section .about-us-section .about-us-section-img img {
    width: 100%;
    font-size: 0px;
}
#about-us-section .about-craft-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
#about-us-section .about-craft-list .about-craft-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #D0E9F0; 
    padding: 12px;
    border-radius: 12px;
    width: 33%;
}

/* Our journey of growth section */
#our-journey {
    width: 100%;
    padding: 70px 0;
    margin: 50px 0 ;
    background-color: var(--bg-color);
}
#our-journey .our-journey-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* gap: 5%; */
}
#our-journey .our-journey-section .our-journey-content,
#our-journey .our-journey-section .our-journey-img  {
    width: 50%;
}
#our-journey .our-journey-section .our-journey-content h2 {
    margin-bottom: 25px;
}
#our-journey .our-journey-section .our-journey-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-right: 90px;
}
/* Building future section css */
#building-future {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
#building-future .building-future .build-future-content {
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 60px;
}
#building-future .building-future .bf-content .bf-content-item-img {
    height: 423px;
    border-radius: 22px;
    background: 
        linear-gradient(to bottom, #FFFFFF 0%, #12404D 100%),
        url('../images/building-bg.png');
    opacity: 0.6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
#building-future .building-future .bf-content .bf-content-item-img p {
    color: var(--content-txt-color);
    opacity: 1;
}
#building-future .building-future .bf-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}
#building-future .building-future .bf-content .bf-content-item-one {
    background-color: var(--hover-color);
    padding: 20px 10px 20px 15px;
    border-radius: 22px;
}
#building-future .building-future .bf-content .bf-content-item-one h3 {
    margin-bottom: 10px;
}
#building-future .building-future .bf-content .bf-content-item-two {
    background-color: var(--text-color);
    padding: 20px 10px 20px 15px;
    border-radius: 22px;
}
#building-future .building-future .bf-content .bf-content-item-two h3 {
    margin-bottom: 10px;
}
#building-future .building-future .bf-content .bf-content-item {
    width: 60%;
}
#building-future .building-future .bf-content .bf-content-item-txt {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
/* Our Team Section css  */
#our-team 
{
    width: 100%;
    padding: 50px 0 100px 0;
    text-align: center;
}
#our-team .our-team {
    padding-bottom: 60px;
    max-width: 725px;
    margin: 0 auto;
}
/* Team Section */
#our-team .our-team-member {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-top: 30px; */
}
#our-team .our-team-detail {
  border: 1px solid #ddd;         
  border-radius: 22px;          
  overflow: hidden;              
  background: #fff;
  text-align: left;
}
.our-team-card-img img {
  width: 100%;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.our-team-card-content {
  padding: 15px 15px 20px 15px;
}
.our-team-card-content p:first-child {
  margin: 8px 0 4px;
  color: #000;
}
.our-team-card-content p:nth-child(2) {
  color: var(--text-color);  /* Adjust brand color */
  margin-bottom: 20px;
}
.our-team-social-icon {
/*   display: flex; */
  /* justify-content: center; */
  gap: 12px;
	display: none;
}
.our-team-social-icon a img {
  transition: transform 0.3s ease;
}
.our-team-social-icon a:hover img {
  transform: scale(1.1);
}

/* Contact Us Page */
#contactus-page {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}
#contactus-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}
#contactus-page .contactus-page-hero-section {
    position: relative;
    z-index: 2;
    color: #fff;
}
#contactus-page .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
#contactus-page h1 {
    margin: 0 auto 20px;        
}
/* Contact information section css */
#contact-info {
    width: 100%;
    padding: 100px 0 50px ;
    text-align: center;
}
#contact-info .contact-info-item {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 15px;
    text-align: left;
}
#contact-info .contact-info-item .contact-info-add,
#contact-info .contact-info-item .contact-info-email,
#contact-info .contact-info-item .contact-info-phone
{
    border: 0.5px solid #000;
    border-radius: 22px;
    width: 33%;
    padding: 25px 5px 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
/* contact us page get in touch section */
/* get in touch section */
#get-in-touch-today {
    width: 100%;
    padding: 70px 0;
    margin: 50px 0 100px 0;
    background-color: var(--bg-color);
    background-image: url('../images/ct-bg.png');
}
#get-in-touch-today .get-in-touch-today-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact {
    width: 35%;
    background-color: var(--text-color);
    border-radius: 22px;
    padding: 0px 10px 0px 10px;
    color: var(--white-color);
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* gap: 30px; */
    height: 100%;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact .contact-info .contact-info-img {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact .contact-info .contact-info-social {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 20px;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact a {
    font-size: 26px;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact a:hover {
    color: var(--white-color);
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact p {
    line-height: 30px;   
    margin: unset;     
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text {
    width: 65%;
    background-color: var(--white-color);
    border-radius: 22px;
    padding: 60px;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text h2 {
    margin: 10px 0 20px 0;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text p {
    margin: unset;
    width: 100%;
}
#get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text .form-row.ct-w-unset p {
    width: unset;
}
#get-in-touch-today .get-in-touch-today-text .form-row {
    display: flex;
    gap: 20px;
}

#get-in-touch-today .get-in-touch-today-text .form-row span {
    flex: 1;
}

#get-in-touch-today .get-in-touch-today-text input,
#get-in-touch-today .get-in-touch-today-text textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

#get-in-touch-today .get-in-touch-today-text textarea {
    height: 120px;
    border-radius: 12px;
}

#get-in-touch-today .get-in-touch-today-text input[type="submit"] {
    font-size: 22px;
    line-height: 58px;
    background-color: var(--hover-color); /* Yellow button */
    border: none;
    color: var(--text-color);
    font-weight: bold;
    padding: unset;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 30px;
    border: 1px solid var(--hover-color);
}

#get-in-touch-today .get-in-touch-today-text input[type="submit"]:hover {
    background-color: var(--white-color);
    text-decoration: none;
    border: 1px solid var(--text-color);
}
/* Project overview page css */
#pro-overview-page {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    overflow: hidden;
}
#pro-overview-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(229, 102, 0, 0.5) 52%, rgba(4, 106, 135, 0.3) 100%);
    z-index: 1;
}
#pro-overview-page .pro-overview-page-hero-section {
    position: relative;
    z-index: 2;
    color: #fff;
}
#pro-overview-page .container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
#pro-overview-page h1 {
    margin: 0 auto 20px;        
}
/* project details section */
#pro-detail {
    width: 100%;
    padding: 100px 0 50px 0;
}
#pro-detail .pro-detail .project-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}
#pro-detail .pro-detail .project-text .project-text-detail {
    width: 50%;
}
#pro-detail .pro-detail .project-text .project-text-detail p:last-child {
    padding-right: 20px;
}
#pro-detail .pro-detail .project-text .project-text-detail .display-flex {
    align-items: center;
    gap: 10px;
}
#pro-detail .pro-detail .project-text .project-image {
    width: 50%;
}
#pro-detail .pro-detail .project-text .project-image-responsive {
    display: none;
}
.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.project-details .detail-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* projects description section css */
#pro-description {
    width: 100%;
    padding: 50px 0;
}
/* Image gallery section css */
#image-gallery {
    width: 100%;
    padding: 50px 0 100px 0;
}
#image-gallery .image-gallery {
    background-color: var(--bg-color);
    padding: 60px 0;
}
#image-gallery .image-gallery .display-flex {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
#image-gallery .image-gallery .img-gallery-section {
    width: 40%;
}
#image-gallery .image-gallery .img-gallery-section .img-gallery-item {
    display: flex;
    justify-content: space-between;
}
#image-gallery .image-gallery .img-gallery-con-section {
    width: 60%;
}
#image-gallery .image-gallery .img-gallery-con-section ul {
    padding-left: 40px;
}
#image-gallery .image-gallery .img-gallery-con-section ul li {
    list-style: disc;
    font-size: 18px;
    line-height: 32px;
    color: var(--text-color);
    margin-bottom: 20px;
}
#image-gallery .image-gallery .img-gallery-con-section ul li:last-child {
    margin-bottom: unset;
}
#image-gallery .image-gallery .img-gallery-item.thumbnails img {
  width: 90px;
  height: auto;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
}

#image-gallery .image-gallery .img-gallery-item.thumbnails img:hover {
  border: 2px solid var(--text-color);
}

#image-gallery .image-gallery .active-thumb {
  border: 2px solid var(--text-color);
}

/* banner section dots image css */
#hero-section .extra-image-one {
    background-image: url('../images/extra-image.png');
    position: absolute;
    left: -10%;
    bottom: -28%;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}
/* New Styling for Extra Image */
#hero-section .extra-image {
    background-image: url('../images/extra-image.png');
    position: absolute;
    top: -90px;
    right: -88px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#services-header .extra-image-one {
    background-image: url('../images/extra-image.png');
    position: absolute;
    left: -8%;
    bottom: -150%;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#services-header .extra-image {
    background-image: url('../images/extra-image.png');
    position: absolute;
    top: -135%;
    right: -76px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#portfolio-header .extra-image-one {
    background-image: url('../images/extra-image.png');
    position: absolute;
    left: -12%;
    bottom: -50%;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#portfolio-header .extra-image {
    background-image: url('../images/extra-image.png');
    position: absolute;
    top: -65%;
    right: -76px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#project-page .extra-image-one {
    background-image: url('../images/extra-image.png');
    position: absolute;
    left: -12%;
    bottom: -130%;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#project-page .extra-image {
    background-image: url('../images/extra-image.png');
    position: absolute;
    top: -125%;
    right: -76px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#aboutus-page .extra-image-one {
    background-image: url('../images/extra-image.png');
    position: absolute;
    left: -12%;
    bottom: -130%;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#aboutus-page .extra-image {
    background-image: url('../images/extra-image.png');
    position: absolute;
    top: -125%;
    right: -76px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#contactus-page .extra-image-one {
    background-image: url('../images/extra-image.png');
    position: absolute;
    left: -12%;
    bottom: -130%;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

#contactus-page .extra-image {
    background-image: url('../images/extra-image.png');
    position: absolute;
    top: -125%;
    right: -76px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

/* Responsive Design */

@media screen and (max-width: 1270px) {
    #hero-section .extra-image,
    #services-header .extra-image,
    #portfolio-header .extra-image,
    #project-page .extra-image,
    #aboutus-page .extra-image,
    #contactus-page .extra-image {
        right: -50px;
    }
    #hero-section .extra-image-one,
    #services-header .extra-image-one,
    #portfolio-header .extra-image-one,
    #project-page .extra-image-one,
    #aboutus-page .extra-image-one,
    #contactus-page .extra-image-one {
        left: -4%;
    }
}

@media screen and (max-width: 1200px) {
    #pro-solution .pro-solution .pro-solution-content .pro-solution-img {
        width: 60%;
        justify-content: space-evenly;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list {
        width: 40%;
    }
    #hero-section .extra-image,
    #services-header .extra-image,
    #portfolio-header .extra-image,
    #project-page .extra-image,
    #aboutus-page .extra-image,
    #contactus-page .extra-image {
        right: 0px;
    }
    #hero-section .extra-image-one,
    #services-header .extra-image-one,
    #portfolio-header .extra-image-one,
    #project-page .extra-image-one,
    #aboutus-page .extra-image-one,
    #contactus-page .extra-image-one {
        left: 0px;
    }
}
@media screen and (max-width: 1190px) {
    .container {
        padding: 0 16px;
    }
    #masthead {
        padding: 30px 16px 0px 16px;
    }
    .site-info {
        padding: 0 24px;
    }
    .footer-widgets {
        padding: 40px 20px !important;
    }
    #our-services-page .service-page-block {
        justify-content: center;
    }
    #our-team .our-team-member {
        justify-content: center;
    }
    #our-gallery .ds-none-res {
        display: none;
    }
    #our-gallery .ds-none {
        display: block;
    }
}
@media screen and (max-width: 1090px) {
    #masthead .header-main {
        max-width: 991px;
    }
    #pro-overview-page h1 {
        font-size: 45px;
        line-height: 50px;
    }
    #pro-detail .pro-detail .project-text .project-text-detail h2 {
        font-size: 38px;
        line-height: 45px;
    }
}
@media screen and (max-width: 1045px) {
    .our-service-content {
        justify-content: center;
    }
    .our-service-content .osc-item {
        width: 40%;
    }
    #our-projects .slick-prev {
        left: 40% !important;
    }
    #our-projects .slick-next {
        right: 40% !important;
    }
}
@media screen and (max-width: 1040px) {
    #get-in-touch .get-in-touch-content .get-in-touch-contact a {
        font-size: 24px;
    }
}
@media screen and (max-width: 1024px) {
    .footer-widgets-container{
        flex-wrap: wrap;
    }
    .footer-widgets .footer-contact {
        width: 100%;
    }
    .footer-widgets .footer-about {
        width: 40%;
        padding-right: unset;
    }
    .footer-widgets .footer-company {
        width: 40%;
    }
    #portfolio-header .portfolio-owner .owner-content {
        flex-direction: column-reverse;
        gap: 15px;
    }
    #portfolio-header .portfolio-owner {
        background: unset;
    }
    #portfolio-header .portfolio-owner .owner-content .owner-text {
        background: rgba(217, 217, 217, 0.6);
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 10px 0px;
    }
    #portfolio-header .portfolio-owner {
        padding: unset;
    }
    #portfolio-header .portfolio-owner .container {
        padding: 0px;
    }
    #portfolio-header .portfolio-owner .owner-text h1 {
        font-size: 20px;
    }
    .portfolio-owner .owner-text p {
        font-size: 20px;
    }
    #we-are-certified .wac-sec-content {
        justify-content: center;
    }
    #we-are-certified .wac-sec-content .wac-item {
        width: 45%;
        height: auto;
        gap: 10px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content {
        right: 10px;
        width: 100%;
        max-width: 450px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-detail .project-img {
        max-width: 60%;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-img .certificate-img {
        max-width: unset;
        width: 80%;
    }
    #our-journey .our-journey-section .our-journey-content p {
        padding-right: unset;
    }
    #our-journey .our-journey-section {
        gap: 10px;
    }
    #our-journey .our-journey-section .our-journey-content h2 {
        font-size: 35px;
        line-height: 40px;
    }
    #building-future .building-future .bf-content .bf-content-item {
        width: 50%;
    }
    #building-future .building-future .bf-content .bf-content-item-txt {
        width: 50%;
    }
    .project-details .detail-box {
        width: 100%;
    }
    .project-details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0px, 1fr));
        row-gap: 15px;
        width: 70%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 991px) {
    #masthead .header-main {
        max-width: unset;
    }
    .header-contact {
        display: none;
    }
    .main-navigation ul,
    .main-navigation {
        display: none;
    }
    .navigate-mobile-menu {
        display: block;
    }
    .menubutton {
        display: flex;
    }
    .who-we-are {
        gap: 20px;
        padding: 50px 0px 20px 0px;
    }
    .who-we-are .who-we-are-content {
        padding-right: unset;
    }
    .who-we-are .who-we-are-content p:first-child,
    .who-we-are .who-we-are-content h2 {
        display: none;
    }
    .who-we-responsive-title {
        display: block;
    }
    .who-we-are .who-we-responsive-title p {
        color: var(--hover-color);
        font-size: 20px;
        /* line-height: 58px; */
        margin: 0;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
    }
    .who-we-are .who-we-responsive-title h2 {
        font-size: 45px;
        line-height: 58px;
        margin: 10px 0 30px;
        font-weight: 600;
        color: var(--text-color);
        text-align: center;
    }
    .who-we-are {
        flex-direction: column;
    }
    .who-we-are .wwa-img {
        order: 1;
        width: 70%;
    }
    .who-we-are .who-we-are-content {
        order: 2;
        width: 100%;
    }
    .why-choose-us-grid {
        gap: 20px;
        flex-wrap: wrap;
    }
    .why-choose-us-grid .wcu-item {
        gap: unset;
        position: relative;
    }
    .why-choose-us-grid .wcu-item:nth-child(2) {
        flex-direction: column-reverse;
    }
    .why-choose-us-grid .wcu-item .wcu-img {
        font-size: 0px;
    }
    .why-choose-us-grid .wcu-item .wcu-img img {
        width: 100%;
        max-height: unset;
    }
    .why-choose-us-grid .wcu-item .wcu-text {
        margin-top: -40px;
        z-index: 1;
        background-color: #FFF3D3;
        border: unset;
        height: 333px;
        min-height: unset;
    }
    .why-choose-us-grid .wcu-item .wcu-text:hover,
    .why-choose-us-grid .wcu-item .wcu-text:hover .wcu-icon-bg,
    .why-choose-us-grid .wcu-item .wcu-text:hover hr {
        background-color: unset;
    }
    .why-choose-us-grid .wcu-item .wcu-text .wcu-icon-bg {
        background-color: #FFFFFF;
    }
    .why-choose-us-grid .wcu-item .wcu-text hr {
        border: none;
        background-color: #FFFFFF;
        border-top: 1px solid #FFFFFF !important;
        margin: 0;
    }
    /* our process section */
    .our-process-grid {
        padding: 0 0px;
    }
    .process-step:nth-child(odd) .step-content {
        padding: 15px 0px 15px 20px;
    }
    .process-step:nth-child(even) .step-content {
        padding: 15px 20px 15px 0px;
    }
    .step-content img {
        width: 40px;
    }
    .step-content .step-content-item h3 {
        font-size: 25px;
    }
    .step-content {
        gap: 10px;
    }
    #our-history .our-history-content {
        flex-direction: column-reverse;
        background-color: unset;
    }
    #our-history .our-history-content .oh-item-content {
        width: 100%;
        padding: unset;
    }
    #our-history .our-history-content .oh-item-content p br {
        display: none;
    }
    #get-in-touch .get-in-touch-content {
        flex-direction: column;
        padding: 0px 20px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-contact {
        width: 100%;
        padding: 25px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-text {
        width: 100%;
        padding: 30px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-contact .contact-info {
        gap: 50px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-contact .contact-info img {
        width: 30px;
        height: auto;
        margin-bottom: 10px;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p {
        line-height: 35px;
    }
    #we-are-certified .wac-sec-content .wac-item img {
        width: 80%;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content {
        width: 50%;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-list {
        width: 50%;
    }
    #about-us-section .about-us-section .about-us-section-content {
        padding: 0px 10px 0px 0px;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text {
        padding: 40px;
    }
    #pro-detail .pro-detail .project-text-detail h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 10px;
    }
    #pro-detail .pro-detail .project-text .project-text-detail .display-flex {
        margin-bottom: 20px;
    }
    #pro-detail .pro-detail .project-text .project-text-detail p:last-child {
        padding-right: unset;
    }
}
@media screen and (max-width: 976px) {
    #pro-solution .pro-solution .pro-solution-content {
        flex-direction: column-reverse;
        gap: 20px;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list {
        width: 60%;
        gap: 15px;
        margin: 0 auto;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-img {
        width: 80%;
        justify-content: center;
        margin: 0 auto;
    }
    #about-us-section .display-none,
    #our-journey .display-none {
        display: block;
        margin-bottom: 20px;
    }
    #about-us-section .about-us-section .about-us-section-content h2,
    #our-journey .our-journey-section .our-journey-content h2 {
        display: none;
    }
    #building-future .building-future .bf-content {
        flex-direction: column;
    }
    #building-future .building-future .bf-content .bf-content-item {
        width: 80%;
        margin: 0 auto;
    }
    #building-future .building-future .bf-content .bf-content-item-txt {
        width: 100%;
    }
    #image-gallery .image-gallery .display-flex {
        flex-direction: column;
    }
    #image-gallery .image-gallery .img-gallery-section {
        width: 50%;
    } 
}
@media screen and (max-width: 950px) {
    #our-project-sec .op-sec-content .ops-item .ops-item-content {
        right: 0px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content {
        max-width: unset;
        width: 80%;
    }
}
@media screen and (max-width: 922px) {
    .why-choose-us-grid .wcu-item {
        width: 40%;
    }
    #we-are-certified .wac-sec-content .wac-item img {
        width: 70%;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p {
        font-size: 20px;
    }
    /* #our-project-sec .op-sec-content .ops-item .ops-item-detail .project-img {
        max-width: 70%;
    } */
    #our-project-sec .op-sec-content .ops-item {
        gap: 10px;
        padding: 32px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-img .certificate-img {
        width: 90%;
    }
    #our-company-logo .our-company-logo img {
        margin: 0 10px;
    }
}
@media screen and (max-width: 900px) {
    #our-project-sec .op-sec-content .ops-item {
        width: 100%;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-detail {
        width: 70%;
        font-size: 0px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-img {
        width: 30%;
        font-size: 0px;
    }
}

@media screen and (max-width: 855px) {
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p {
        font-size: 18px;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-img {
        width: 100%;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list {
        width: 80%;
    }
    #pro-stand-out .pro-stand-out {
        flex-direction: column;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content h2 {
        text-align: center;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content {
        width: 100%;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content div {
        display: flex;
        justify-content: center;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content .pso-ct-btn {
        margin-top: unset;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content p.font-size-18.text-color {
        margin-bottom: 30px !important;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-list {
        width: 60%;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text {
        padding: 25px;
    }
    #image-gallery .image-gallery .img-gallery-section {
        width: 60%;
    }
}
@media screen and (max-width: 778px) {
    #our-services-page .service-page-block .service-page-item p {
        opacity: 1;
        max-height: 200px;
        margin-bottom: 5px;
    }
    #our-services-page .service-page-block .service-page-item {
        margin: 0 30px;
    }
    #our-services-page .service-page-block .slick-next:before, 
    #our-services-page .service-page-block .slick-prev:before {
        color: black;
    }
    #our-services-page .service-page-block .slick-next {
        right: 44%;
        top: unset;
        bottom: -12%;
    }
    #our-services-page .service-page-block .slick-prev {
        top: unset;
        bottom: -12%;
        left: 44%;
    }
    #our-services-page .service-page-block .slick-prev:before {
        content: url('https://hmanjienterprise.deepcoder.in/wp-content/themes/enterprise/assets/images/ser-prev.png') !important;
        opacity: 1 !important;
    }

    #our-services-page .service-page-block .slick-next::before {
        content: url('https://hmanjienterprise.deepcoder.in/wp-content/themes/enterprise/assets/images/ser-next.png') !important;
        opacity: 1 !important;
    }
    #our-services-page .service-page-block .service-page-item h3 {
        padding: 20px 0 0 0;
    }
    #we-are-certified .wac-sec-content .wac-item {
        height: 400px;
        max-height: 385px;
        gap: 0;
        margin: 0 10px;
    }
    #we-are-certified .wac-sec-content .wac-item:nth-child(3) {
        gap: 0;
    }
    /* #we-are-certified .wac-sec-content .wac-item:nth-child(3) img {
        height: auto;
    } */
    #we-are-certified .wac-sec-content .wac-item img {
        width: 80%;
        /* height: 275px; */
        max-height: 275px;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content {
        min-height: 110px;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p,
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p.wac-line {
        font-size: 16px;
        line-height: 25px;
    }
    #we-are-certified .wac-sec-content .slick-next:before, 
    #we-are-certified .wac-sec-content .slick-prev:before {
        color: black;
    }
    #we-are-certified .wac-sec-content .slick-next {
        right: 44%;
        top: unset;
        bottom: -12%;
    }
    #we-are-certified .wac-sec-content .slick-prev {
        top: unset;
        bottom: -12%;
        left: 44%;
    }
    #we-are-certified .wac-sec-content .slick-prev:before {
        content: url('https://hmanjienterprise.deepcoder.in/wp-content/themes/enterprise/assets/images/ser-prev.png') !important;
        opacity: 1 !important;
    }

    #we-are-certified .wac-sec-content .slick-next::before {
        content: url('https://hmanjienterprise.deepcoder.in/wp-content/themes/enterprise/assets/images/ser-next.png') !important;
        opacity: 1 !important;
    }
    #we-are-certified .wac-sec-content .wac-item:nth-child(3) {
        justify-content: space-between;
    }
    #other-certificate .slick-dots li button:before {
        font-size: 10px;
    }
    #project-achivement .project-content {
        width: 100%;
    }
    #contact-info .contact-info-item {
        flex-wrap: wrap;
        justify-content: center;
    }
    #contact-info .contact-info-item .contact-info-add, 
    #contact-info .contact-info-item .contact-info-email, 
    #contact-info .contact-info-item .contact-info-phone {
        width: 80%;
    }
    #get-in-touch-today .get-in-touch-today-content {
        flex-direction: column;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact {
        width: 80%;
        margin: 0 auto;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact .contact-info .contact-info-img {
        justify-content: center;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text {
        width: 80%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .footer-widgets .footer-about, 
    .footer-widgets .footer-company {
        width: 100%;
    }
    .site-info {
        flex-direction: column-reverse;
        margin: 0px auto;
        padding: 10px;
    }
    .why-choose-us-grid .wcu-item {
        width: 70%;
    }
    .why-choose-us-grid .wcu-item .wcu-text {
        height: auto;
    }
    .our-service-content .osc-item {
        background-color: #FFF3D3;
        margin: 0 10px;
        /* height: 352px; */
        max-height: 352px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 32px;
    }
    .our-service-content .osc-item .osc-img {
        background-color: #FFFFFF;
        margin: 0px auto 15px;
    }
    .our-service-content .osc-item .osc-text h3 {
        margin-bottom: 10px;
    }
    .our-service-content .slick-next:before, 
    .our-service-content .slick-prev:before {
        color: black;
    }
    .our-service-content .slick-next {
        right: 45%;
        top: unset;
        bottom: -20%;
    }
    .our-service-content .slick-prev {
        top: unset;
        bottom: -20%;
        left: 45%;
    }
    .our-service-content .slick-prev:before {
        content: url('http://localhost/HManjiEnterprise/wp-content/themes/enterprise/assets/images/ser-prev.png') !important;
        opacity: 1 !important;
    }

    .our-service-content .slick-next::before {
        content: url('http://localhost/HManjiEnterprise/wp-content/themes/enterprise/assets/images/ser-next.png') !important;
        opacity: 1 !important;
    }
    #our-history .our-history-content .oh-item-img {
        width: 100%;
    }
    #lets-build {
        margin: 60px 0px;
        padding: 30px 0px 0px 16px;
        height: 560px;
        background-size: 80%;
    }
    #lets-build .container {
        padding: unset;
    }
    #history-section .history-section .history-sec-content {
        flex-direction: column-reverse;
    }
    #history-section .history-section .history-sec-content .hs-item {
        width: 100%;
    }
    #history-section .history-section .history-sec-content .hs-item img {
        width: 80%;
    }
    #intro-section {
        padding: 25px 0;
    }
    #intro-section .intro-section-content .intro-content-text .hidden-content,
    #innovation-section .innovation-sec-content .innovation-content-text .hidden-content,
    #about-us-section .about-us-section .hidden-content,
    #pro-detail .hidden-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }
    #intro-section .intro-section-content .intro-content-text .show-all,
    #innovation-section .innovation-sec-content .innovation-content-text .show-all,
    #about-us-section .about-us-section .show-all,
    #pro-detail .show-all {
        max-height: 1000px; /* Adjust based on content size */
    }
    #intro-section .intro-section-content .read-more-btn,
    #innovation-section .innovation-sec-content .read-more-btn,
    #about-us-section .about-us-section .about-us-section-content .read-more-btn,
    #pro-detail .read-more-btn {
        width: 100%;
        display: inline-block;
        padding: unset;
        background-color: unset;
        color: var(--text-color);
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        /* margin-top: 10px; */
        text-align: left;
        text-decoration: underline;
        text-decoration-color: var(--hover-color);
        text-underline-offset: 6px
    }
    #costing .costing-section .costing-list {
        flex-direction: column-reverse;
        gap: 15px;
    }
    #costing .costing-section .costing-sec-content {
        margin-top: 40px;
        display: none;
    }
    #costing .costing-section .costing-sec-content-res {
        display: block;
    }
    #costing .costing-section .costing-list .costing-list-img {
        background-image: url('../images/costing-sec-img.png');
        background-size: auto;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 300px;
    }
    #costing .costing-section .costing-list .costing-list-img img {
        display: none;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content {
        bottom: 0px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .project-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .label,
    #our-project-sec .op-sec-content .ops-item .ops-item-content .value {
        font-size: 12px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex {
        gap: 0px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-name .label {
        min-width: 90px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-location .label {
        min-width: 108px;
    }
    #project-achivement .display-flex {
        flex-direction: column;
        align-items: center;
    }
    #project-achivement .project-content .display-flex {
        flex-direction: row;
    }
    #project-achivement .pro-achivement-block .project01,
    #project-achivement .pro-achivement-block .project02,
    #project-achivement .pro-achivement-block .project03,
    #project-achivement .pro-achivement-block .project04,
    #project-achivement .pro-achivement-block .project05,
    #project-achivement .pro-achivement-block .project06,
    #project-achivement .pro-achivement-block .project07 {
        width: 80%;
    }
    #about-us-section {
        text-align: center;
    }
    #about-us-section .about-us-section .about-us-section-content {
        text-align: left;
    }
    #about-us-section .about-us-section .about-us-section-content p {
        font-size: 18px;
    }
    #our-journey .our-journey p,
    #our-journey .our-journey h2 {
        text-align: center;
    }
    #our-journey .our-journey-section .our-journey-content p {
        text-align: left;
    }
    #building-future .building-future .bf-content .bf-content-item-img {
        height: 325px;
    }
    #pro-detail .pro-detail .project-text .project-image {
        display: none;
    }
    #pro-detail .pro-detail .project-text .project-image-responsive {
        display: block;
    }
    #pro-detail .pro-detail .project-text .project-text-detail {
        width: 100%;
        text-align: center;
    }
    #pro-detail .pro-detail .project-text .project-text-detail .display-flex {
        justify-content: center;
    }
    #pro-detail .pro-detail .project-text .project-text-detail p:last-child {
        text-align: left;
    }
    #pro-detail .mb-50 {
        margin-bottom: unset;
    }
    #pro-detail .mb-50.hidden-content.show-all {
        margin-bottom: 10px;
    }
    #pro-detail .project-details {
        padding: 15px 0 0 0;
        width: 90%;
    }
    #pro-detail {
        padding: 60px 0 30px 0;
    }
    #pro-description {
        padding: 30px 0;
    }
    #image-gallery {
        padding: 30px 0 60px 0;
    }
    #hero-section .extra-image,
    #hero-section .extra-image-one,
    #services-header .extra-image,
    #services-header .extra-image-one,
    #portfolio-header .extra-image,
    #portfolio-header .extra-image-one,
    #project-page .extra-image,
    #project-page .extra-image-one,
    #aboutus-page .extra-image,
    #aboutus-page .extra-image-one,
    #contactus-page .extra-image,
    #contactus-page .extra-image-one {
        background-image: unset;
    }
}
@media screen and (max-width: 715px) {
    #image-gallery .image-gallery .img-gallery-section {
        width: 70%;
    }
    #image-gallery .image-gallery .display-flex {
        gap: 20px;
    }
    #image-gallery .image-gallery .img-gallery-con-section {
        width: 80%;
    }
}
@media screen and (max-width: 680px) {
    #we-are-certified .wac-sec-content .wac-item .wac-item-content {
        min-height: 110px;
        height: 100px;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p,
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p.wac-line {
        font-size: 14px;
        line-height: 20px;
    }
    #we-are-certified .wac-sec-content .wac-item {
        height: 360px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content {
        padding: 10px;
    }
    #our-project-sec .op-sec-content .ops-item {
        padding: 20px;
    }
    #about-us-section .about-us-section {
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }
    #about-us-section .about-us-section .about-us-section-content {
        width: 100%;
    }
    #about-us-section .about-craft-list {
        flex-direction: column;
    }
    #about-us-section .about-craft-list .about-craft-item {
        width: 100%;
    }
    #about-us-section .about-us-section .about-us-section-img {
        width: 80%;
    }
    #our-journey .our-journey-section {
        flex-direction: column-reverse ;
    }
    #our-journey .our-journey-section .our-journey-content,
    #our-journey .our-journey-section .our-journey-img {
        width: 100%;
    }
    #our-process .our-process-grid .step-content .ds-none-res {
        display: none;
    }
    #our-process .our-process-grid .step-content .ds-none {
        display: flex;
    }
    #our-process .our-process-grid .step-content .step-content-item h3 {
        display: flex;
        align-items: end;
        gap: 10px;
        margin: 0 0 10px 10px;
    }
    .process-step:nth-child(even) .step-content .step-content-item h3 {
        flex-direction: row-reverse;
        margin: 0 10px 10px 0 !important;
    }
}
@media screen and (max-width: 660px) {
    #hero-section h1 {
        font-size: 45px;
        line-height: 58px;
    }
    .who-we-are .who-we-responsive-title h2,
    .why-choose-us h2,
    .our-service h2,
    .our-projects h2,
    .our-process h2,
    .our-history h2,
    .our-gallery h2,
    #our-services-page .our-services-page-content h2,
    #what-we-do .what-we-do-content h2,
    #what-we-do .wwd-items .wwd-item h3,
    #get-in-touch .get-in-touch-content .get-in-touch-text h2,                                                         
    #intro-section .intro-section-content h2,
    #innovation-section .innovation-sec-content h2,
    #history-section .history-section h2,
    #costing .costing-section h2,
    #we-are-certified .we-are-certified h2,
    #our-project-sec .our-project-sec h2,
    #other-certificate .other-certificate h2,
    #project-achivement .project-achivement h2,
    #pro-solution .pro-solution h2,
    #pro-stand-out .pro-stand-out .pro-stand-out-content h2,
    #about-us-section h2,
    #our-journey .our-journey h2,
    #building-future .building-future .build-future-content h2,
    #our-team .our-team h2,
    #contact-info .contact-info h2,
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text h2,
    #pro-description .pro-description h2,
    #image-gallery h2,
    #pro-detail .pro-detail .project-text-detail h2 {
        font-size: 35px;
        line-height: 35px;
    }
    #pro-overview-page h1,
    #services-header h1,
    #portfolio-header h1,
    #project-page h1,
    #aboutus-page h1,
    #contactus-page h1 {
        font-size: 38px;
        line-height: 50px;
    }
    #hero-section .hero-buttons .btn {
        font-size: 18px;
    }
    #lets-build .lets-build-content h2 {
        font-size: 35px;
        line-height: 40px;
    }
    #lets-build .lets-build-content p {
        margin: 0 16px 26px 0px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .label,
    #our-project-sec .op-sec-content .ops-item .ops-item-content .value {
        line-height: 14px;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list {
        width: 90%;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-list {
        width: 100%;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-content h2 {
        margin: 0 0 20px 0;
    }
    #image-gallery .image-gallery .img-gallery-section .img-gallery-item {
        justify-content: center;
        gap: 10px;
    }
    .our-process-grid {
        padding: 0 25px;
    }
    .our-process-grid::before {
        left: unset;
    }
    .step-number {
        left: unset;
    }
    .process-step::before {
        left: unset;
    }
    .step-content {
        max-width: unset;
        margin-top: unset;
    }
    .process-step:nth-child(even) .step-content {
        text-align: left;
        flex-direction: unset;
        padding: 15px 0px 15px 20px;
    }
    .process-step:nth-child(even) .step-content .step-content-item h3 {
        flex-direction: row;
    }
}
@media screen and (max-width: 600px) {
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p,
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p.wac-line {
        font-size: 13px;
        line-height: 18px;
    }
    #we-are-certified .wac-sec-content .wac-item img {
        height: auto;
        max-height: unset;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px 5px 10px 5px;
        height: auto;
        min-height: unset;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list {
        width: 100%;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-img {
        display: grid;
        grid-template-columns: repeat(2, minmax(0px, 1fr));
    }
}
@media screen and (max-width: 571px) {
    .breadcrumbs {
        display: none;
    }
    #our-projects .slick-next {
        right: 36% !important;
    }
    #our-projects .slick-prev {
        left: 36% !important;
    }
    #what-we-do {
        padding: 25px 0px;
    }
    #what-we-do .wwd-items .wwd-item {
        width: 33%;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content {
        padding: 5px 10px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .project-title {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 0px;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact {
        padding: 52px 20px 52px 20px;
        width: 98%;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-contact .contact-info .contact-info-img {
        display: none;
    }
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text {
        width: 98%;
    }
    #image-gallery .image-gallery .img-gallery-section {
        width: 80%;
    }
    #image-gallery .image-gallery .img-gallery-con-section {
        width: 100%;
    }
    #pro-detail .project-details .detail-box h4 {
        font-size: 22px;
    }
    #pro-detail .project-details .detail-box p {
        font-size: 16px;
    }
    #pro-detail .project-details {
        width: 100%;
    }
    #portfolio-header h1 {
        margin: 0 auto;
    }
}
@media screen and (max-width: 525px) {
    #we-are-certified .wac-sec-content .wac-item {
        height: 330px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .label, 
    #our-project-sec .op-sec-content .ops-item .ops-item-content .value {
        font-size: 10px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-name .label {
        min-width: 75px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-location .label {
        min-width: 90px;
    }
    #image-gallery .image-gallery .img-gallery-section {
        width: 100%;
    }
}
@media screen and (max-width: 515px) {
    #hero-section .hero-buttons .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    #get-in-touch .get-in-touch-text .form-row,
    #get-in-touch-today .get-in-touch-today-text .form-row {
        flex-direction: column;
        gap: 0;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-text {
        padding: 30px 30px 0px 30px;
    }
    #we-are-certified .wac-sec-content .wac-item {
        height: 320px;
        max-height: 320px;
        margin: 0 10px;
        gap: 10px;
    }
    #we-are-certified .wac-sec-content .wac-item img {
        width: 80%;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content {
        height: auto;
        min-height: 110px;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list p {
        font-size: 22px;
    }
}
@media screen and (max-width: 480px) {
    .why-choose-us-grid .wcu-item {
        width: 100%;
    }
    .why-choose-us-grid .wcu-item .wcu-text {
        margin-top: -60px;
    }
    .our-service-content .slick-next {
        right: 42%;
        bottom: -15%;
    }
    .our-service-content .slick-prev {
        left: 42%;
        bottom: -15%;
    }
    #hero-section h1 {
        font-size: 32px;
        line-height: 38px;
    }
    #hero-section .hero-content p {
        font-size: 18px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .project-title {
        line-height: 18px;
        font-size: 12px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .label, 
    #our-project-sec .op-sec-content .ops-item .ops-item-content .value {
        font-size: 8px;
        line-height: 10px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-name .label {
        min-width: 60px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-location .label {
        min-width: 72px;
    }
    #our-project-sec .op-sec-content .ops-item {
        padding: 12px;
    }
    #about-us-section .about-us-section .about-us-section-img {
        width: 90%;
        margin-bottom: 10px;
    }
    #building-future .building-future .bf-content .bf-content-item-img {
        height: 300px;
    }
    #building-future .building-future .bf-content .bf-content-item {
        width: 90%;
    }
    #pro-detail .project-details .detail-box img {
        width: 25%;
    }
    #pro-detail .project-details .detail-box h4 {
        font-size: 18px;
    }
    #pro-detail .project-details .detail-box p {
        font-size: 12px;
    }
    #image-gallery .image-gallery .img-gallery-section .img-gallery-item:last-child img {
        width: 23%;
    }
    #image-gallery .image-gallery .img-gallery-section .img-gallery-item:first-child {
        margin-bottom: 15px !important;
    }
    #image-gallery .image-gallery .img-gallery-con-section ul {
        padding-left: 20px;
    }
    .site-info {
        height: 100px;
    }
}
@media screen and (max-width: 440px) {
    #we-are-certified .wac-sec-content .wac-item {
        max-height: 300px;
        height: 300px;
    }
    #our-team .our-team-detail {
        width: 90%;
    }
}
@media screen and (max-width: 425px) {
    #our-projects .slick-next {
        right: 30% !important;
    }
    #our-projects .slick-prev {
        left: 30% !important;
    }
    .who-we-are .who-we-responsive-title h2,
    .why-choose-us h2,
    .our-service h2,
    .our-projects h2,
    .our-process h2,
    .our-history h2,
    .our-gallery h2,
    #our-services-page .our-services-page-content h2,
    #what-we-do .what-we-do-content h2,
    #get-in-touch .get-in-touch-content .get-in-touch-text h2,
    #intro-section .intro-section-content h2,
    #innovation-section .innovation-sec-content h2,
    #history-section .history-section h2,
    #costing .costing-section h2,
    #we-are-certified .we-are-certified h2,
    #our-project-sec .our-project-sec h2,
    #other-certificate .other-certificate h2,
    #project-achivement .project-achivement h2,
    #pro-solution .pro-solution h2,
    #pro-stand-out .pro-stand-out .pro-stand-out-content h2,
    #about-us-section h2,
    #our-journey .our-journey h2,
    #building-future .building-future .build-future-content h2,
    #our-team .our-team h2,
    #contact-info .contact-info h2,
    #get-in-touch-today .get-in-touch-today-content .get-in-touch-today-text h2,
    #pro-description .pro-description h2,
    #image-gallery h2,
    #pro-detail .pro-detail .project-text-detail h2
    {
        font-size: 26px;
        line-height: 30px;
    }
    #pro-overview-page h1,
    #services-header h1,
    #portfolio-header h1,
    #project-page h1,
    #aboutus-page h1,
    #contactus-page h1 {
        line-height: 40px;
        font-size: 32px;
    }
    #our-services-page .service-page-block .slick-next {
        right: 42%;
    }
    #our-services-page .service-page-block .slick-prev {
        left: 42%;
    }
    #what-we-do .what-we-do-content p.wwd-text {
        padding: 0px 0px 50px;
    }
    #what-we-do .wwd-items .wwd-item {
        padding: 10px 10px 15px 10px;
    }
    #what-we-do .wwd-items .wwd-item p {
        font-size: 12px;
        text-align: left;
    }
    #what-we-do .wwd-items .wwd-item h3 {
        font-size: 26px;
        line-height: 40px;
        margin: 20px 0 0 0 ;
        width: 100%;
        text-align: left;
    }
    #what-we-do .what-we-do-content p.wwd-text {
        text-align: left;
    }
    #lets-build .lets-build-content h2 {
        font-size: 20px;
        line-height: 28px;
    }
    #lets-build .lets-build-content p {
        line-height: 22px;
        font-weight: 600;
    }
    #lets-build .lets-build-content .contact-button {
        font-weight: 600;
        padding: 10px 15px;
    }
    #lets-build {
        height: 480px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-contact a {
        font-size: 18px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-text {
        padding: 20px 20px 0px 20px;
    }
    #we-are-certified .wac-sec-content .wac-item img {
        width: 80%;
    }
    #we-are-certified .wac-sec-content .wac-item {
        margin: 0 10px;
    }
    #project-achivement .pro-achivement-block .project01, 
    #project-achivement .pro-achivement-block .project02, 
    #project-achivement .pro-achivement-block .project03, 
    #project-achivement .pro-achivement-block .project04, 
    #project-achivement .pro-achivement-block .project05,
    #project-achivement .pro-achivement-block .project06,
    #project-achivement .pro-achivement-block .project07 {
        width: 90%;
    }
    .step-content .step-content-item h3 {
        font-size: 22px;
    }
    #hero-section h1 {
        max-width: 345px;
    }
}
@media screen and (max-width: 400px) {
    #we-are-certified .wac-sec-content .wac-item {
        max-height: 280px;
        margin: 0 5px;
    }
    #our-project-sec .op-sec-content .ops-item {
        gap: 0px;
    }
    #pro-stand-out .pro-stand-out .pro-stand-out-list p {
        font-size: 20px;
    }
}
@media screen and (max-width: 380px) {
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p, 
    #we-are-certified .wac-sec-content .wac-item .wac-item-content p.wac-line {
        font-size: 9px;
    }
    #we-are-certified .wac-sec-content .wac-item .wac-item-content {
        min-height: 80px;
    }
    #we-are-certified .wac-sec-content .wac-item {
        max-height: 250px;
    }
    #we-are-certified .wac-sec-content .slick-prev {
        bottom: -15%;
        left: 40%;
    }
    #we-are-certified .wac-sec-content .slick-next {
        right: 40%;
        bottom: -15%;
    }
    #pro-solution .pro-solution .pro-solution-content .pro-solution-list p {
        font-size: 20px;
    }
    #hero-section .hero-buttons .btn {
        padding: 10px 15px;
    }
}
@media screen and (max-width: 375px) {
    #hero-section .hero-content p {
        font-size: 16px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .project-title {
        line-height: 14px;
        font-size: 8px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content .label, #our-project-sec .op-sec-content .ops-item .ops-item-content .value {
        font-size: 6px;
        line-height: 8px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-name .label {
        min-width: 46px;
    }
    #our-project-sec .op-sec-content .ops-item .ops-item-content div.display-flex.project-location .label {
        min-width: 53px;
    }
}

@media screen and (max-width: 320px) {
    #get-in-touch .get-in-touch-content .get-in-touch-contact p {
        font-size: 16px;
    }
    #get-in-touch .get-in-touch-content .get-in-touch-contact a {
        font-size: 14px;
    }
    
}