@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
  --primary:#278c00;
  --secondary:#7ed200;
  --gradient:linear-gradient(90deg, var(--primary), var(--secondary));	
  --white:#fff;
  --black:#000;
}
body {
    margin: 0;
    padding: 0 !important;
	font-family: "Manrope", serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px #ddd;
    color: #000;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 10px;
    padding: 12px 20px;
    width: 100%;
    outline: 0;
    border-radius: 15px;
    font-family: "Manrope", serif;
    background: var(--white);
}
input[type="submit"] {
    background: var(--gradient);
    text-transform: capitalize;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    outline: none;
    font-weight: 400;
    border-radius: 10px 10px 25px;
    font-family: "Manrope", serif;
    color: var(
    --white);
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
  height: 100px;
  margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px 0;
	font-family: "Manrope", serif;
    color: #000;
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
}
h1 {
  font-size:28px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Manrope", serif;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
ul, li, a {
    list-style-type: none;
    font-family: "Manrope", serif;
    color: #000;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: 0;
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading, .leftheading {
    margin-bottom: 20px;
    font-family: "Manrope", serif;
    font-size: 46px;
    position: relative;
    font-weight: 800;
    text-align: center;
    width: fit-content;
    color: var(--black);
}
.subheading {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    font-family: "Manrope", serif;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-left: 16px;
    line-height: normal;
    margin-bottom: 15px;
    width: fit-content;
}
.subheading:before {
    position: absolute;
    top: 5px;
    left: 0;
    height: 8px;
    width: 8px;
    content: '';
    background: linear-gradient(90deg, #193775, #f39c12);
}
.heading {
    display: block;
    margin: 0 auto 30px;
}
.leftheading {
    text-align: start;
    position: relative;
    z-index: 0;
    font-size: 45px;
    line-height: 55px;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}

/* TOP BAR CSS */

.topbar {
    padding: 13px 0;
    border-bottom: 1px solid #ffffff45;
}
 .smoicons {
    column-gap: 15px !important;
    margin: 0 !important;
}
.smoicons img {
    width: 19px;
}
ul.smoicons li a {
    border: solid 1px #ddd;
    width: 38px;
    height: 38px;
    padding: 0;
}
.home .about {
    border-radius: 20px 20px 0 0;
}
.about .btn-primary {
    background: var(--white) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    margin-top: 20px !important;
}
.about .btn-primary:hover{
background: var(--primary) !important;	
color: var(--white) !important;	
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    width: 280px !important;
}
.about .btn-primary i {
    margin-right: 5px;
}
.top-contact {
    column-gap: 20px;
}
.top-contact i {
    color: var(--white);
    font-size: 14px;
    padding-right: 8px;
}
.topbar p {
    color: var(--white);
    font-weight: 300;
    font-size: 15px;
    letter-spacing: .2px;
}
.top-contact p a {
    color: var(--white);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .5px;
}

/* Header */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
header img {
    width: 110px;
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}
#mega-menu-wrap-primary {
    background: none !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
    background: none !important;
    color: var(--secondary) !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-size: 17px !important;
    padding: 0 15px !important;
    letter-spacing: 0 !important;
}
li#mega-menu-item-4506 a {
    background: var(--gradient) !important;
    border-radius: 8px !important;
    margin-left: 25px !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    background: none !important;
    color: var(--secondary) !important;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
    font-size: 15px !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
    transition: all ease-in-out .5s !important;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:hover {
    color: var(--secondary) !important;
    background: none !important;
}
ul.mega-sub-menu li {
    padding: 6px 0 !important;
    margin: 0 !important;
}
ul.mega-sub-menu li a {
    color: #222 !important;
}

ul.mega-sub-menu {
    padding: 2px 8px 10px !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: none !important;
}


/* Menubar */


.logo a {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 2px;
}
.mainmenu {
    z-index: 3;
    box-shadow: 0 2px 12px #0000000a;
}
.mainmenu.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    background: var(--black);
}
.mainmenu .btn-primary {margin-left: 20px;}
.btn-primary {
    background:var(--gradient);
    color: var(--white);
    border: unset;
    margin-top: 5px;
    font-weight: 400;
    padding: 13px 25px;
    font-family: "Manrope", ui-sans-serif;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: .5px;
}
.btn-primary:hover{
    background:linear-gradient(90deg, var(--secondary), var(--primary));
}

/* Animated Btn */

:root{
  --border: 2px;        /* border thickness */
  --radius: 9999px;     /* auto pill corners */
  --speed: 6s;          /* animation speed */
  --bg: #fff;           /* inner background */
  --text: #0b2540;      /* text color */
}

/* Outer wrapper carries the animated gradient */

.animatedbtn {
    position: relative;
    display: inline-block;
    padding: 3px;
    border-radius: 50px;
    background: conic-gradient(from var(--ang),
    #34a853, #fbbc05, #ea4335, #4285f4, #34a853);
    animation: roundamtn 6s linear infinite;
    text-decoration: none;
}

/* Inner fills the pill so only the ring shows */

.animatedbtn > span {
    display: block;
    padding: .70rem 1.5rem;
    border-radius: inherit;
    background: #fff;
    color: #0b2540;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* Smooth, GPU-friendly rotation of the gradient */
@property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes roundamtn { to { --ang: 1turn; } }



/* Main Slider */

.mainslider {
    background: #f3f3ff;
}
.mainslider figure{
	margin:0;
}
.mainslider .carousel-content h1 strong {
    color: var(--secondary);
    text-transform: uppercase;
}
.about.text-center .heading {
    margin-bottom: 20px;
}
.mainslider video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}
.mainslider figure img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    filter: brightness(0.8);
}
.mainslider .carousel-caption {
    top: 50%;
    left: 0;
    right: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
    bottom: inherit;
}
.mainslider .carousel-content {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
.mainslider .carousel-caption h1, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h1 {
    letter-spacing: .5px;
    text-transform: capitalize;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    font-size: 53px;
    line-height: 60px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-caption span {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    line-height: 30px;
    font-weight: 500;
    background: var(--secondary);
    width: fit-content;
    margin: 0 auto 20px;
    padding: 1px 30px;
    border-radius: 50px;
    border: solid 3px var(--primary);
}
.mainslider .carousel-caption p {
    font-size: 18px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    margin: 15px 0 25px;
}
.mainslider .carousel-content .btn {
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.mainslider button i {
    background: rgba(0,0,0,.5);
    font-size: 27px;
    width: 35px;
    height: 55px;
    line-height: 55px;
}

.partner img, .partner iframe {
	width:100%;
    height: 100%;
    border-radius: 6px;
}
.partnertpcnt {
    text-align: center;
    margin-bottom: 40px;
}

/* features section  */

.features {
    margin-top: 30px;
}
.features .row{
	row-gap:25px;
}
.features-item {
    border: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
    background: #ffffffd4;
    border-radius: 10px;
}
.features-item figure {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.features-item figure img {
    margin: 0 auto;
    width: 80px;
    height: auto !important;
}
.features h3 {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    margin: 20px 0 10px;
}
.icccsr-item {
    border: solid 1px var(--primary);
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(45deg, #000000ab, #000000ab), url(https://hpcabins.in/wp-content/uploads/2025/07/658471142.jpg) center / cover;
    background-attachment: fixed;
}
.icccsr .row {
    row-gap: 25px;
    margin-top: 25px;
}
.icccsr-caption h3 {
    font-weight: 600;
    color: var(--primary);
}
.icccsr-item h3, .icccsr-item {
    color: var(--white);
}

/* Principles Section */

.principles {
    padding: 65px 0;
    background: linear-gradient(#0d0d0d42, #0505058c), url(https://hpcabins.in/wp-content/uploads/2025/07/WhatsApp-Image-2025-07-23-at-1.42.14-PM.jpeg) center / cover;
    background-attachment: fixed;
}
.principle-box {
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.principles .col-lg-6:first-child .principle-box{
background: #ffffffe0;
}
.principles .col-lg-6:last-child .principle-box{
background: #ffffffe0;
}
/*
.principles h3, .principles p, .principles ul li {
    color: var(--white);
}
*/
.principle-heading {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.principle-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.principle-list li::before {
  content: "✔";
  color: green;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}



/* Services */

.services, .projects.menus {
    background: linear-gradient(45deg, #00000057, #00000080), url(https://csengineermag.com/wp-content/uploads/2024/04/coils-image-2-scaled.jpg) no-repeat bottom center / cover;
    padding: 50px 0 70px;
    background-attachment: fixed;
}
.services .row {
    row-gap: 22px;
}
.services .heading {
    color: var(--white);
}
.service-list {
    background: #ffffff1c;
    padding: 20px;
    border-radius: 20px 20px 15px 15px;
    text-align: center;
    position: relative;
    border: 2px solid #ffffff45;
    backdrop-filter: blur(2px);
    transition: all ease-in-out .5s;
    height: 100%;
}
.service-list:hover {
    transform: translateY(-5px);
}
.service-list figure{
position: relative;	
overflow:hidden;	
}
.service-list figure:before{
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
    transition: all .3s ease;
	z-index:-3;
}
.service-list:hover figure:before{
    animation: shine 1s;
	z-index: 1;

}
@keyframes shine{
	100% {
    left: 125%;
}
}
.service-list img {
    height: 235px;
    object-fit: cover;
    clip-path: polygon(6.297% .632%,6.297% .632%,5.409% 1.003%,4.571% 1.466%,3.79% 2.016%,3.069% 2.647%,2.414% 3.353%,1.83% 4.127%,1.323% 4.964%,.897% 5.857%,.558% 6.8%,.31% 7.787%,.31% 7.787%,.241% 8.497%,.183% 9.929%,.135% 12.113%,.098% 15.082%,.07% 18.864%,.051% 23.493%,.041% 28.998%,.04% 35.41%,.047% 42.761%,.062% 51.082%,.155% 92.679%,1.024% 94.576%,1.024% 94.576%,1.328% 95.19%,1.67% 95.778%,2.048% 96.337%,2.46% 96.866%,2.904% 97.362%,3.379% 97.825%,3.883% 98.251%,4.414% 98.641%,4.971% 98.991%,5.553% 99.301%,6.98% 100%,93.216% 100%,94.984% 99.068%,94.984% 99.068%,95.557% 98.741%,96.105% 98.375%,96.626% 97.969%,97.119% 97.528%,97.581% 97.051%,98.013% 96.542%,98.41% 96.001%,98.774% 95.431%,99.1% 94.833%,99.389% 94.21%,99.389% 94.21%,99.565% 93.759%,99.707% 93.2%,99.817% 92.344%,99.9% 91.003%,99.959% 88.989%,99.999% 86.114%,100.023% 82.188%,100.035% 77.024%,100.04% 70.434%,100.04% 62.23%,100.04% 31.78%,99.296% 29.817%,99.296% 29.817%,99.031% 29.16%,98.729% 28.525%,98.39% 27.914%,98.016% 27.33%,97.609% 26.772%,97.168% 26.244%,96.697% 25.747%,96.195% 25.283%,95.665% 24.853%,95.108% 24.459%,95.108% 24.459%,94.848% 24.316%,94.504% 24.149%,94.086% 23.963%,93.604% 23.761%,93.069% 23.548%,92.49% 23.328%,91.88% 23.106%,91.248% 22.884%,90.604% 22.669%,89.959% 22.463%,89.959% 22.463%,88.711% 22.056%,87.636% 21.687%,86.712% 21.346%,85.922% 21.024%,85.244% 20.711%,84.659% 20.397%,84.147% 20.072%,83.689% 19.727%,83.265% 19.351%,82.855% 18.935%,82.855% 18.935%,82.476% 18.507%,82.118% 18.033%,81.774% 17.5%,81.439% 16.899%,81.106% 16.215%,80.771% 15.437%,80.428% 14.553%,80.07% 13.552%,79.692% 12.421%,79.288% 11.148%,79.288% 11.148%,78.909% 9.986%,78.55% 8.947%,78.204% 8.02%,77.865% 7.193%,77.527% 6.452%,77.184% 5.786%,76.828% 5.183%,76.455% 4.63%,76.057% 4.116%,75.627% 3.627%,75.627% 3.627%,75.181% 3.199%,74.65% 2.777%,74.047% 2.367%,73.385% 1.976%,72.677% 1.61%,71.933% 1.274%,71.168% .976%,70.393% .721%,69.621% .516%,68.865% .366%,68.865% .366%,68.176% .299%,66.901% .239%,65.054% .184%,62.651% .137%,59.706% .096%,56.235% .062%,52.251% .035%,47.771% .016%,42.809% .004%,37.379% 0%,37.379% 0%,29.872% .011%,23.739% .024%,18.832% .044%,15.003% .074%,12.102% .116%,9.979% .175%,8.487% .253%,7.475% .352%,6.795% .478%,6.297% .632%);
}
.service-info h3 {
    margin: 20px 0  0;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    border-radius: 20px 20px 0 0;
    letter-spacing: .5px;
    text-align: center;
    color: var(--white);
}
.service-link figure {
    background: var(--white);
    height: 45px;
    width: 45px;
    border-radius: 50px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.service-link img {
    clip-path: inherit;
    height: 15px;
    width: 15px;
}

/* BUSINESS SECTION CSS */

.business {
    background: #f8f8f8;
    padding: 60px 0;
}
/*
.business figure {
    background: linear-gradient(90deg, #193775, #f39c12);
    height: 95px;
    width: 96px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.business figure:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(90deg, #193775, #f39c12);
    animation: playbtn 3s linear infinite forwards;
    z-index: -1;
    border: 1px solid #fff;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
*/
.business figure img {
    width: 22px;
}
.business .heading {
    margin-bottom: 10px;
}
.businesscnt .leftheading {
    font-size: 30px;
    margin-bottom: 12px;
}
/* COUNTER SECTION CSS */

.counter {
    background: linear-gradient(#00000073, #00000057), url(https://www.manufacturingtodayindia.com/cloud/2024/03/01/PIC-North-Karanpura-Super-Thermal-Power-Project-to-the-Nation.jpeg) center / cover;
    padding: 80px 0;
    background-attachment: fixed;
}
.counter .col-lg-3 .counterlist {
    position: relative;
}
.counter .col-lg-3 .counterlist:after {
    position: absolute;
    content: '';
    top: 0;
    right: -15px;
    height: 100%;
    border-right: 1px dashed #ffffff5c;
}
.counter .col-lg-3:last-child .counterlist:after {
    display: none;
}
.counterlist figure {
    height: 110px;
    width: 110px;
    background: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    animation: rdseffect 3s ease-in-out alternate infinite;
    margin-bottom: 15px;
}
@keyframes rdseffect {
from{
  border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%;
}
to{
  border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;
}
}
.counterlist figure img {
    width: 64px;
}
.counterlist h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 22px;
}
.counterlist h3 span {
    display: block;
    font-weight: 700;
    font-size: 42px;
    margin: 15px 0 5px;
    color: var(--white);
}



/* products section  */

.products {
    padding: 60px 0 70px;
    background: url(../images/productbg.png);
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}
.products .row {
    row-gap: 22px;
}
.aboutproducts {
    background: var(--white);
    height: 100%;
    box-shadow: 0 0 10px 0px rgb(235 235 235 / 10%);
    border-radius: 15px;
    padding: 24px;
}
.aboutproducts figure {
    z-index: 1;
}
.aboutproducts figure:before {
    position: absolute;
    top: 10px;
    left: 30px;
    height: 50px;
    width: 50px;
    content: '';
    background: #edf2f9;
    z-index: -9;
    border-radius: 50px;
}
.productinfo h3 {
    margin: 10px 0 0;
}
.productinfo p {
    margin: 12px 0 20px;
}
.productinfo a {
    border: 1px solid #193775;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 8px 18px;
}
.aboutproducts p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* branditems section CSS */

.brands {
    padding: 55px 0;
    background: #f7f7f7;
}
.brandslider {
    background: var(--white);
    border-radius: 6px;
}
.branditems figure {
    height: 100px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brands .slick-slide img {
    width: 120px !important;
}

/* achieve section  */

.achieve {
    background: url(../images/ideas-bg.jpg);
    padding: 80px 0;
    background-attachment: fixed;
}
.achieve h2 {
    color: var(--white);
    font-size: 40px;
    width: 80%;
    margin: 0 auto 10px;
    line-height: 55px;
}
.secondary-container.career {
    background: url(https://archello.s3.eu-central-1.amazonaws.com/images/2021/12/28/ray-design-studio-cafe-chino-hotels-archello.1640706645.5954.jpg) center / cover;
    background-attachment: fixed;
    padding: 90px 0 85px;
}
.secondary-container.vdos {
    background: url(https://d2j6dbq0eux0bg.cloudfront.net/images/95292564/3982659600.jpg) center/cover;
    background-attachment: fixed;
}
.page-id-2629 .secondary-container {
    background: url(https://images.dwell.com/photos-6488407258118639616/6689237161136410624-large/for-an-unconventional-immersion-into-nature-look-no-further-than-this-compact-20-foot-shipping-container-turned-cabin-in-saugerties-set-against-a-backdrop-of-mountains-its-designed-to-engage-with-the-outdoors-what-with-the-hammock-nostalgic-horseshoe-pit-.jpg) center/cover;
    background-attachment: fixed;
}
.page-id-2629 .secondary-container .envira-lazy {
    border: solid 2px var(--secondary);
}

/* Why Choose Us */

.whychoose {
    padding: 50px 0 70px;
    background: linear-gradient(45deg, #0000006e, #00000066), url(https://www.fiduciamga.co.uk/wp-content/uploads/2023/10/AdobeStock_524731364-scaled.jpeg) center / cover;
    background-attachment: fixed;
}
.whychoose .row {
    row-gap: 25px;
    justify-content: center;
}
.whychoosetop {
    width: 90%;
    margin: 0 auto 35px;
}
.whychoosetop .heading, .whychoosetop p {
    color: #fff;
}
.whyusitem {
    border: solid 1px var(--primary);
    height: 100%;
    padding: 20px;
    border-radius: 10px 10px 30px 10px;
    background: #ffffff1c;
    transition: all ease-in-out .5s;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.whyusitem h3, .whyusitem p {
    color: #fff;
    line-height: normal;
    font-weight: 500;
}
.whyusitem h3 {
    font-weight: 600;
}
.whyusitem img {
    width: 80px;
    margin-bottom: 20px;
}
.whyusitem:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}
.whychoose .col-lg-3:nth-child(5), .whychoose .col-lg-3:nth-child(6), .whychoose .col-lg-3:nth-child(7) {
    width: 33.333%;
}


/* Commitment */

.commitment.testimonial .row {
    row-gap: 25px;
    justify-content: center;
}
p.subttl {
    color: #fff;
    width: 80%;
    margin: 0 auto 35px;
}
.commitment.testimonial .testimonial-cnt {
    clip-path: inherit;
}
.commitment.testimonial .testimonial-cnt:after{
	display:none;
}
.commitment.testimonial .testimonial-item p {
    padding-right: 0;
    height: auto;
    overflow-y: inherit;
}
.commitment.testimonial .testimonial-item {
    background-color: #e5f3f312;
    border-radius: 15px;
    text-align: center;
    padding: 25px 25px 15px;
    height: 100%;
}
.commitment.testimonial h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    color: var(--secondary);
}
.businessbox {
    background: var(--primary);
    padding: 15px;
    border-radius: 12px;
}

.businessbox .leftheading, .businessbox p {
    color: var(--white);
}

/* Testimonials */

.testimonial {
    padding: 60px 0 70px;
    text-align: center;
    background: linear-gradient(45deg, #000000ab, #000000ab), url(https://www.export.org.uk/media/zx3b6j3v/SteelWarehouse.jpg) center / cover;
    background-attachment: fixed;
}
.home .testimonial-item figure {
    background: none;
}
.modalpopup .modal-body {
    padding: 25px;
    background: var(--gradient);
    border-radius: 12px;
}
.modalpopup .modal.show .modal-dialog {
    height: 100%;
    display: flex;
    align-items: center;
}
.modalpopup .modal-body h2 {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.modalpopup .modal-content {
    background: transparent;
}
.modalpopup .modal-dialog {
    margin: 0 auto;
}
.modalpopup .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 11;
    background-color: #fff;
    width: 22px;
    height: 22px;
    opacity: 1;
    border-radius: 50%;
}
.testimonial .rating {
    text-align: center;
    color: #d8c606;
    column-gap: 4px;
    font-size: 12px;
    margin-bottom: 15px;
    justify-content: center;
}
.testimonial-cnt {
    position: relative;
    background: url(../images/feature-bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100%;
    background-color: #e5f3f312;
    border-radius: 15px;
    text-align: center;
    padding: 25px 25px 15px;
    z-index: 1;
    border: solid 1px #ffffff1f;
}
.testimonial-cnt:before {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-50%);
    content: '';
    background: url(
    ../images/review-shape.webp);
    height: 26px;
    width: 75px;
}
.testimonial-cnt:after {
    position: absolute;
    content: "\f10e";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    -webkit-text-stroke: 1px #f2f2f236;
    color: transparent;
    font-size: 45px;
    bottom: 0px;
    right: 90px;
}
.testimonial-item figure {
    display: flex;
    justify-content: center;
    background: #fff;
    width: 170px;
    margin: 0 auto 20px;
    border-radius: 8px;
}
.testimonial-item img {
    height: 90px;
    width: 120px;
    object-fit: contain;
}
.testimonial-item h3, .testimonial-item p {
    color: var(--white);
}
.testimonial h3 {
    margin: 15px 0 5px;
    font-size: 19px;
}
.testimonial-item p {
    padding-right: 8px;
    height: 130px;
    overflow-y: scroll;
}
.testimonial .row {
    row-gap: 20px;
}
.testimonial-item p::-webkit-scrollbar-track{
     -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,30%);
     border-radius: 10px;
     background-color:#f9f9f9;
}
.testimonial-item p::-webkit-scrollbar {
     width: 2px;
     background-color: #f9f9f9;
}
.testimonial-item p::-webkit-scrollbar-thumb{
     border-radius: 10px;
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,30%);
     background: var(--primary);
}
.testimonial center a {
    background: var(--white);
    display: inline-block;
    border-radius: 10px;
    padding: 7px 20px;
    margin-top: 30px;
}
.testimonial center a img {width: 180px;}


/* Our Team */

.ourteam {
    background: url(https://i.natgeofe.com/n/2c18df9e-f799-4f3f-b9dd-b5059bc90ad3/bandra-worli-sea-link-mumbai-india.jpg) center/cover;
    padding: 40px 0 60px;
    background-attachment: fixed;
}
.ourteam .heading:before {
    border-color: var(--primary);
}
.ourteam .row{
	row-gap:25px;
}
.teamitem {
    background: #ffffffd1;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    backdrop-filter: blur(2px);
}
.teamitem h3 {
    font-weight: 800;
    font-size: 22px;
    margin: 30px 0 6px;
}
p.team-position {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}
.teamitem figure {
    outline: 2px dotted var(--secondary);
    border-radius: 6px;
    outline-offset: 5px;
    overflow: hidden;
    height: 350px;
    margin: 0 auto 25px;
}
.teamitem figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out .5s;
}
.teamitem:hover figure img {
    transform: scale(1.1) rotate(2deg);
}
.team-desc {
    background: var(--gradient);
    width: fit-content;
    margin: 0 auto;
    color: var(--white);
    padding: 8px 30px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
	 animation: zoomInOut 2.5s ease-in-out infinite;
}
@keyframes zoomInOut {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
/*
li#mega-menu-item-3363 a, li#mega-menu-item-3610 a{
    pointer-events: none !important;
}
*/
.secondary-container.certificates {
    padding: 60px 0 70px;
    background: url(https://static.vecteezy.com/system/resources/previews/021/970/369/large_2x/award-ceremony-background-with-podium-and-3d-gold-star-element-generative-ai-free-photo.jpeg);
    background-size: cover;
    background-attachment: fixed;
}
.secondary-container.certificates .certificates-item {
    background: var(--white);
}

.prdctitem {
    background: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 12px;
}

.prdctsec .row {
    row-gap: 25px;
}

.prdctsec ul {
    margin-bottom: 0;
}

.prdctitem h4{
    font-size: 21px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.prdctitem  h4:after {
    content: '';
    position: absolute;
    border-bottom: solid 3px var(--primary);
    width: 70px;
    left: 0;
    bottom: 0;
}

.prdctitem ul li {margin-top: 9px;position: relative;padding-left: 20px;list-style-type: none !important;}

.prdctitem ul li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    left: 0;
    color: var(--primary);
}
.prdctitem ul {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

/* Clients */

.secondary-container.clients {
    background: url(https://www.kaartech.com/wp-content/uploads/2024/01/Blog-Banners56-scaled.jpg) center / cover;
    padding: 90px 0 60px;
    background-attachment: fixed;
}
.home .clients {
    background: #f9f9f9;
    padding: 45px 0 70px;
}
.home .clients .heading {
    color: var(--primary);
}
.secondary-container.clients .col-6.col-md-4.col-lg-2:nth-child(130) img {
    filter: brightness(0);
}
.clients-item {
    outline: dashed 1px var(--primary);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    transition: all ease-in-out .5s;
    background: var(--white);
    box-shadow: 4px 8px 7px #000;
}
.secondary-container.blogdtlspage {
    background: url(https://www.myfinpoint.com/h-upload/2024/07/23/1279450-govt-maintains-14-increase-in-capital-investment-of-energy-psusgfx.webp) center/cover;
    background-attachment: fixed;
}
.blog .breadcrumb.no-banner {
    background: linear-gradient(45deg, #1d356ac9, #000000b5), url(https://csengineermag.com/wp-content/uploads/2024/04/coils-image-2-scaled.jpg) center / cover;
}
.single-post .breadcrumb.no-banner {
    background: linear-gradient(45deg, #1d356acf, #000000b5), url(https://nhrec.org/wp-content/uploads/2023/03/AdobeStock_143411289-scaled.jpeg) center / cover;
}
article.singlepost {
    background: #ffffffe6;
    padding: 20px;
    border-radius: 15px;
}
.secondary-container.blogpost {
    background: url(https://endlessautomation.com.au/wp-content/uploads/2024/07/Mining-1.jpg) center/cover;
    background-attachment: fixed;
}
.home .clients-item {
    background: var(--white);
}
.clients .slick-track {
    margin: 5px 0;
}
.clients-item img {
    aspect-ratio: 1/.5;
    object-fit: contain;
}
.clients-item:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    filter: grayscale(1);
}

/* Branches */

.ourbranches-item {
    border: solid 1px var(--primary);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
#icon_wrapper {
    transform: translateY(-50%) !important;
}
.ourbranches .col-md-6.col-lg-6:last-child {
    width: 100%;
}
.ourbranches-item h3 {
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--white);
    font-size: 25px;
}
.ourbranches-desc ul li {
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--white);
}
.ourbranches-desc ul li:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 18px;
}
.ourbranches-desc p {
    color: var(--white);
}
.ourbranches-desc ul li:first-child:before{
content:'\f3c5';	
}
.ourbranches-desc ul li:nth-child(2):before{
content:'\f879';
}
.ourbranches-desc ul li:last-child:before{
content:'\f2b6';
}
.ourbranches-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}
.ourbranches-item p.mb-2 {
    border-bottom: solid 1px #ddd;
    padding-bottom: 10px;
}
.secondary-container.about-us {
    background: var(--gradient);
    padding: 0;
}
.secondary-container.about-us p {
    color: #000;
}
.ourbranches-item h5 {
    font-size: 20px;
    color: var(--white);
    background: var(--primary);
    padding: 9px 15px;
    border-radius: 8px;
    text-align: center;
}




.branches-tabs-container {
    padding: 20px 0;
}

.branches-tabs-container .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    justify-content: center;
    margin-bottom: 50px !important;
}

.branches-tabs-container .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: var(--white);
    font-weight: 600;
    padding: 13px 25px;
    position: relative;
    transition: all 0.3s ease;
    border-color: var(--white) !important;
    margin-bottom: -2px;
    font-family: "Manrope", serif;
    font-size: 17px;
}

.branches-tabs-container .nav-tabs .nav-link.active, .branches-tabs-container .nav-tabs .nav-link:hover {
    background-color: var(--white);
    color: var(--primary);
}

.branches-tabs-container .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
}


.branches-tabs-container .no-branches-message {
    background: #f8f9fa;
    border-radius: 12px;
    margin: 0;
}

.branches-tabs-container .tab-content {
    min-height: 400px;
}

@media (max-width: 768px) {
    .branches-tabs-container .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.branches-tabs-container .tab-pane {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}







/* MISSION SECTION CSS  */

.mission {
    background: #f47b2012;
    padding: 60px 0;
}
.mission-item {
    background: var(--white);
    height: 100%;
    padding: 25px;
    border-radius: 0 30px 0 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mission-item h3 {
    margin: 10px 0 5px;
}
.mission-item:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    content: '';
    background: #ff670230;
    z-index: -1;
    border-radius: 0 30px 0 30px;
}
.mission-item figure {
    background: var(--white);
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 23px;
    border-radius: 0 30px 0 30px;
    box-shadow: 0 5px 5px #ff670240;
}
.mission-item figure img {
    width: 60px;
}

/* PRODUCT SECTION CSS */

.aboutproducts figure img {
    margin-bottom: 15px;
}
.productinfo h3 {
    margin-bottom: 10px;
}
.aboutproducts figure:before {
    position: absolute;
    top: 10px;
    left: 30px;
    height: 50px;
    width: 50px;
    content: '';
    background: #edf2f9;
    z-index: -9;
    border-radius: 50px;
}






/* TEAM SECTION CSS */

.team {
    background: linear-gradient(45deg, #010006eb, #010006eb), url(../images/teambg.jpg);
    padding: 50px 0;
    background-attachment: fixed;
    background-size: cover;
}
.teamsldr-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
}
.teamsldr-item figure {
    mask-image: url(../images/polygon-team.png);
    position: relative;
    overflow: hidden;
    background: #fff;
    width: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    margin-bottom: 15px;
}
.teamsldr-item span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--primary);
    margin-top: 5px;
}
.teamsldr-item img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.homebranches.ourbranches {
    background: linear-gradient(#0000009c, #20934469), url(https://hpcabins.in/wp-content/uploads/2025/07/WhatsApp-Image-2025-07-23-at-1.41.37-PM.jpeg) center / cover;
    padding: 60px 0;
    margin: 0;
    background-attachment: fixed;
}
.homebranches.ourbranches .ourbranches-item {
    background: #ffffff17;
    border: solid 1px #ffffff7a;
    backdrop-filter: blur(2px);
}
/* PARTNER SECTION CSS */

.partner {
    padding: 60px 0 70px;
    background: linear-gradient(#000000de, #00000012), url(https://s7ap1.scene7.com/is/image/incredibleindia/1-bandra-worli-sea-ink-mumbai-maharashtra-attr-hero?qlt=82&ts=1742195253156);
    background-size: cover;
    background-attachment: fixed;
}
.partner .heading, .partner p {
    color: var(--white);
}
.partner .leftheading {
    font-size: 30px;
}
.partner p:last-child {
    margin-bottom: 0;
}
.partner-item {
    padding: 0 30px;
}


/* HOME BLOG SECTION CSS */

.homeblog {
    padding: 40px 0 60px;
    background: #ea5f020a;
    background-image: url(../images/blogbg.png);
    background-size: cover;
    background-attachment: fixed;
}
.blogpost .row {
    row-gap: 25px;
}
.blog-item {
    transition: 0.5s;
    height: 100%;
    position: relative;
    background: var(--white);
    border: solid 1px var(--primary);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}
.blog-item .ht-shape-btn {
    z-index: 1;
}
.blog-item .ht-shape-btn svg path {
    fill: var(--secondary);
}
.blog-item figure {
    margin: 0;
    border-radius: 3px;
    overflow: hidden;
}
.blog-item img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover;
    transition: all ease-in-out .5s;
    border-radius: 12px;
}
.blog-item:hover figure img {
    transform: scale(1.1);
}
.homeblog ul.blog_top_cnt {
    column-gap: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px #eee;
    margin-bottom: 10px;
}
.blog-content h3 {
    margin-bottom: 10px;
}
.homeblog .blog_top_cnt li {
    background: #2f3ba714;
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary);
}
.homeblog .blog_top_cnt li i {
    margin-right: 8px;
    color: var(--secondary);
    font-size: 12px;
}
.blog-item ul.blog_top_cnt {
    margin-top: 20px;
}
.homeblog h3 a {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-content .readbtn {
    color: var(--primary);
    font-size: 17px;
}
.blog-content .readbtn i {
    transform: rotate(-45deg);
    transition: all ease-in-out .5s;
    font-size: 14px;
}
.blog-content .readbtn:hover i {
    transform: inherit;
}
ul.blog_top_cnt.d-flex.align-items-center li {
    background: var(--white);
    padding: 10px 17px;
    font-size: 16px;
    border-radius: 12px;
    color: var(
    --primary);
    margin-top: -38px;
    position: relative;
    font-weight: 600;
}
.blog-content h3 a {
    font-weight: 600;
}
ul.blog_top_cnt.d-flex.align-items-center i {
    margin-right: 10px;
}
ul.blog_top_cnt.d-flex.align-items-center {
    border-bottom: 1px solid #00000029;
    padding-bottom: 15px;
    justify-content: center;
}
.blog-content h3 {
    margin: 12px 0 0;
}
/* LENDER DEFAULT SERVICES */
.lenderdefault{
	padding:60px 0;
}

/* PROPERTY OWNER WORKOUT GUIDE */
.property-owner {
    padding: 50px 0 60px;
    background: #f8f8f8;
}

/* INVESTOR AQUISITION */
.investoraquisition{
	padding:60px 0;
}

.lenderdefault figure, .property-owner figure, .investoraquisition figure{
    height: 100%;
}

.lenderdefault img, .property-owner img, .investoraquisition img{
    height: 100%;
	width:100%;
    object-fit: cover;
}
.lenderdefault-cnt, .propertyowner-cnt, .investoraquisition-cnt {
    padding: 20px;
    border: 1px solid #c3c3c359;
    box-shadow: 0px 3px 10px 0px #00000026;
    background: var(--white);
}
.lenderdefault-cnt li, .propertyowner-cnt li, .investoraquisition-cnt li {
    background: url(https://webzensys.com/work/officereo.com/wp-content/uploads/2024/01/right-arrow-1.png) no-repeat left top;
    padding-left: 15px;
    background-size: 10px;
    background-position-y: 7px;
    font-size: 16px;
    margin-bottom: 4px;
}
/* WHY CHOOSE US */
.whyus{
	padding:60px 0;
	background: #eeeeee3b;
}
.whyus .row{
	row-gap:25px;
}
.whyus-item {
    box-shadow: 0px 3px 10px 0px #00000026;
    border-radius: 5px;
    height: 100%;
	overflow:hidden;
    transition: 0.5s ease-in-out;
    border: 1px solid #f7c4595e;
    background: var(--white);
}
.whyus-item figure {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.whyus-item img {
    height: 100%;
    width: 100% !important;
    object-fit: cover;
    filter: brightness(0.6);
    transition: 0.6s ease-in-out;
}
.whyus-item h3 {
    color: var(--white);
    position: absolute;
    width: fit-content;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    top: 0;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 8px;
	transition:0.6s ease-in-out;
}

.whyus-item p {
    padding: 22px 25px;
    text-align: center;
}
.whyus-item:hover{
	box-shadow:unset;
}
.whyus-item:hover img, .whyus-item:hover h3{
	 scale: 1.08;
}




/* Footer */


#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 40px;
    left: 30px;
    z-index: 99999999;
    padding-top: 8px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 6px 9px rgb(0 0 0 / 5%), 0 4px 5px rgb(0 0 0 / 5%);
}
#whatsappbtn.msngrbtn {
    bottom: 120px;
    background: #0866ff;
}
#whatsappbtn.msngrbtn img {
    width: 22px;
    margin-top: 10px;
}
#whatsappbtn.msngrbtn:before {
background: #0866ff;
	box-shadow: 0 0 10px #0866ff;	
}
#whatsappbtn:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50%;
	background: #4fcc5d;
	box-shadow: 0 0 10px #4fcc5d;
	animation: whtsbtn 2s linear infinite forwards;
}
#whatsappbtn img{
width: 110px;    
}
 @keyframes whtsbtn {
 from {
 transform:scale(1.0);
 opacity: 1;
}
to {
	transform:scale(1.5);
	opacity: 0;
}
}
#whatsappbtn img {
	width: 30px;
	margin-top: 4px;
}

footer {
    background: linear-gradient(90deg, #1c1a2fd6, #1c1c1dd9), url(https://roxboxcontainers.com/wp-content/uploads/2023/01/Houston-Shop-Photo-v2.jpg);
    background-size: cover;
    background-position: top;
    padding-top: 60px;
    background-attachment: fixed;
}
.footerabt {
    text-align: center;
}
.footerabt img {
    width: 110px;
    margin: 0 auto;
    display: block;
}
footer .border-start {
    border-left: 1px solid #dee2e640!important;
}
footer .smoicons li:before {
    display: none;
}

a.footer-logo{
	width:100%;
	background: var(--white);
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
}
footer a.footer-logo img {
    width: 200px;
    padding: 2px 19px;
    margin-bottom: 0px;
}
footer ul li a {
    display: block;
    padding-bottom: 20px;
}
footer h3 {
    color: var(--secondary);
    font-size: 23px;
    margin-bottom: 28px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
}
footer a, footer ul li {
    color: #fff;
    transition: 0.5s ease-in-out;
}
footer ul li {
    position: relative;
    padding-left: 28px;
}
footer ul li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 15px;
}
footer a:hover {
    color: var(--secondary);
}
.footer-details ul li {
    position: relative;
}

.footer-details ul li i {
    position: absolute;
    left: 0;
}

.footer-details li {
    position: relative;
    padding-left: 25px;
}

.footer-details li i {
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--secondary);
    font-size: 14px;
}
footer i{
    font-size: 13px;
    margin-right: 6px;
}
footer p {
    margin-bottom: 0;
    color: #efefef;
}

.ftricons {
    margin-top: 15px;
    column-gap: 5px;
}
.ftricons li i {
    color: #fff;
    font-size: 13px;
    background: #ff67021c;
    width: 32px;
    height: 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.ftr-contact {
    display: flex;
    column-gap: 20px;
    border-bottom: 1px solid #ffffff1f;
    padding-bottom: 25px;
}
.ftrcontact li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #1c1c1c;
}
.ftr-contact li i {
    color: var(--white);
    font-size: 16px;
    background: #ffffff1f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
}
.ftr-contact li h4 {
    font-size: 18px;
    color: var(--white);
    margin: 18px 0 5px;
    font-weight: 600;
}
.ftrcontact li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 15px;
    padding: 17px 0;
    border-bottom: 1px solid #1c1c1c;
}
.ftrcontact li a {
    font-size: 16px;
}
.ftrcontact li a span {
    font-size: 15px;
}
.ftrcontact li i {
    font-size: 16px;
    margin: 0;
    color: var(--primary);
}
.ftr-newsletter input[type="submit"] {
    width: 100%;
    margin-top: 5px;
}

.copyright {
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #ffffff1c;
}
.copyright .row {
    align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
}
.copyright p a {
    font-weight: 400;
}

.smoicons li a {
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 17px;
    transition: all ease-in-out .5s;
}
.smoicons li a i {
    margin: 0;
    font-size: 18px;
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 45px;
    right: 25px;
    border-radius: 2px;
    z-index: 99999999;
    padding: 0;
    background: var(
    --primary);
    width: 55px;
    height: 55px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding-top: 14px;
    color: var(--white);
    border-radius: 50px;
    border: 2px solid var(--white);
}
#GoToTop img {
    width: 22px;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}

.secondary-container {
	padding: 60px 0;
}


/* Breadcrumb */

.breadcrumb {
padding: 220px 0 170px;
 background: linear-gradient(45deg, #1d356a, #000000b5), url(https://hpcabins.in/wp-content/uploads/2025/05/bgimg.jpg) center/cover;
}

.breadcrumb .row {
  align-items: center;
  display: flex;
}
.breadcrumb h1 {
    color: var(--white);
    font-size: 50px;
    margin: 0 auto;
    font-weight: 600;
}
.breadcrumb h1 span {
    font-size: 45px;
    font-weight: 600;
    text-transform: lowercase !important;
}
.breadcrumb p {
    text-align: center;
    margin: 0;
}
.breadcrumb h1 p {
    text-align: left;
}
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    color: var(--white);
    font-weight: 500;
}
.breadcrumb p a{
  padding-right: 18px;
  margin-right: 5px;
  position: relative;
}
.breadcrumb h1 span {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--white);
    text-transform: uppercase;
    line-height: normal;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}
.breadcrumb h1 p{
  float:left;
}
.breadcrumb h1 span a {
  display: none;
}

.breadcrumb a:after {
    position: absolute;
    content: '\f101' !important;
    font-size: 10px !important;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free' !important;
    color: var(--white);
    right: 0;
}

/* Modal Multi Step Form */

.modalformbox {
    width: 60%;
    margin: 0 auto;
}
.modalformbox h3 {
    font-size: 28px;
    font-weight: 500;
}
.modalformbox .wpcf7-list-item {
    width: 100%;
    background: #e1e1e1 !important;
    border: solid 1px #333;
    border-radius: 6px;
    padding: 6px 15px;
    margin: 10px 0;
    position: relative;
}
.modalformbox input[type="radio"] {
    position: absolute;
    right: 0;
    text-align: right;
    cursor: pointer;
}
.modalformbox input[type="radio"] {
    position: absolute;
    right: 8px;
    text-align: right;
    cursor: pointer;
    height: 100%;
    top: -2px;
    width: 22px;
}
.modalformbox input[type="radio"]:checked {
    accent-color: #222;
}
.modalformbox .cf7mls-btns button {
    margin: 0 !important;
    border-radius: 6px;
    font-size: 16px;
    background: #111;
    letter-spacing: 1px;
}
.modalformbox p>label {
    font-size: 20px;
}
.modalformbox input[type="text"], .modalformbox input[type="email"], .modalformbox input[type="tel"] {
    border: none;
    border-bottom: solid 1px #777;
    border-radius: 0;
    font-size: 28px;
    font-weight: normal;
    padding: 15px 0;
    color: #777;
}
.modalformbox .cf7mls_back {
    background: #eee !important;
}
.modalformbox .offcanvas-header {
    justify-content: flex-end;
}
.wpcf7-not-valid-tip {
    display: none !important;
}
.wpcf7-not-valid::placeholder {
    color: red;
}

/* About us page  */

.about {
    padding: 60px 0;
    background: linear-gradient(45deg, #00000080, #0000006e), url(https://www.lot.com/content/dam/lot/lot-com/destination-photos/indie/mumbai/GettyImages-957919884_mumbai.coreimg.82.3840.jpg/1723626302526/GettyImages-957919884_mumbai.jpg) center / cover;
    background-attachment: fixed;
    background-color: #2e9200;
}
.about img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}
.about-content {
    padding-right: 50px;
}
.about p{
	color:var(--white);
}
.secondary-container.about-us .about-content {
    background: #ffffffd4;
    padding: 35px;
    border-radius: 10px;
    height: 100%;
}
.secondary-container.about-us .about-content h3 strong {
    color: var(--primary);
}

.secondary-container.about-us .about-content h3 {
    font-size: 26px;
}
.secondary-container.about-us .about .col-lg-6 img {
    height: 100%;
    object-fit: cover;
}
.about-image img {
    border-radius: 2px;
    height: 355px;
    object-fit: cover;
}
.aboutfeature {
    background: #f7f7f7;
    padding: 35px 0;
}
.aboutfeature .row {
    background: var(--white);
    padding: 20px;
    border-radius: 3px;
    margin: 20px 0;
}
.aboutfeature .row:nth-child(even) {
    flex-direction: row-reverse;
}
.aboutfeature img {
    border-radius: 10px 100px 10px 10px;
    height: 300px;
    object-fit: cover;
}
.aboutfeature .row:nth-child(even) img {
    border-radius: 100px 10px 10px;
}
.aboutfeatures-content {
    padding: 0 10px;
}
.aboutfeatures-content h3 {
    font-weight: 600;
    color: var(--black);
    font-size: 24px;
}
.aboutfeatures-content p {
    margin: 0;
}


/* price page css  */

.aboutprices {
    background: #f47b200d;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #f47b202b;
}
.aboutprices table {
    width: 100%;
    border: 1px solid #f47b2042;
}
.aboutprices table td {
    border-right: 1px solid #f47b2042;
    width: 50%;
    padding: 10px;
    border-bottom: 1px solid #f47b2042;
}
.aboutprices table th{
    padding: 10px;
    border-bottom: 1px solid #f47b2042;
    border-right: 1px solid #f47b2042;
}


/* PRICING SECTION CSS  */

.pricing {
    background: url(../images/pricingbg.jpg);
    background-size: cover;
    padding: 50px 0 60px;
}
.pricing .pricing-item {
    flex-wrap: wrap;
    column-gap: 45px;
}
.pricing-list {
    justify-content: space-between;
    border-bottom: 1px dashed #7a7a7a;
    padding: 10px 0;
    width: 48%;
    margin: 10px 0;
}
.pricing-list p {
    color: var(--primary);
    margin: 0;
    font-family: "Marcellus", serif;
    font-size: 20px;
}
.pricing-list p span {
    padding-right: 20px;
    font-family: "Poppins", serif;
    font-size: 15px;
}
.pricing-list h3 {
    color: var(--white);
    margin: 0;
    font-size: 20px;
}
.time-duration {
    justify-content: space-between;
    background: #0000008a;
    padding: 15px;
    margin-top: 30px;
    border-radius: 6px;
}
.time-duration h3 {
    font-size: 20px;
    column-gap: 10px;
}


/* OWNER SECTION CSS */

.owner {
    padding: 60px 0;
}
.owner-content .leftheading {
    text-transform: uppercase;
    margin-bottom: 10px;
}
.owner-content p {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 18px;
    margin-bottom: 18px;
}



/* GALLERY SECTION CSS  */

.ourgallery {
    background: url(../images/gallerybg.jpg);
    padding: 50px 0 60px;
    background-size: cover;
    background-position: center;
}
.ourgallery .row {
    row-gap: 15px;
}
.ourgallery .btn {
    display: block;
    width: fit-content;
    margin: 35px auto 0;
    letter-spacing: 1px;
}
.ourgallery .gallerylightboxlist {
    height: 250px !important;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}
.ourgallery .gallery-item {
    position: relative;
	overflow:hidden;
}
.ourgallery .gallery-item::before{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.ourgallery .gallery-item:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .60s;
}

@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 130%;
		height: 130%;
		opacity: 0;
	}
}


/* MORE INFORMATION CSS */

.moreinfo {
    padding: 60px 0;
}
.moreinfo img {
    height: 425px;
    object-fit: cover;
    border-radius: 10px;
}


/* contact us page  */


.contact-us {
    padding: 60px 0 !important;
    background: url(https://www.thepostingtree.com/wp-content/uploads/2021/08/shutterstock_515384434-1920x1080-1.jpg) center/cover;
    background-attachment: fixed;
}
.contact-us .homebranches.ourbranches {
    margin-top: 50px !important;
}
.contact-us .contact-cnt {
    border-bottom: 1px solid #00276847;
}
.contact-us .cnt-text{
    width: 85%;
    border-radius: 8px;
    margin: 20px auto;
}
.ourbranches {
    margin-top: 40px;
}
.cntaddrbox {
    background: #f47b200d;
    text-align: center;
    padding: 30px 10px 15px;
    box-shadow: 0 2px 7px 2px rgb(0 0 0 / 4%);
    border-radius: 8px;
    cursor: pointer;
    height: 100%;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.cntaddrbox i {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0px 8px 1px #ff670269;
    margin: 0 auto;
    font-size: 23px;
    outline-offset: 15px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    background: linear-gradient(90deg, #193775, #f39c12);
}

.contact-us h4 {
    margin: 15px 0px 5px;
    font-weight: 600;
    font-size: 19px;
}
.googlemap iframe {
    width: 100%;
    height: 425px;
    border-radius: 8px;
}
.contact-us .contact-details{
    margin-top: 30px;
}
.about-cnt li a{
    font-size: 14.8px;;
    font-weight: 500;
}
.googlemap iframe{
	width:100%;
}


@media (max-width:1199px){
.topbar .col-lg-8 {
    width: 80%;
}
.topbar .col-lg-4 {
    width: 20%;
}
.about img {
    height: auto;
}
.about-content {
    padding: 25px;
}
.about-content .leftheading {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
}
.pricing-list {
    width: 100%;
}
form.wpcf7-form.init {
    padding: 0 !important;
}
}

@media (max-width:991px){
.topbar p:first-child {
    display: none;
}
.menutop {
    display: none;
}
.logo a {
    font-size: 24px;
}
.logo {
    padding: 6px 0;
}
.mainslider .carousel-caption h2 {
    font-size: 35px;
    line-height: 45px;
    margin: 20px 0 10px;
}
.mainslider .carousel-caption p {
    font-size: 16px;
}
.carousel-item img {
    height: 600px;
}
.about {
    padding: 50px 0;
}
.about .row {
    row-gap: 22px;
}
.pricing {
    padding: 40px 0 50px;
}
.time-duration {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
}
.owner {
    padding: 50px 0;
}
.owner .row {
    row-gap: 22px;
}
.ourgallery {
    padding: 40px 0 50px;
}
.businessbox, .businessbox .leftheading {
    text-align: center;
    margin: 0 auto 5px;
}
.moreinfo {
    padding: 40px 0 60px;
}
.moreinfo .row {
    row-gap: 22px;
}
footer {
    padding-top: 40px;
}
.newsletter {
    width: 100%;
}
.newsletter h4 {
    font-size: 22px;
    margin: 0 0 20px;
}
footer .row {
    border-top: none;
    padding-top: 0;
    margin-top: 15px;
	row-gap: 20px;
}
footer h3 {
    color: var(--white);
    padding-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}
.ftr-link {
    border-left: none;
    padding-left: 0;
}
.ftrcontact li {
    padding: 15px 0;
}
.copyright {
    padding: 10px 0;
    margin-top: 30px;
}
}

@media (max-width:767px){
header {
    position: inherit;
}
.smoicons li a {
    width: 33px;
    height: 33px;
    font-size: 13px;
}
.top-contact p a {
    font-size: 14px;
}
.mainmenu .col-sm-3, .mainmenu .col-sm-9 {
    width: 50%;
}
.logo a {
    font-size: 25px;
}
.mainslider .carousel-caption h2 {
    font-size: 27px;
    line-height: 40px;
    margin: 20px 0 10px;
}
.carousel-item img {
    height: 450px;
}
.about-content .leftheading {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 5px;
}
.heading, .leftheading {
    font-size: 35px;
	margin-bottom: 10px;
}
.leftheading {
    font-size: 30px;
    line-height: 45px;
}
	
article.singlepost tr {
    display: flex;
    flex-direction: column;
}

article.singlepost tr td {
    padding: 20px !important;
}

article.singlepost tr td div {
    line-height: 1;
    font-size: 30px !important;
    margin-bottom: 20px;
}

article.singlepost tr td div ul {
    padding-left: 0 !important;
}	
	
}

@media (max-width:568px){
.breadcrumb {
    padding: 100px 0;
}
.breadcrumb h1 {
    font-size: 25px;
}	
.details-content p {
    text-align: left;
}	
.prdctsec .row {
    row-gap: 20px;
}	
.carousel-item img {
    height: 400px;
}
.service-info h3 {
    font-size: 18px;
    line-height: 25px;
}	
.whychoose .col-lg-3 {
    width: 100% !important;
}
.counter .col-lg-3 {
    width: 50%;
}
.businessbox img {
    width: 300px !important;
}
.counterlist h3 span {
    font-size: 28px;
}
.counterlist h3 {
    font-size: 18px;
}	
.carousel-content small {
    display: none;
}
.carousel-control-next, .carousel-control-prev {
    width: 45px;
    height: 45px;
}
.carousel-control-prev {
    left: 15px;
}
.carousel-control-next {
    right: 15px;
}
.mainslider .carousel-caption h2 {
    margin: 0 0 10px;
}
.carousel-item img {
    height: 350px;
}
.about {
    padding: 40px 0;
}
.heading, .leftheading {
    margin-bottom: 10px;
    font-size: 30px;
}
.heading {
    margin: 0 auto 20px;
}
.pricing {
    padding: 30px 0 40px;
}
.pricing-list h3 {
    font-size: 18px;
}
.pricing-list {
    padding: 8px 0;
    margin: 8px 0;
}
.nav {
    margin-bottom: 15px;
}
.nav-link {
    padding: 10px 15px;
    font-size: 15px;
}
.time-duration h3 {
    font-size: 17px;
}
.time-duration h3 img {
    width: 22px;
}
.owner {
    padding: 35px 0 30px;
}
.owner-content .leftheading br {
    display: none;
}
.ourgallery {
    padding: 30px 0 40px;
}
.moreinfo {
    padding: 25px 0 40px;
}
.leftheading {
    font-size: 25px;
    line-height: 35px;
}
.moreinfo img {
    height: auto;
}
}

@media (max-width:414px){
.carousel-caption {
    width: 100%;
}
.mainslider .carousel-caption h2 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 5px;
}
.mainslider .carousel-caption p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}
.logo a {
    font-size: 22px;
}
.carousel-item img {
    height: 280px;
}
.subheading {
    font-size: 35px;
}
.about-content .leftheading {
    font-size: 25px;
    line-height: 35px;
}
}

@media (max-width:375px){
.top-contact i {
    padding-right: 5px;
}
.top-contact p a {
    font-size: 13px;
}
.smoicons {
    column-gap: 2px;
}
.smoicons li a {
    width: 28px;
    height: 28px;
    font-size: 12px;
}
.smoicons img {
    width: 14px;
}
.time-duration h3 img {
    display: none;
}
.time-duration {
    row-gap: 5px;
}
.time-duration h3 {
    font-size: 17px;
    line-height: 27px;
    text-align: center;
}
.nav {
    column-gap: 8px;
    row-gap: 8px;
}
.carousel-control-prev {
    left: 10px;
}
.carousel-control-next {
    right: 10px;
}
.carousel-control-next, .carousel-control-prev {
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
}
}

/* FEATURES DETAILS CSS */

.features-sidebar {
    position: sticky;
    top: 0;
}
.features-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 3px;
}
.features-info {
    background: #f5f9fd;
    padding: 25px;
    margin-top: 10px;
    border-radius: 3px;
    border: 1px solid #ededed;
}
.features-info h3 {
    font-weight: 700;
    font-size: 25px;
    color: var(--black);
}
.features-info h4 {
    color: var(--black);
    font-weight: 700;
    padding-left: 20px;
    position: relative;
}
.features-info h4:before {
    position: absolute;
    top: 9px;
    left: 0;
    content: '';
    background: var(--primary);
    height: 10px;
    width: 10px;
    border-radius: 30px;
    outline: 3px solid #f47b2047;
}
.features-sidebar li a {
    padding: 15px 15px 15px 40px;
    display: block;
    background: linear-gradient(90deg, #193775, #f39c12);
    color: var(--white);
    border-bottom: 1px solid #ffffff21;
    position: relative;
    margin-bottom: 3px;
    border-radius: 3px;
}
.features-sidebar li a:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: #ffffff26;
    content: '';
    border-radius: 0 50px 50px 0;
}
.sidebar-content {
    background: #f5f9fd;
    padding: 25px;
    margin-top: 10px;
    border-radius: 3px;
    border: 1px solid #ededed;
}
.sidebar-content h3 {
    font-weight: 700;
    color: var(--black);
}
.question {
    padding-top: 30px;
}
.facts-item li {
    line-height: 35px;
    padding-left: 30px;
    position: relative;
    color: #454a50;
    font-size: 15.5px;
}
.facts-item li:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '\f0a9';
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
    font-weight: 700;
}


/* HOW IT WORKS */

.worksthumb img {
    width: 100%;
    height: auto;
}
.workscontent .leftheading {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 10px;
}
.workscontent h3 {
    font-weight: 600;
    background: -webkit-linear-gradient(90deg, #193775, #193775, #f39c12, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Services Details */

.sidebar-contactdtls {
    background: var(--gradient);
    margin-top: 15px;
    border-radius: 6px;
}
.sidebar-inquiry, .sidebar-contactdtls {
    padding: 25px;
}
.relatedsrvc {
    background: #f5f5f5;
    padding: 50px 0;
    margin: 50px 0;
}
.relatedsrvc-item {
    background: var(--white);
    padding: 15px;
    text-align: center;
    height: 100%;
    border-radius: 6px;
    border: solid 1px #ddd;
}
.relatedsrvc-item h3 {
    margin: 20px 0 10px;
    font-weight: 600;
}
.relatedsrvc-item img {
    height: 240px;
    object-fit: cover;
}
.relatedsrvc-item p {
    margin: 0;
}
.servicesgallery .slick-slide{
	margin:0 10px;
}
.servicesgallery-item img {
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}
.videos-item  video {
    height: 300px !important;
    object-fit: cover !important;
    outline-offset: 0 !important;
}
.sidebar-inquiry {
    background: #fbfdff;
    border-radius: 6px;
}
.sidebar-inquiry input, .sidebar-inquiry textarea, .sidebar-inquiry select {
    border: solid 1px #00000038;
}
.sidebar-inquiry input[type="submit"] {
    margin-top: 8px;
    background: var(--primary);
    border: none;
}
.mapmarker {
    height: 100%;
}
.mapmarker iframe {
    width: 100%;
    height: 100%;
}
.cntbnr img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 25px;
}
.contactus-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
    border-bottom: solid 1px #eee;
    padding-bottom: 12px;
}
.sidebar-contactdtls .contactus-cnt h5 {
    font-size: 17px;
    margin-bottom: 5px;
}
.sidebar-contactdtls .contactus-details i {
    color: var(--white);
}
.contactus-details i {
    font-size: 25px;
    margin-right: 30px;
    color: #2e3191;
    height: 35px;
    width: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sidebar-contactdtls .contactus-cnt p {
    margin: 0;
}
.sidebar-contactdtls .contactus-cnt h5, .sidebar-contactdtls .contactus-cnt p, .sidebar-contactdtls .contactus-cnt ul li, .sidebar-contactdtls .contactus-cnt a {
    color: #fff;
}
.sidebar-contactdtls .contactus-details {
    border-bottom: solid 1px #ffffff3b;
}
.sidebar-contactdtls .contactus-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.page-sidebar {
    position: sticky;
    top: 0;
}
.page-sidebar h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 22px;
}
.sidebar-contactdtls h3{
color:var(--white);
}
.details-content {
    background: #ffffffc9;
    padding: 20px;
    border-radius: 12px;
    position: sticky;
    top: 0;
    backdrop-filter: blur(5px);
}
.details-content p{
text-align: justify;	
}
.details-banner img, .details-banner iframe {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Gallery  */

.ourgallery {
    padding: 50px 0;
    background: #e5f3f3;
    border-radius: 0 0 50px 50px;
}
.envira-lazy {
    border-radius: 20px !important;
}
.envira-gallery-item a img {
    transition: transform 0.3s ease;
}
.envira-gallery-item a:hover img {
	 filter: grayscale(1);
}


/* CONTACT US PAGE */

.contact-list {
    background: var(--gradient);
    padding: 28px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}
.contact-list:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: url(../images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.4;
	z-index: -1;
}
.contact-info span, .contact-info a {
    color: var(--white);
}
.contact-list .contact-item:last-child {
    margin: 0;
}
.contact-item {
    background: #ffffff1c;
    padding: 24px;
    border: 1px solid #ffffff33;
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
    transition: .5s;
}
.contact-item:hover {
    background: var(--white);
}
.contact-item:hover .contact-info span, .contact-item:hover .contact-info a {
    color: #000;
}
.contact-item i {
    background: var(--primary);
    height: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-size: 20px;
	position:inherit !important;
}
.contact-info span {
    display: block;
    font-weight: 500;
    font-size: 22px;
}
.contact-form {
    padding: 25px 25px 22px;
    border: 1px solid #0066b01c;
    border-radius: 3px;
    background: #ffffff1f;
    backdrop-filter: blur(5px);
}
.contact-form h3 {
    font-weight: 600;
    background: -webkit-linear-gradient(90deg, #193775, #193775, #f39c12, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-form input, .contact-form textarea {
    border: solid 1px #0066b030;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
}
.contactus h3 {
    font-size: 30px;
    margin-bottom: 15px;
}
.contact-form input[type="submit"] {
    margin: 0;
    padding: 10px 35px;
    border: none;
    letter-spacing: 1px;
}
.contact-form textarea {
    height: 90px;
    margin: 0;
}
.googlemap {
    padding-top: 30px;
}
.contactaddr {
    margin-top: 60px;
}
.contactaddr-item {
    border: solid 1px #ddd;
    padding: 25px;
    border-radius: 6px;
	display: flex;
    align-items: center;
    column-gap: 20px;
}
.contactaddr-item i {
    font-size: 25px;
    border: solid 2px var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary);
}
.contactaddr-item p {
    width: 100%;
    margin: 0 auto;
}
.contactaddr-item h4 {
    margin: 0 0 6px;
}


.signup {
    background: #f7f7f7;
    padding: 45px 0;
}
.signup .row {
    background: var(--white);
    padding: 15px;
    border-radius: 3px;
    margin: 20px 0;
}
.signup .row:nth-child(even) {
    flex-direction: row-reverse;
}
.signup .row:nth-child(even) .signup-content{
	padding-left:0;
}
.signup img {
    border-radius: 10px 100px 10px 10px;
    height: 300px;
    object-fit: cover;
}
.signup-content {
    padding-left: 20px;
}
.signup-content h3 {
    font-weight: 700;
}
.signup-content ul {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
}
.signup-content li {
    background: #2f416c12;
    padding: 3px 20px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 15px;
}
.note-content {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f47b2033;
}
.note-content h3 {
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.note-content li {
    color: #454a50;
    font-size: 16px;
    line-height: 32px;
	position:relative;
	padding-left:20px;
}
.note-content li:before {
    position: absolute;
    top: 11px;
    left: 0;
    content: '';
    background: linear-gradient(90deg, #193775, #f39c12);
    height: 9px;
    width: 9px;
    border-radius: 30px;
    outline: 3px solid #87878745;
}
.signin-item {
    box-shadow: inset 0 0 30px #253c7029;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}
.signin-item img {
    width: 90px;
}
.signin-item h3 {
    font-weight: 600;
    color: #000;
    margin: 10px 0;
}
.signin-item ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 15px;
}
.signin-item li {
    border: 1px solid #de921b47;
    padding: 2px 20px;
    border-radius: 6px;
    font-weight: 500;
}

/* LIVE DEMO CSS */

.meating .row {
    row-gap: 22px;
}
.meating-item {
    background: #f7f7f7;
    padding: 25px;
    text-align: center;
    border: 1px solid #ededed;
    border-radius: 15px;
}
.meating-item img {
    width: 75px;
}
.meating-item h3 {
    color: var(--black);
    font-weight: 600;
    margin: 15px 0 10px;
}
.meetingdtl iframe {
    border-radius: 20px;
}
.meetingdtl ul {
    column-gap: 10px;
    margin-top: 20px;
}

.announcement {
    box-shadow: inset 0 0 30px #253c7014;
    padding: 30px;
    border-radius: 6px;
    background: #f9f9f9;
}
.announcement h3 {
    font-weight: 700;
    color: var(--black);
}
.announcement li {
    position: relative;
    color: #454a50;
    line-height: 35px;
    padding-left: 20px;
}
.announcement li:before {
    position: absolute;
    top: 12px;
    left: 0;
    content: '';
    background: linear-gradient(90deg, #193775, #f39c12);
    height: 9px;
    width: 9px;
    border-radius: 30px;
    outline: 3px solid #87878745;
}
/* Gallery */

.gallery h3 {
    font-size: 23px;
    font-weight: 600;
    background: var(--gradient);
    width: fit-content;
    margin: 35px auto 20px;
    color: var(--white);
    padding: 5px 25px;
    border-radius: 6px 6px 20px 0;
}

.details-content ul li {
    list-style-type: disc;
    line-height: 30px;
}
.details-content ul {
    padding-left: 15px;
    margin-bottom: 15px;
}
.videos iframe, .videos video {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    outline: solid 2px var(--secondary);
    outline-offset: 5px;
    background: #111;
}
.videos .row {
    row-gap: 25px;
}

/* Certificates */

.certificates-item {
    border: solid 1px var(--primary);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 3px 5px 2px var(--primary);
    transition: all ease-in-out .5s;
}
.certificates-item:hover {
    transform: scale(1.04);
    border: solid 1px var(--secondary);
    box-shadow: 3px 5px 2px var(--secondary);
}
.certificates-item img {
    height: 400px;
    object-fit: contain;
    width: 100%;
    border-radius: 20px;
}

.certificates .row {
    row-gap: 25px;
}

.projects ul#pills-tab {
    justify-content: center;
    margin-bottom: 40px;
}
.projects ul#pills-tab {
    justify-content: center;
    margin-bottom: 40px;
}

.menu-list {
    border: solid 1px #ddd;
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
	height: 100%;
}

.menu-list img {
    border-radius: 10px;
}
.secondary-container.portdtls.detailspage {
    background: url(https://i.pinimg.com/originals/e4/2b/3d/e42b3dd26054ca3dc2e266271d1b3ad8.jpg) center / cover;
    background-attachment: fixed;
}
.projects .row {
    row-gap: 25px;
}
.projects button.nav-link {
    font-family: "Manrope", serif;
    color: #fff;
}
.homecrtfcts.certificates {
    background: url(https://gfintegrity.org/wp-content/uploads/2020/07/Image-via-Shuttershock-scaled.jpg) center / cover;
    padding: 60px 0 75px;
    background-attachment: fixed;
}
.homecrtfcts.certificates .heading {
    color: var(--white);
}
.homecrtfcts.certificates .certificates-item img {
    width: 100%;
}
.homecrtfcts.certificates .slick-slide {
    margin: 0 8px;
}
.homecrtfcts.certificates .certificates-item {
	background:var(--white);
    margin-bottom: 10px;
}
.details-content h3 {
    font-size: 25px;
    color: var(--primary);
    border-left: solid 3px var(--primary);
    padding-left: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin: 20px 0 15px;
}
.career img {
    width: 100%;
    height: 100%;
	border-radius: 10px;
}
.careerform {
    background: #f8f8f8;
    padding: 25px;
    height: 100%;
    border-radius: 10px;
}
.careerform input[type="file"] {
    margin-bottom: 20px;
}
.details-content h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 25px;
}
.details-content h2:after {
    content: '';
    border-bottom: solid 3px var(--secondary);
    width: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.brnchhlght {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 !important;
}
.brnchhlght li {
    border: solid 1px var(--primary);
    list-style-type: none !important;
    padding: 15px;
    border-radius: 6px;
    transition: all ease-in-out .5s;
    background: #fff;
}
ul.brnchhlght br {
    display: none;
}
.details-content h4 {
    font-weight: 600;
    color: var(--primary);
}
.brnchhlght li:hover {
    background: var(--gradient);
    color: #fff;
}
.brnchhlght li:hover strong{
color: #fff;	
}
ul.brnchhlght li strong {
    display: block;
    padding-bottom: 10px;
    font-size: 20px;
    color: var(--primary);
}

.slick-track {
    padding: 10px 0;
}
.certificateslogo-item img {
    aspect-ratio: 1/.4;
    object-fit: contain;
}
.certificateslogo-item {
    border: solid 1px #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    box-shadow: 2px 6px 5px #00000057;
}
.certificateslogo {
    padding: 60px 0;
    background: var(--gradient);
}


.working-process {
    text-align: center;
    position: relative;
    padding: 70px 0 50px;
    background: linear-gradient(#000000d4, transparent), url(https://cloudfront-us-east-2.images.arcpublishing.com/reuters/QDX36AVSOVLALCTXJ6Q5BEAEQ4.jpg);
    background-attachment: fixed;
    background-size: cover;
}
/* Subheading */

.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Heading */

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}

/* Steps container */
.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    padding: 40px 0;
}

/*  
.process-steps::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 2px;
    border-top: 2px dotted #ccc;
    z-index: 0;
}
*/
.step {
    background: #ffffff0a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.step p {
    color: var(--white);
}
.step:hover {
    transform: translateY(-5px);
}
.icon-circle {
    width: 120px;
    height: 120px;
    border: 2px dashed var(--secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff24;
}
.step-number {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icons */

.icon-circle img {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

/* Step titles */

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 12px;
    color: var(--secondary);
}

/* Responsive */

@media (max-width: 991px) {
    .process-steps {
        flex-direction: column;
        gap: 60px;
    }

    .process-steps::before {
        display: none;
    }
.step {
    width: 100%;
    clip-path: inherit;
}
.modalpopup .modal.show .modal-dialog {
    width: 92%;
}
.row {
    row-gap: 15px;
}	
	
	
		

div#mega-menu-wrap-primary {
    display: none !important;
}	
}

@media (max-width: 768px) {

.brnchhlght {
    grid-template-columns: repeat(1, 1fr);
}	
.mapmarker iframe {
    height: 350px;
}
.secondary-container.clients .row {
    row-gap: 0;
}	
.secondary-container.about-us .about-content {
    padding: 15px;
}	
.teamitem figure {
    height: 250px;
}	
header {
    position: sticky;
    top: 0;
    background: #fff;
}
.mainslider video {
    height: 50vh;
}	
	
	
.whyusitem {
    clip-path: inherit;
}
.prdctitem h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 26px;
}	
.ourbranches-item h3 {
    font-size: 22px;
}	
ul, li, a {
    line-height: 21px;
    font-size: 15px;
}
p {
    font-size: 15px;
	line-height: normal;
}
header img {
    width: 70px;
}
.mainmenu.fixed {
    position: relative;
    background: var(--white);
}
.whychoose .col-lg-3 {
    width: 50%;
}	
.whychoose .col-lg-3:nth-child(5), .whychoose .col-lg-3:nth-child(6){
    width: 50%;
}
.whychoose .col-lg-3:nth-child(7), .commitment.testimonial .col-lg-4:last-child{
    width:100%;
}
.partner img, .partner iframe {
    height: 320px;
    object-fit: cover;
}
footer .col-lg-4 {
    padding-left: 15px !important;
}
.row {
    row-gap: 20px;
}
.certificates-item img {
    height: 170px;
}	
.homebranches.ourbranches .row {
    row-gap: 0;
}	
.mainmenu .col-sm-2, .mainmenu .col-sm-10 {
    width: 50%;
}	
}