

    .counter-container {
      background-color: #fff;
      padding: 40px 60px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      text-align: center;
    }

    .counter-title {
      font-size: 14px;  
    color: #333;
    /* margin-bottom: 20px; */
    font-weight: 700;
    /* margin: 0px 0 0px; */
    font-family: 'Roboto', sans-serif;
    }

    .counter-number {
      font-size: 14px;
      color: #007bff;
      font-weight: bold;
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .footer {
      margin-top: 25px;
      font-size: 14px;
      color: #777;
    }
 
	
@media screen and (min-width: 1400px) {
    .container {
        width: 1370px!important;
    }
}

 
        #loader {
            display: none;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 10px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
 
    .download-btn {
      position: fixed;
      right: 38px; /* ensures it's visible */
      top: 50%;
      transform: rotate(-90deg);
      transform-origin: right top;
      background-color: #d0021b;
      color: white;
      padding: 4px 25px;
      text-decoration: none;
      font-weight: bold;
      font-family: Arial, sans-serif;
      border-radius: 25px;
      border: 2px solid black;
      z-index: 1000;
    }

    .download-btn:hover {
      background-color: #b00118;
    }
 
        #loader {
            display: none;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 10px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
   

html {
  scroll-behavior: smooth;
}
body {
    color:#000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
     letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
    line-height: 1.7;
        font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.5s;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

a:focus {
    color: #fff;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
}

/*img {
    max-width: 100%;
}*/

button:focus,
input:focus {
    outline: none;
}

:-webkit-input-placeholder {
    color: inherit;
}

/*.section-padding {
    padding: 48px 0;
}*/

p {
    margin: 0 0 15px;
    font-family: 'Roboto', sans-serif;
}


/***** conscare button *****/

.conscare-btn {
    border: 1px solid #040404;
    border-radius: 27px;
    color: #e31e24;
    font-weight: normal;
    margin: 0 10px 20px 0;
    padding: 5px 15px;
    /* font-family: 'Josefin Sans', sans-serif; */
    font-weight: 600;
}

.non-bg-btn {
    background-color: transparent;
    color: #FAC012;
}

.hvr-bounce-to-right:before {
        background: #1a1a1a none repeat scroll 0 0;
    border: 1px solid #1a1a1a !important;
    border-radius: 24px;
}

.hvr-bounce-to-left:before {
    background: #FAC012 none repeat scroll 0 0;
}


/***** title *****/

.title h2 {
    display: inline-block;
    font-size: 28px;
    position: relative;
    padding: 0 0 5px;
    line-height: 45px;
    color: #333;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}
.title h2:before {
    border: 1px solid #f15330;
    bottom: 0;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 115px;

}

.title p {
    padding: 18px 0;
    margin: 0;
    color: #1d2a47;
    font-size: 16px;
    font-weight: 600;
}


/***** page title  *****/

.page-title-area {
    background: url('../img/about-bnr.jpg') no-repeat  center top / cover;
    padding: 175px 0;
}

.page-title {
    color: #fff;
    font-weight: 600;
/*    text-transform: uppercase;*/
    font-size: 18px;
}

.page-title .title h2 {
    color: #fff;
    margin-bottom: 5px;
    padding: 0 0 5px;
}

.page-title h1 {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    color: #fff;
}
.breadcrumb>li a{
   text-transform: capitalize;
}
.page-title i.fa {
    margin: 0 3px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

ul.breadcrumb li a {
    color: #f0412c;
}

.breadcrumb > .active {
    color: #fff;
}

/***** Scroll top  *****/

#scrollUp {
    background: #f03f2b none repeat scroll 0 0;
    border-radius: 3px;
    bottom: 56px;
    font-size: 20px;
    padding: 5px 0;
    right: 50px;
    transition: all 0.5s ease 0s;
    z-index: 999 !important;
}

#scrollUp:hover {
    background-color: #272727;
}

#scrollUp:hover .hvr-icon-bob:before {
    color: #FAC012;
}

.hvr-icon-bob:before {
    animation-delay: 0s, 0.3s;
    animation-direction: normal, alternate;
    animation-duration: 0.3s, 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1, infinite;
    animation-name: hvr-icon-bob-float, hvr-icon-bob;
    animation-timing-function: ease-out, ease-in-out;
    color: #fff;
    content: "";
    font-size: 30px;
    right: 12px;
    top: -26px;
    transition: all 0.5s ease 0s;
}

/***** preloader *****/

@keyframes loader {
    0%,
    10%,
    100% {
        width: 80px;
        height: 80px;
    }
    65% {
        width: 150px;
        height: 150px;
    }
}

@keyframes loaderBlock {
    0%,
    30% {
        transform: rotate(0);
    }
    55% {
        background-color: #ffd840;
    }
    100% {
        transform: rotate(90deg);
    }
}

@keyframes loaderBlockInverse {
    0%,
    20% {
        transform: rotate(0);
    }
    55% {
        background-color: #ffd840;
    }
    100% {
        transform: rotate(-90deg);
    }
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%) rotate(0deg) translate3d(0, 0, 0);
    animation: loader 0.9s infinite ease-in-out;
}

.loader span {
    position: absolute;
    display: block;
    width: 200px;
    height: 200px;
    
    animation: loaderBlock 4.9s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    top: 0;
    left: 0;
}

.loader span:nth-child(2) {
    top: 0;
    right: 0;
    animation: loaderBlockInverse 5.9s infinite ease-in-out both;
}

.loader span:nth-child(3) {
    bottom: 0;
    left: 0;
    animation: loaderBlockInverse 6.9s infinite ease-in-out both;
}

.loader span:nth-child(4) {
    bottom: 0;
    right: 0;
}


/*  ================================
        2. header area
    ================================ */

.top-header-area {
        background: linear-gradient(to right, #24201f 0%, #1b1e1d 100%);
    color: #fff;
    padding:4px 0px 6px;
}

.top-header-info i.fa {
    color: #fff;
    margin-right: 0px;
}

.top-header-info a {
    color: #fff;
}

.top-header-info .seprator {
    padding: 0 0px;
    color: #fff;
}

.slogan p {
    margin: 0;
    text-transform: capitalize;
}

.conscare-logo {
    padding:0px 0 0 0px;
}

.conscare-logo img {
    max-width: inherit;
}

/***** menu part *****/
.slogan{
clear:both;
}
.slogan a i{
clear: both;
    color: #000000;
    width: 35px;
    line-height: 25px;
    background-color: #fff;
    text-align: center;
    border-radius: 2px;
}
.main-menu {
    text-align: right;
}

.main-menu ul {
    display: inline-flex;
    list-style: outside none none;
}

.main-menu ul li {
    display: inline-block;
    position: relative;
}

ul li a.menu-active {
    background-color: #e31e24 !important;
    color: #fff !important;
}

.main-menu ul li a {
    color: #333;
    display: block;
    font-weight: normal;
    padding: 36px 6px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
    font-weight: 700;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

.main-menu ul li a i.fa {
    margin: 0;
    padding: 0 0 0 5px;
}


a.call-a:hover{color: #000;}

.main-menu ul li a:hover {
    background-color: #e31e24;
    color: #fff;
}

.main-menu ul li ul.drop-menu {
    display: flex;
    border-bottom: 2px solid #000000;
    left: -352px;
    opacity: 0;
    position: absolute;
    top: 150%;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    z-index: 999;
    width: 1073px;
}
.main-menu ul li ul.drop-menu li {
    display: block;
    /* width: 250px; */
}
.main-menu ul li ul.drop-menu li a {
    background-color: #fff;
    color: #000000 !important;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}

.main-menu ul li ul li a:hover {
    background-color:#e31e24;
}

.main-menu ul li:hover .drop-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.responsive-menu-wrap {
    display: none;
}

/***** search part *****/

.search-box {
    position: absolute;
    right: 0;
    top: 28%;
}

.search-box:after {
    background-color: #fac012;
    border-radius: 5px;
    color: #fff;
    content: "";
    font-family: fontawesome;
    padding: 6px 15px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.search-box form {
    position: relative;
    z-index: 9;
}

.search-box input[type="search"] {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    cursor: pointer;
    height: 35px;
    padding-left: 15px;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    transition: all 0.2s ease 0s;
    width: 45px;
}

.search-box input[type="search"]:focus {
    border: 1px solid #ddd;
    text-indent: 0;
    width: 200px;
    background: #fff;
    cursor: text
}


/*  ================================
        3. slider area
    ================================ */

.slider-area {
    background-color: #272727;
}

.single-slider {
    position: relative;
}

.single-slider:before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.slider-table {
    display: table;
    height: 100vh;
    width: 100%;
}

.slider-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.slider-info h2 {
    color: #FAC012;
    font-size: 45px;
    line-height: 1.23;
}

.slider-info h2 span {
    color: #fff;
}

.slider-info p {
    color: #fff;
    margin: 30px 0 15px;
}

.social-link {
    padding: 30px 0;
}

.social-link i.fa {
    border: 1px solid #FAC012;
    color: #fff;
    height: 35px;
    line-height: 35px;
    width: 35px;
    transition: all 0.5s ease 0s;
    border-radius: 50%;
    text-align: center;
}

.social-link i.fa:hover {
    background-color: #FAC012;
    border-radius: 0;
}

.slider-wraper .owl-nav div,
.single-service-slider .owl-nav div {
    background-color: #FAC012;
    color: #fff;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    width: 40px;
    transition: all 0.5s ease 0s;
}

.slider-wraper div.owl-prev,
.single-service-slider div.owl-prev {
    left: auto;
    opacity: 0;
    left: -1%;
}

.slider-area:hover .slider-wraper div.owl-prev,
.single-service-slider:hover.single-service-slider div.owl-prev {
    left: 3%;
    opacity: 1;
}

.slider-wraper div.owl-next,
.single-service-slider div.owl-next {
    left: auto;
    opacity: 0;
    right: -1%;
}

.slider-area:hover .slider-wraper div.owl-next,
.single-service-slider:hover.single-service-slider div.owl-next {
    right: 3%;
    opacity: 1;
}

.slider-area .owl-dot {
    background-color: #FAC012;
    border-radius: 50%;
    display: inline-block;
    height: 15px;
    margin: 0 2px;
    position: relative;
    width: 15px;
}

.slider-area .owl-dots {
    bottom: 10%;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}

.slider-area .owl-dot.active span {
    background-color: #fff;
    border-radius: 50%;
    display: block;
    height: 7px;
    position: absolute;
    width: 7px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.download-link {
    margin-top: 30px;
}

/*  ================================
        5. about us area
    ================================ */
.left-col{
width:45%;
margin: 40px 0 0 0px;
}
.right-col{
width:55%;
margin: 24px 0 0 0px;
}
.about-content {
    padding:0;
}
.about-content p {
    text-align: justify;
    line-height: 27px;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    padding-top: 18px;
    font-family: "Poppins", sans-serif;
}
.about-page-content h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-page-content h2 i.fa {
    margin-right: 5px;
    font-size: 18px;
    color: #FAC012;
}

.about-page-content p:last-child {
    margin: 0;
}

.about-top {
    margin: 0 !important;
}

.about-content-top {
    padding: 65px 0;
}

.about-content-overflow {
    margin-top: 30px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
}

/*  ================================
        6. choose area 
    ================================ */

.choose-area {
    background-color:#85c226;
    padding: 40px 0px;
}
.choose-area h2{
color: #FFFFFF; 
}
.choose-area p{
font-weight: bold;
}
.choose-part {
    box-sizing: border-box;
    display: flex;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 10px;
    transition: all 0.5s ease 0s;
}

.choose-icon {
    width: 20%;
}

.choose-info {
    padding: 0 10px;
    width: 80%;
}

.choose-icon i.fa {
    background-color: #FAC012;
    color: #272727;
    font-size: 22px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
    transition: all 0.5s ease 0s;
}

.choose-icon h2 {
    font-size: 16px;
}

.choose-info h2 {
    color: #272727;
    font-size: 16px;
    margin-bottom: 10px;
}

.choose-part:hover .choose-icon i.fa {
    border-radius: 50%;
    color: #fff;
}

.choose-part:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}


/*  ================================
        7. destination area
    ================================ */

.destination-content {
    background-color: #272727;
    overflow: hidden;
    width: 100%;
    display: flex;
}

.destination-content-left {
    height: auto;
    width: 50%;
}

.destination-img,
.destination-img .owl-stage-outer,
.destination-img .owl-stage,
.destination-img .owl-item,
.destination-img .destination-slider {
    height: 100%;
}

.destination-img .owl-nav {
    display: none;
}

.destination-img .owl-dots {
    bottom: 0;
    display: inline-block;
    height: 35px;
    left: 0;
    line-height: 40px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
}

.destination-img .owl-dot {
    background-color: #FAC012;
    border-radius: 50%;
    display: inline-block;
    height: 15px;
    margin: 0 2px;
    width: 15px;
}

.destination-img .owl-dot.active {
    background-color: #fff;
    border: 4px solid #FAC012;
}

.destination-content-right {
    padding: 50px 105px 50px 50px;
    width: 50%;
}

.destination-content-right .title h2 {
    color: #fff;
}

.destination-content-right h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 900;
}

.destination-content-right p {
    color: #fff;
}


/*  ================================
        8. service area
    ================================ */

.service-area {
    background-color: #F6F6F6;
    overflow: hidden;
}

.service-info {
    position: relative;
    width: 25%;
    overflow: hidden;
    float: left;
}

.service-info:before {
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transform: scale(0);
    transition: all 0.5s ease 0s;
    z-index: 9;
}

.service-info:hover.service-info:before {
    transform: scale(1.01);
}

.service-details {
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all 1s ease 0s;
    width: 100%;
    z-index: 9;
}

.service-details-cell {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.service-details-cell a {
    position: relative;
    top: -35px;
    transition: all 1s ease 0s;
    opacity: 0;
    color: #fff !important;
    padding: 10px;
    line-height: 1.7;
}

.service-info:hover .service-details-cell a {
    top: 0;
    opacity: 1;
}

.service-details-cell p {
    color: #fff;
    padding: 15px;
    position: relative;
    bottom: -35px;
    transition: all 1s ease 0s;
    opacity: 0;
}

.service-info:hover .service-details-cell p {
    bottom: 0;
    opacity: 1;
}

.service-info img {
    width: 100%;
}

/***** single service *****/

.single-service-area {
    background-color:#ffffff;
}

.single-service-contant h3 {
    color: #272727;
    margin: 30px 0 10px;
}

.single-service-contant blockquote {
    font-size: 16px;
    border-left: 5px solid #FAC012;
    margin: 0 30px 30px;
    padding: 0 16px;
}

blockquote p {
    padding-bottom: 0;
}

.service-link {
    margin: 30px 0;
}

.service-link a i.fa {
    padding-right: 10px;
    font-size: 16px;
    color: #FAC012;
    transition: all 0.5s ease 0s;
}

.service-link a i.fa:hover {
    color: #272727;
}

.download-link a {
    color: #222222;
    display: block;
    transition: all 0.5s ease 0s;
}

.download-link a:hover {
    text-decoration: underline;
}

.download-link a i.fa {
    color: #f75f5f;
    font-size: 16px;
    margin-left: 10px;
}

.fa.fa-file-word-o {
    color: #1071f5 !important;
}

.service-list h2 {
font-size: 22px;
    background-color: #fac012;
    text-align: center;
    padding: 5px 0 5px 0px;
    border: #ad8409 solid 1px;
}

.service-list {
    padding:0 40px;
}
.service-list iframe{
border: none;
    height: 600px;
}
.service-list ul {
    list-style: outside none none;
    margin:5px 0 0;
}

.service-list ul li {
    display: block;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #dadada #dadada currentcolor;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 1px 0;
}

.service-list ul li a {
color: #000;
    display: block;
    padding: 8px 12px 8px 12px;
    transition: all 0.5s ease 0s;
    font-weight: bold;
    font-family: Tahoma;
    font-size: 14px;
}
.service-list ul li a:before {
    content: "\f164";
    font: normal normal normal 14px/1 FontAwesome;
    padding: 0 8px 0 0px;
    color:#fac012;
}
.service-list ul li:last-child {
    border-bottom: 1px solid #dadada;
}

.service-list ul li a:hover {
    background-color: #000000;
    color: #ffbf00;
    padding-left: 12px;
}

.single-pro-content p:last-child {
    margin: 0;
}

/*  ================================
        9. client area
    ================================ */

.client-area {
    background-color:#85c226;
}
.client-area h2{
color: #FFFFFF; 
}
.client-comment-info {
    margin: 0 auto;
}

.client-comment-info .owl-nav {
    display: none;
}

.client-comments-details img {
    width: 170px !important;
    display: inline-block !important;
    border-radius: 50%;
}

.client-comments-details p {
    font-style: italic;
    margin: 30px auto;
    width:80%;
    font-weight: bold;
}

.client-comments-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-comments-details i.fa {
    color: #fac012;
}

.client-comment-info .owl-dots {
    bottom: -6px;
    display: inline-block;
    height: 30px;
    left: 0;
    line-height: 40px;
    margin: 0 auto;
    position: relative;
    right: 0;
    text-align: center;
}

.client-comment-info .owl-dot {
    background-color: #FAC012;
    border-radius: 50%;
    display: inline-block;
    height: 15px;
    margin: 0 2px;
    width: 15px;
}

.client-comment-info .owl-dot.active {
    background-color: #fff;
    border: 4px solid #FAC012;
}


/*  ================================
        10. project count area
    ================================ */

.project-count-area {
    background-color: #F6F6F6;
}

.project-count-info {
    color: #1a1a1a;
    text-align: center;
    text-transform: capitalize;
}

.project-count-info span {
    color: #1a1a1a;
    font-size: 40px;
    font-weight: 600;
}

.project-count-info h3 {
    color: #555;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 0;
}


/***** single project *****/

.project h2 {
    font-size: 22px;
    margin: 30px 0 10px;
}

.single-project-area .title h2 {
    color: #272727;
}

.related-title h1 span {
    color: #FAC012;
}

.project-list {
    background: #fac012 none repeat scroll 0 0;
    color: #272727;
    padding: 30px 15px;
}

.project-list h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.project-list li {
    list-style: outside none none;
    padding: 5px 0;
    font-weight: 600;
}

.single-pro-content h3 {
    font-size: 18px;
    margin-bottom: 30px;
}

.single-pro-content {
    margin-top: 50px;
}

/*  ================================
        11. news area
    ================================ */

.news-info:hover .news-content {
 
}

.news-content {
    padding:0px;
    margin-bottom: 20px;
    transition: 0.5s;
    text-align:center;
    background-color: #fac012;
}
.news-content p{
padding:20px;
}
.news-img {
    position: relative;
}

.news-img img {
    width: 100%;
}

.news-img:before {
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 9;
}

.post-meta {
    margin-bottom: 15px;
}

.post-meta li {
    color: #666666;
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    margin-right: 5px;
}

.post-meta li a {
    color: #666666;
}

.post-meta li .fa {
    padding-right: 3px;
}

.news-content h2 {
color: #fffefe;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
    background-color: #000;
    padding: 5px 0 5px 0px;
}
.news-content h2 a{
display: flow-root;
    color: #fac012;
    font-size: 14px;
}
.news-content a {
    margin: 0;
}

.post-date {
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: all 1s ease 0s;
    width: 100%;
    z-index: 9;
}

.post-date-info {
    background-color: #FAC012;
    color: #fff;
    font-weight: 600;
    left: 50%;
    padding: 5px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.post-date-info span {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.news-info:hover .post-date-info {
    opacity: 1;
}

.news-info:hover .news-img:before {
    transform: scale(1);
}

.latest-blog .news-info {
    margin-bottom: 50px;
}

.page-count {
    text-align: center;
}

.page-count a {
    background-color: #FAC012;
    color: #fff;
    padding: 10px 15px;
    transition: 0.5s;
    display: inline-block;
}

.page-count a:hover {
    background-color: #272727;
}

.page-count a.active {
    background-color: #272727;
}

.blog-slide .owl-nav div {
    background-color: #FAC012;
    color: #fff;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    transition: all 0.5s ease 0s;
}

.blog-slide div.owl-prev {
    left: auto;
    left: -5%;
}

.blog-slide div.owl-next {
    left: auto;
    right: -5%;
}

.single-blog-area {
    background-color: #f8f8f8;
}

.single-blog-content {
    background-color: #fff;
    padding: 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
}

.single-blog-content h2 {
    color: #272727;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 10px;
}

.blog-get-info {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-get-info i.fa {
    color: #FAC012;
    font-size: 16px;
    margin-right: 5px;
}

.blog-get-info span {
    color: #fac012;
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}

.blog-comment-wraper {
    background-color: #fff;
    padding: 30px;
    margin-top: 30px;
    float: left;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
}

.blog-comment-wraper h3 {
    border-bottom: 1px solid #FAC012;
    color: #FAC012;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    padding: 0 0 10px;
}

.comment-author {
    float: left;
    width: 15%;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author h4 {
    color: #272727;
    font-size: 14px;
    padding: 10px 0 0;
}

.reply-commnet-content .comment-author h4 {
    color: #FAC012;
}

.comment-content {
    float: right;
    margin: 0 0 30px;
    padding: 0 20px;
    width: 85%;
}

.comment-content p {
    margin: 15px 0;
}

.comment-content a {
    color: #FAC012;
    float: right;
    font-weight: 700;
}

.comment-content a i.fa {
    margin-left: 5px;
    color: #FAC012;
}

.reply-commnet-content {
    overflow: hidden;
    padding-left: 110px;
    width: 100%;
}

.comment-content span {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
    margin-right: 15px;
    text-transform: capitalize;
}

h3.comment-heading {
    color: #4c4c4c;
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.comment-form {
    float: left;
}

.comment-input-form {
    float: left;
    overflow: hidden;
    padding-right: 20px;
    width: 50%;
}

.comment-input-form:nth-child(2) {
    padding-right: 0;
}

.comment-input-form input {
    background-color: #e3e3e3;
    border: 0 none;
    color: #777;
    height: 50px;
    padding: 0 20px;
    width: 100%;
}

.comment-textarea {
    float: left;
    width: 100%;
}

.comment-textarea textarea {
    background-color: #e3e3e3;
    border: 0 none;
    color: #777;
    font-weight: 400;
    height: 200px;
    letter-spacing: 0;
    margin: 20px 0 0;
    padding: 20px;
    width: 100%;
}

.post-button {
    background-color: #FAC012;
    border: 2px solid #FAC012;
    color: #fff;
    float: right;
    letter-spacing: 1px;
    margin-top: 30px;
    padding: 10px;
    text-transform: uppercase;
}

/****** sidebar *****/

.blog-widgets {
    background-color: #f3f2f2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.1) inset;
    margin-bottom: 30px;
    padding: 25px;
    float: left;
    width: 100%;
}

h3.widget-title {
    color: #272727;
    display: block;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.blog-widgets ul {
    list-style: outside none none;
}

.blog-widgets a {
    color: #272727;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.blog-widgets a i.fa {
    color: #FAC012;
    margin-right: 10px;
}

.post {
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.5s ease 0s;
}

.post-img {
    float: left;
    width: 30%;
    padding-top: 5px;
}

.post-info {
    float: right;
    padding-left: 19px;
    width: 70%;
}

.post-info h3 {
    color: #272727;
    font-size: 14px;
    text-transform: uppercase;
}

.post-info p {
    color: #777;
    font-weight: 400;
    margin: 5px 0 0;
}

.keywords span {
    border: 1px solid #ccc;
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
}

.widget-padding {
    background-color: #f3f2f2;
    margin-bottom: 30px;
    padding: 20px 25px 30px;
}

span.widget-title {
    color: #1a1a1a;
    display: block;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.widget-search form {
    display: block;
    position: relative;
}

.widget-search input {
    background-color: #f3f2f2;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 16px;
    height: 30px;
    padding: 10px;
    width: 93%;
}

.widget-search .sub_search {
    background-color: transparent;
    border: 0 none;
    color: #c3c3c3;
    font-size: 20px;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translate(0px, -50%);
}

.widget-category ul {
    list-style: outside none none;
}

.widget-category a {
    color: #1a1a1a;
    display: inline-block;
    padding: 10px;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.category-active a {
    background-color: #FAC012;
    color: #fff;
}

.widget-category ul li a:hover {
    background-color: #FAC012;
    color: #fff;
}

.blog-widgets ul li a:hover.blog-widgets a span {
    color: #1a1a1a !important;
}

/*  ================================
        12. brand area
    ================================ */

.brand-area {
    background-color:#fac012;
    padding: 32px 0 0 0px;
}

.brand-bg {
    background-color: #fff;
}

.slick-prev:before {
    color: #272727;
    content: "";
    font-family: fontawesome;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-next:before {
    color: #272727;
    content: "";
    font-family: fontawesome;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-arrow {
    border: 1px solid #FAC012;
    height: 35px;
    width: 25px;
    text-align: center;
}


/*  ================================
        13. footer area
    ================================ */

.footer-area {
background-color:#000000;
    position: relative;
}

.footer-area:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, .8);
}

.footer-widgets img {
    width: 200px;
    margin-bottom: 40px;
}

.footer-widgets p {
    color: #fff;
}

.footer-widgets h2 {
color: #fac012;
    font-size: 17px;
    font-weight: normal;
    margin: 20px 0 20px 0px;
    padding: 5px 0 5px 0px;
}

.footer-widgets ul {
    list-style: outside none none;
    margin: 0 0 20px;
}

.footer-widgets ul li {
margin-bottom: 0;
    padding-left: 0px;
    position: relative;
    border-left: #827f7f solid 1px;
}

.footer-widgets ul li:before {
content: "\f068";
    font: normal normal normal 14px/1 FontAwesome;
    padding: 0 8px 0 0px;
    color: #827f7f;
}

.footer-post ul li {
    padding: 0;
    margin-bottom: 30px;
}

.footer-post ul li:before {
    display: none;
}

.footer-post ul li a {
    margin-bottom: 8px;
}

.address-wid ul li {
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
    color: #e0e0e0;
border: none;
}

.address-wid ul li i.fa {
    color: #fac012;
    left: 0;
    position: absolute;
    top: 5px;
}

.address-wid ul li:before {
    display: none;
}

.footer-widgets ul li a {
    color:#e0e0e0;
    display: inline-block;
}

.footer-widgets ul li a:hover {
    color: #FAC012;
}

.subscribe-box {
    border: 2px solid #FAC012;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    padding: 20px 10px;
    width: 100%;
}

.subscribe-box input {
    background-color: #FAC012;
    border: 0 none;
    color: #fff;
    float: left;
    padding: 0 20px;
    width: 70%;
    height: 38px;
}

.subscribe-box .conscare-btn {
    border-radius: 0;
    float: right;
    height: 38px;
    line-height: 0;
    margin: 0;
    padding: 0;
    width: 28%;
}

.footer-social-link {
    margin: 30px 0 0;
}

.footer-social-link a i.fa {
    background-color: #FAC012;
    color: #fff;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 30px;
    border: 1px solid #FAC012;
    border-radius: 50%;
    margin-right: 2px;
}

.footer-social-link a i.fa:hover {
    border-radius: 5px;
}

.main-footer-area {
background-color: #212020;
    padding: 12px 0;
    z-index: 99;
    position: relative;
    border-top: #313131 solid 1px;
}

.copy-right p {
    color: #fff;
    margin: 0;
    text-transform: capitalize;
}

.copy-right p span,
.copy-right p a {
    color: #FAC012;
    font-weight: normal;
}


/*  ================================
        15. team area
    ================================ */

.team-info {
    overflow: hidden;
    transition: all 0.5s ease 0s;
}

.team-info:hover {
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.join-info .title {
    padding: 0;
}

.join-info .title p {
    padding: 20px 0;
}

.join-info a.conscare-btn {
    margin: 0 10px 0 0;
}

.member-img {
    position: relative;
}

.member-img img {
    height: 100%;
    width: 100%;
}

.single-details {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 1s ease 0s;
    width: 100%;
    text-align: center;
}

.details-overflow {
    background-color: #fac012;
    height: 100%;
    left: 0;
    position: absolute;
    top: -50%;
    transition: all 1s ease 0s;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.team-info:hover .details-overflow {
    top: 0;
    opacity: .7;
}

.single-details a {
    display: inline-block;
    left: 50%;
    position: absolute;
    top: -50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.team-info:hover .single-details a {
    opacity: 1;
    top: 50%;
}

.single-details a i.fa {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    height: 40px;
    line-height: 40px;
    transition: all 0.5s ease 0s;
    width: 40px;
    font-size: 18px;
}

.single-details a i.fa:hover {
    background-color: #fff;
    border-radius: 5px;
    color: #FAC012;
}

.member-info {
    background-color: #F6F6F6;
    padding: 20px 15px;
}

.member-info h3 {
    color: #272727;
    font-size: 16px;
}

.member-info span {
    display: block;
    margin: 0 0 10px;
}

.member-info i.fa {
    color: #FAC012;
}

.member-info p {
    margin: 10px 0 15px;
}

.member-info h4 {
    font-size: 14px;
}

.member-info h4 span {
    color: #FAC012;
    margin-left: 5px;
    display: inline-block;
}

.member-info a.conscare-btn {
    margin-top: 20px;
}

.become-member-area {
    background-color: #F6F6F6;
}


/***** single member details *****/

.single-member-img {
    margin: 78px 0;
}

.single-member-content {
    border: 2px solid #FAC012;
    padding: 30px 10px;
    overflow: hidden;
}

.single-member-content .member-info {
    padding: 0;
    width: auto;
    background-color: transparent;
}

.single-member-content .member-info span {
    display: inline-block;
    margin-right: 20px;
}

.social-link.mem-link {
    padding: 0;
}

.social-link.mem-link i.fa {
    color: #FAC012;
}

.social-link.mem-link i.fa:hover {
    color: #fff;
    border-radius: 5px;
}

.info-bottom {
    float: left;
    margin: 20px 0;
}

.info-bottom h4 {
    display: inline-block;
    font-size: 14px;
    margin: 15px 10px 0 0;
}

.info-bottom h4 span {
    color: #FAC012;
}

.biography-content h2 {
    color: #FAC012;
    font-size: 26px;
    margin-bottom: 30px;
}

.skill-content {
    float: left;
    margin: 10px 0 15px;
    width: 100%;
}

.skill-progress-bar h4 {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.barfiller {
    background-color: #272727;
    height: 3px;
    width: 100%;
}

.barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
    z-index: 1;
}

.barfiller .tipWrap {
    display: none;
}

.barfiller .tip {
    margin-top: -20px;
    left: 0px;
    position: absolute;
    z-index: 2;
}

.barfiller .tip:after {
    content: "";
    display: block;
    position: absolute;
    left: 9px;
    top: 100%;
    z-index: 9
}

.barfiller .fill {
    background-color: #FAC012 !important;
}

.member-resume {
    background-color: #F6F6F6;
}

/*  ================================
        16. portfolio Part
    ================================ */

.portfolio-area {
    /* background: url(../img/road.png) no-repeat; */
    background-size: cover;
    background-color: #ececed;
    background-position: bottom;
    padding-top: 36px;
    padding-bottom: 15px;
}
.portfolio-active {
    background-color: #FAC012 !important;
}

.title.title-product {
    padding-bottom: 0px;
}

.iso-nav {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    text-align: center;
    z-index: 6;
}

.iso-nav ul {
    display: inline-block;
}

.iso-nav ul li {
    background-color: #222222;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    float: left;
    font-weight: 600;
    letter-spacing: 0;
    list-style: outside none none;
    padding: 15px 20px;
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

.single-project {
    float: left;
    overflow: hidden;
    position: relative;
    width: 25%;
}

.single-project img {
    height: 100%;
    width: 100%;
    transform: scale(1);
    transition: all 2s ease 0s;
}

.single-project:hover.single-project img {
    transform: scale(1.5);
}

.project-lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: 40px 30px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 1s ease 0s;
    width: 100%;
    z-index: 6;
}

.single-project:hover .project-lightbox {
    opacity: 1;
}

.project-lightbox a.conscare-btn {
    left: -80px;
    padding: 5px 20px;
    position: relative;
    transition: all 0.5s ease 0s;
    margin: 0;
    line-height: 30px;
}

.single-project:hover .project-lightbox a.conscare-btn {
    left: 0;
}

.project-lightbox a i.fa {
    bottom: 20px;
    color: #FAC012;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    right: 20px;
}

.project-lightbox h2 {
    color: #fff;
    font-size: 18px;
    left: -100px;
    margin-bottom: 15px;
    position: relative;
    transition: all 1s ease 0s;
}

.single-project:hover .project-lightbox h2 {
    left: 0;
}

/*  ================================
        17. contact us part
    ================================ */

/***** Google map part start *****/

.google-map-area {
    overflow: hidden;
}

.gmap3 {
    border: 1px dashed #C0C0C0;
    height: 500px;
}

#map {
    float: left;
    width: 50%;
}

#street {
    float: right;
    width: 50%;
}


/***** Google map part end*****/

.social-link-area {
    padding: 40px 0;
}

.social-link-area {
    background-color: #272727;
}

.contact-info-content h2 {
    font-size: 26px;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.contact-info-content p {
    margin: 20px 0 0;
}

.contact-info-content img {
    height: auto;
    width: 100%;
}

h3.contact-title {
    font-size: 18px;
    font-weight: 600;
    margin: 33px 0 10px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.contact-text-link {
    color: #777;
    display: block;
}

a.contact-text-link:hover {
    color: #FAC012;
}

.contact-form-area h2 {
    font-size: 26px;
    text-transform: capitalize;
}

.contact-form-area span {
    display: inline-block;
    margin-top: 10px;
}

.con-info {
    margin-top: 20px;
}

.con-info ul {
    margin: 0;
}

.con-info ul li {
    color: #777;
}

.con-info ul li a {
    color: #777;
    display: inline-block;
}

.con-info ul li:last-child {
    margin: 0;
}

.contact-form {
    margin-top: 25px;
}

.form-content {
    margin-bottom: 20px;
}

.form-content input {
    height: 50px;
    border-radius: 24px;
    box-shadow: 2px 4px #050505;
    border: 1px solid #000;
}

textarea {
    height: 109px !important;
    margin: 0 0 20px;
    padding: 20px 10px !important;
}

.sent-button {
    padding: 10px 47px !important;
    margin: 10px 0 0 0px;
}

.form-control:focus {
    border-color: #FAC012;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 204, 0, 0.6);
}

/*  ================================
        18. 404 part
    ================================ */

.not-found-content {
    position: relative;
}

.not-found-content > h2 {
    color: #FAC012;
    display: inline-block;
    font-size: 250px;
    position: relative;
}

.not-found-content > h2::before {
    background: rgba(0, 0, 0, 0) url("../img/404-before.html") no-repeat scroll 0 0 / contain;
    content: "";
    height: 386px;
    position: absolute;
    right: -135px;
    top: 0;
    width: 512px;
    z-index: -1;
}

.not-found-content > h2::after {
    background: rgba(0, 0, 0, 0) url("../img/404-after.html") no-repeat scroll 0 0 / contain;
    content: "";
    height: 144px;
    left: -55px;
    position: absolute;
    top: -55px;
    width: 145px;
    z-index: -1;
}

.not-found-content > span {
    background-color: #272727;
    color: #FAC012;
    font-size: 20px;
    font-weight: bold;
    left: 51%;
    padding: 10px 20px;
    position: absolute;
    text-transform: uppercase;
    top: 45%;
    transform: translate(-50%, -50%);
}

span.cd-words-wrapper {
    padding: 0 !important;
}

.not-found-content .not-found-input {
    border: 1px solid #FAC012;
    color: #272727;
    height: 50px;
    padding: 0 30px;
    width: 350px;
}

.not-found-btn {
    background-color: #272727;
    border: 0 none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    padding: 0;
    position: relative;
    text-transform: uppercase;
    width: 115px;
}

.not-found-btn.hvr-bounce-to-left::before {
    background: #FAC012 none repeat scroll 0 0;
    border: 1px solid #FAC012 !important;
}

.not-found-form {
    margin: 10px 0;
    width: 100%;
}

.not-found-content ul {
    display: inline-block;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.not-found-content ul li {
    float: left;
}

.not-found-content ul li a {
    color: #272727;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0 0;
    text-transform: uppercase;
}

.not-found-content ul li a i.fa {
    color: #272727;
    margin-right: 10px;
}

.not-found-separate {
    display: inline-block;
    padding: 0 15px;
    color: #272727;
}


/*  ================================
        19. coming soon part
    ================================ */

.coming-soon-area {
    background: rgba(0, 0, 0, 0) url("../img/slider/03.html") no-repeat scroll 0 0 / cover;
    position: relative;
}

.coming-soon-area::before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.coming-soon-content {
    display: table;
    height: 100vh;
    width: 100%;
}

.coming-soon-table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100vh;
    width: 100%;
}

.coming-soon-content h1 {
    color: #fac012;
    font-size: 40px;
    margin: 16px 0;
}

.coming-soon-content h1 span {
    color: #fff;
}

.coming-soon-content h2 {
    font-size: 40px;
    color: #FAC012;
    margin-bottom: 34px;
}

#coundt-down {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

.single-count {
    border: 2px solid #FAC012;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    margin: 0 5px 28px;
    padding: 30px 0;
    width: 150px;
    height: 150px;
}

.alt-count {
    border: 1px solid #fff;
}

.single-count span {
    display: block;
    color: #FAC012;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}


/*  ================================
        20. thank you part
    ================================ */

.thank-you-content h1 {
    color: #272727;
    font-size: 30px;
    display: inline-block;
}

.thank-you-content span {
    color: #FAC012;
}

.thank-you-content span i.fa {
    border: 1px solid #FAC012;
    border-radius: 50%;
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    margin-left: 5px;
    text-align: center;
    width: 50px;
}

.thank-you-content > p {
    margin: 30px auto 46px;
    width: 65%;
}

.thank-you-from {
    display: flex;
    margin: 0 auto;
    text-align: center;
    width: 55%;
}

.thank-you-from > input {
    background-color: transparent;
    border: 1px solid #272727;
    color: #777;
    height: 60px;
    padding: 0 20px;
    width: 455px;
    margin-right: 10px;
}

.thank-you-from button {
    border-radius: 0;
    margin: 0;
    padding: 16px 40px;
}
.pro-col{
width: 19.93%;
    float: left;
    margin:20px 1px 0px 0px;
}
.space{
margin:20px 0 0px 0px;
}
.pro-col h2{
font-weight: bold;
    font-size: 14px;
    background-color: #080808;
    color: #fff;
    text-align: center;
    padding: 10px 0 10px 0px;
}
 .pro-col a{
display:block;
    color: #fac012;
    padding: 14px 0 0 0px;
    text-transform: uppercase;
}
.pro-col img{
width:100%;
}
.pro-box {
    /* width: 278px; */
    float: left;
    margin: 20px 0 10px 0px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #e31e24;
}
.pro-box img {
    width: 100%;
    padding: 0px;
}
.pro-box h2 {
    font-weight: bold;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 10px 0 10px 0px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    /* font-family: 'Montserrat', sans-serif; */
    letter-spacing: 0px;
}
.pro-box a{
    color: #fff;
}
.pro-box p{
text-align:center;
    padding: 10px;
}
.pro-01{
float:left;
margin:20px 1px 0 0px;  
text-align:center;
background-color:#FFFFFF;
}
.pro-01 img{
width:100%;
padding:20px;
}
.pro-01 h2{
background-color:#000000;
    font-size: 15px;
    text-transform: capitalize;
    padding: 5px 0 5px 0px;
    color: #ffffff;
}
.space-01{
margin:20px 0 0 0px;
}
.scroll {
  position: relative;
  width: 19.93%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color:#000000;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.scroll:hover .overlay {
  bottom: 0;
  height: 100%;
}

.text {
color: #FFFFFF;
    font-size: 15px;
    position: absolute;
    top: 12%;
    padding: 10px;
    text-align: center;
}
.news-area{
background-color: #f9f6ef;
}
.f-sub{
    margin: 0;
    padding: 0;
}
.f-space{
width: 20%;
margin: 0 0 0 40px;
}
.title span {
    display: inline-block;
    font-size: 28px;
    color: #e31e24;
    padding: 10px 0 10px 0px;
}
.title b {
    display: block;
    font-size: 20px;
    color: #000000;
    padding: 0px 0 8px 0px;
    background: -webkit-linear-gradient(#ef6c43, #c11902);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.call-a {
    font-size: 16px;
    background-color: #85c226;
    color: #ffffff;
    font-family: 'Josefin Sans', sans-serif;
    border-radius: 34px;
    padding: 8px 22px;
    margin: 42px 0px 0px;
    display: table;
    background: #e31e24;
    box-shadow: 2px 2px 10px #b7b1b1;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.text-bg{
    background-color: #fac012;
    padding: 20px 0 20px 0px;
    margin: 0 0 40px 0px;
}

.single-service-contant h2 {
    padding: 0 0 6px 0px;
    color: #020c24;
    text-transform: uppercase;
        font-size: 28px;
}

.sub-text {
    text-align: justify;
    color: #1d2a47;
    font-weight: 600;
    font-size: 15px;
    line-height: 33px;
}

.sub-text span {
    font-size: 22px;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    color: #020c24;
}


.sub-text i{
padding: 0 8px 0 0px;
    font-size: 12px;
    color: #f14c2e;
    margin: 8px 0 0 0px;
    float: left;
}
.pro-col-img {
width: 320px;
    height: auto;
    float: left;
    margin: 20px 0 0 20px;
    border: #aba5a5 solid 1px;
    border-radius: 5px;
    padding: 10px;
}
.pro-col-img img {
    max-width: 100%;
}
.right-text{
float: right;   
}
.right-text img{
float: right;
width: 50%;
}
.right-text table{
width:48%;
}
.pro-botton{
    background-color: #F5CE00;
    width: auto;
    float: right;
    color:#000000;
    padding: 5px 10px;
    font-weight: bold;
    font-family: Tahoma;
    font-size: 14px;
    border: #080808 solid 1px;
    margin: 5px 0 0 0px;
    border-right: none; 
}
.contact-bg{
    background-color:#fac012;
}
.why-choose.why-choos-bg {
background: #000000 none repeat scroll 0 0;
    padding: 60px 0 60px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
   
    margin: 0 0 0px 0px;
    background: url(../img/right-sub.png) no-repeat right;
    background-color: #fff;
}
.why-choose h2 {
        text-align: center;
    color: #020c24;
    padding: 0 50px 0 50px;
    font-size: 30px;
    text-transform: uppercase;
}
.why-choose p {
    text-align: center;
    color: #1d2a47;
    font-size: 15px;
    padding: 0 50px 0 50px;
    font-weight: 600;
}
.col-02 {
       width: 24%;
    float: left;
    margin: 20px 9px 0 0px;
    text-align: center;
    background-color: #0d1e46f5;
    padding: 28px 7px;
    height: 325px;
    /* border: #5c5c5c solid 1px; */
    box-shadow: inset 3em 2em 7em rgb(0 0 0 / 0%), 0 0 0 2px rgb(255 255 255), 0.3em 0.3em 1em rgb(0 0 0 / 30%);
    border-radius: 4px;
}
.col-02:hover{background: #ed2324;}

.col-02:hover icon i{color: #fff;}

.col-02 icon i {
    clear: both;
    font-size: 50px;
    color: #f15424;
    padding: 0 0 40px 0px;
}
.col-02 h5 {
    color: #ffffff;
    font-size: 22px;
}
.col-02 p {
       padding: 20px 0 0 0px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}
.col-002 {
height: 415px;  
}
.banner-box{
width: 100%;
height: auto;
float: left;
margin: 0 0 100px 0px;  
}
.banner-box img{
width: 100%;
}
table tr.even, table tr.alt, table tr:nth-of-type(even) {
    background: #f5f4f4;
}
.left-01{
width: 500px;
float: left;
margin: 0 0 0 0px;
}
.left-01 span{
width: 100%;
    font-size: 18px;
    padding: 28px 0 0 0px;
    float: left;    
}
.left-01 strong{
font-size: 20px;
}
.left-01 span i{
padding: 0 8px 0 0px;
color: #85c226;
}
.left-01 table{
width: 100%;
}
.left-01 tr, td{
    padding: 5px 0 5px 10px;
}
.right-01{
width: 500px;
float: right;
margin: 0 0 0 0px;
}
.pro-f{
    width: 100%;
    float: left;
    margin: 0 0 0 0px;
    padding: 70px 0 70px 0px;
    background: url(../img/bg-p.png) no-repeat right top;
    background-color: #f7f7f7;
}
.pro-f-1{
        background: url(../img/.png) no-repeat right bottom; 
    background-color: #ffffff;
}
.col-p{
    width: 49.2%;
    float: left;
    background-color: #FFFFFF;
    border: #dfdcdc solid 1px;
    padding: 21px;
    border-radius: 25px;
    box-shadow: 0px 5px 18.9px 2.1px rgb(0 0 0 / 19%);
    margin-right: 15px;
}
.col-p h5{
font-size: 20px !important;
    padding: 0 0 0 0px !important;
}
.pro-f h2{
font-size: 32px;
    line-height: 60px;
    padding: 0 0 0px 0px;
    text-transform: uppercase;
    color: #020c24;
}

.pro-f-1 p {
    color: #1d2a47;
    font-weight: 600;
    font-size: 15px;
}

.pro-f h2 span{
font-size: 16px;
    display: block;
    line-height: 20px;
    color: #000000;
}
.pro-f h5{
        font-size: 30px;
    line-height: 45px;
    padding: 0 0 106px 0px;
    text-transform: uppercase;
    color: #020c24;
}
.pro-f h5 span{
    display: block;
    text-transform: capitalize;
    font-size: 33px;
    color: #f36033;
    background: -webkit-linear-gradient(#ef6c43, #c11902);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pro-f a {
    font-size: 17px;
    float: left;
    width: 292px;
    padding: 5px 0 5px 20px;
    color: #1d2a47;
}
.pro-f a:before{
        content: '\f05d';
    position: absolute;
    font-family: FontAwesome;
    margin: 0px 0 0 -26px;
    font-size: 20px;
    font-weight: normal;
    color: #c9750e;
    background: -webkit-linear-gradient(#ef6c43, #c11902);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pro-f1 a{
font-size: 18px;
    float: left;
    width: 584px;
    padding: 5px 20px 5px 20px;
    color: #000000;
}
.form-box-1 {
    width: 100%;
    height: auto;
    float: left;
    /* background: url(../img/right-sub.png) no-repeat right; */
    background-color: #333;
}
.sub-banner {
        width: 670px;
    float: left;
    margin: 0 0 0 0px;
    height: 504px;
}

.small-form {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 38px;
    color: #FFFFFF;
    width: 480px;
    height: auto;
    float: right;
    /* background-color: #CCCCCC; */
    text-align: center;
    margin: 70px 90px 0 0px;
}
@media (min-width: 1400px){
.small-form {
    margin: 80px 90px 0 0px;
    width: 590px;
}
}
.small-form span {
    font-size: 25px;
    display: block;
    text-align: center;
    padding: 0 0 0 0px;
    text-transform: uppercase;
}
input[type="text"], textarea{
color: #464343; 
}
.small-form .submit-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 17px;
    text-align: center;
    /* line-height: 38px; */
    padding: 0;
    color: #fff;
    background-color: #101010;
    font-weight: bold;
    outline: none;
    border: none;
    margin: 0;
    width: 100%;
    /* border-radius: 5px; */
    padding: 15px 0 15px 0px;
}
.small-form b {
font-size: 55px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 10px 20px 0 20px;
}
.form-b {
    width: 100%;
    height: auto;
    margin: 10px 0 0 0px;
}
.form-b img{
width: 100%;
    height: auto;
    margin: 10px 0 0 0px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 5px 20px;
}
.form-b input{
        font-size: 15px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0 10px 10px;
    margin: 0 0 5px 0px;
    float: left;
    border: #4e4b4b solid 1px;
}
.small-form p {
    color: #FFFFFF;
    text-align: center;
    padding: 0px 0 0 0px;
    /* font-family: 'Josefin Sans', sans-serif; */
    font-size: 34px;
    line-height: 50px;
    font-weight: 500;
}
.small-form a {
font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    background-color: #000000;
    font-size: 28px;
    padding: 10px 40px 5px 40px;
    margin: 0px 0 0 0px;
    display: inline-flex;
    border-radius: 45px;
}
.enq-f{
clear: both;
}
.enq-f input{
        width: 48.7%;
    float: left;
    margin-right: 7px;
    margin-bottom: 11px;
    border-radius: 24px;
    box-shadow: 2px 3px #403c3b;
}
.enq-f select {
width: 49.7% !important;
    border: #c5bebe solid 1px;
    border: #568310 solid 1px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    padding: 9px 6px;
    border-radius: 2px;
    color: #757575;
    float: left;
}
.enq-f textarea{
    width: 100%;
    float: left;
    border: #2d2e2c solid 1px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #757575;
    height: 100px !important;
    padding: 10px 0 0 10px !important;
    margin: 0 0 14px 0px;
    border-radius: 26px;
    box-shadow: 2px 3px #403c3b;
} 
.s-e{
margin: 0 0 5px 2px !important; 
}
.text-p{
    text-align: left !important;
    padding: 32px 0 0 0px !important;
        font-size: 20px !important;
    line-height: 35px;
}
.text-p i{
    padding: 0 8px 20px 0px;
    color: #85c226;
}
 
 
.enq-fixed {
        bottom: 150px;
    right: 0;
    position: fixed;
    z-index: 9999;
    background-color: #85c227;
    border: #fff solid 2px;
    width: 44px;
    height: auto;
    padding: 0 0 10px 0;
    margin: 0px 0 30px 0;
    background: linear-gradient(to right, #010fc8 0%, #02aaf2 100%);
        border-radius: 20px 0px 0px 20px;
}
.enq-fixed a {
        writing-mode: vertical-lr;
    writing-mode: bt-lr;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 16px 0 0 8px;
    text-transform: uppercase;
    text-decoration: none;
}
.whatsapp-fixed{bottom:70px;right:10px;position:fixed;z-index:9999}
.whatsapp-fixed span i{background-color:#28c70b;width:48px;line-height:48px;text-align:center;color:#fff;font-size:30px;border-radius:50%}
.call-fixed{bottom:0;right:10px;position:fixed;z-index:9999;display:none}
.call-fixed span i{background-color:#28c70b;width:48px;line-height:48px;text-align:center;color:#fff;font-size:30px;border-radius:50%}
.captcha-1 {
margin: 0 5px 0 0;
    border: 1px solid #fff;
    float: left;
    background-color: #fff;
    height: 41px;
    border: #568310 solid 1px;
}
.captcha-col img {
padding: 7px 10px 0 10px;
    width: auto;
    margin: 0;
    vertical-align: top;
}
.captcha-col-1 {
    width: 262px;
    float: left;
    margin: 0;
}
.faq-space{
height: 60px;
width: 100%;
}
.faq {
            width: 100%;
            border: 1px solid #222;
        }
.faqitem{
border-bottom: #ffffff solid 1px;   
}
        .faqitem .header {
            padding: 15px;
            background: #85c226;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faqitem .header h4 {
            margin: 0;
            color: #ffffff;
        }

        .faqitem .header .fa.fa-minus {
            display: none;
        }

        .faqitem.jquery-accordion-active .fa.fa-minus {
            display: block;
        }

        .faqitem.jquery-accordion-active .fa.fa-plus {
            display: none;
        }

        .faqitem .content {
            padding: 15px;
            display: none;
        }
        
.key{
    font-size:15px;
}

.feature-devlopment {
        display: grid;
    grid-template-columns: 20% 80%;
    align-items: center;
    color: #fff;
}

.feature-devlopment span {
        font-size: 78px;
    margin-top: -61px;
    font-weight: 700;
    color: #f35f32;
}

section.speci-devlop {
    background: #1a1919;
    clear: both;
    padding: 39px;
}

.conttxt h3 {
    color: #fff;
    font-size: 21px;
}


.feature-devlopment-1 {
    display: block;
    grid-template-columns: 20% 80%;
    align-items: center;
    color: #fff;
}

.conttxt-1 h3 {
    padding-top: 51px;
    color: #fff;
    font-size: 45px;
    line-height: 53px;
    font-family: "Poppins", sans-serif;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}
.conttxt-2 h3 {
    color: #f25230;
    font-size: 28px;
    text-transform: math-auto;
    line-height: 42px;
    text-align: center;
    background: -webkit-linear-gradient(#ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.title-product h2 {
    display: inline-block;
    font-size: 28px;
    position: relative;
    padding: 0 0 5px;
    line-height: 45px;
    color: #000;
    text-transform: uppercase;
}

.title-product p {
    padding: 18px 0;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.whyweare h5 {
    font-size: 23px! important;
    line-height: 45px;
    padding: 0 0 106px 0px;
    text-transform: uppercase;
    color: #f25530;
    background: -webkit-linear-gradient(#ef6c43, #c11902);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-block-three .inner-box {
    position: relative;
    margin-bottom: 30px;
}
.news-block-three .image {
    position: relative;
    z-index: 9;
}
.news-block-three .image img {
    width: 100%;
}
.news-block-three .date {
        position: absolute;
    bottom: -41px;
    left: 0px;
    color: #838080;
    padding: 7px 22px;
    font-size: 13px;
}
.news-block-three .content {
    position: relative;
    background-color: #fff;
    padding: 37px 18px 22px;
    box-shadow: 0px 5px 18.9px 2.1px rgb(0 0 0 / 19%);
}

.news-block-three h3 {
        position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: -14px;
    letter-spacing: -1px;
    padding-bottom: 20px;
        line-height: 26px;
}

.news-block-three h3:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
}
.news-block-three h3 a {
    color: #000;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 21px;
}
.news-block-three .content .wrapper-box {
    transition: .5s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
}
.news-block-three .post-meta {
    position: relative;
}

.news-block-three .post-meta li {
    display: inline-block;
    margin-right: 20px;
    font-size: 15px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #000;
}
.news-block-three .link-btn {
    position: absolute;
    left: 40px;
    bottom: 45px;
    opacity: 0;
    transition: .5s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: perspective(1200px) rotateX(90deg) translateZ(-40px);
    transform: perspective(1200px) rotateX(90deg) translateZ(-40px);
}
.news-block-three .btn-style-one {
    padding: 8px 30px;
    font-size: 14px;
    background: #000;
}

.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #222;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.btn-style-one span {
    position: relative;
    z-index: 2;
}

.main-footer {
    position: relative;
    background: #fff;
    color: #fff;
}
.main-footer .widgets-section {
    position: relative;
    padding: 80px 44px 30px;
}

.main-footer .footer-column {
    margin-bottom: 30px;
}
.main-footer .footer-widget {
    position: relative;
}
.main-footer .footer-logo {
        position: relative;
    margin-top: 0px;
    margin-bottom: 33px;
}
.main-footer a {
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-footer .footer-logo img {
    display: block;
    max-width: 100%;
}
.main-footer .social-links li {
        float: left;
    margin-bottom: 0px;
    position: relative;
    /* width: 16%; */
    list-style-type: none;
    margin-left: 10px;
}
.main-footer .social-links li a {
    display: inline-block;
    line-height: 24px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease 0s;
}
.main-footer .social-links li a .icon {
    background-color: #f24f2f;
    color: #ffffff;
    height: 33px;
    line-height: 33px;
    margin-right: 5px;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 33px;
    border-radius: 24px;
    background: linear-gradient(to right, #f36133 0%, #ed2224 100%);
}

.footer-widget h4 {
    font-size: 21px;
    color: #000;
    font-weight: 500;
    /* text-transform: uppercase; */
    font-family: "Roboto", sans-serif;
}
.ftrhd-hr {
    width: 89px;
    border: 1px dashed #e31e24;
    margin-top: 11px;
    margin-left: 6px;
}
.main-footer .links-widget .list li{list-style-type: none;}

.main-footer .links-widget .list li a {
    border-bottom: 1px dashed #525151;
    color: #333;
    display: block;
    line-height: 24px;
    padding: 8px 0 8px 20px;
    position: relative;
    text-transform: capitalize;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.main-footer .links-widget .list li a:before {
    content: '\f105';
    position: absolute;
    left: 0px;
    top: 6px;
    line-height: 24px;
    font-size: 19px;
    font-family: 'FontAwesome';
    color: #fff;
}

.main-footer .contact-info {
    margin-bottom: 30px;
    margin-top: 35px;
}
.main-footer .contact-info li {
    line-height: 30px;
    margin-bottom: 15px;
    position: relative;
    color: #333;
    font-size: 15px;
    list-style-type: none;
    display: flex;
    align-items: baseline;
    font-family: "Roboto", sans-serif;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.main-footer .contact-info li .icon {
    color: #fff;
    font-size: 18px;
    left: 11px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #008cbb;
    padding-bottom: 27px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 3px;
        background: linear-gradient(to right, #000000 0%, #e31e24 100%);
}

.footer-bottom div {
    text-align: center;
    color: #f8fafc;
    padding: 5px;
    font-weight: 600;
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid #363232;
}
.did-youknow{margin-bottom: 45px;}

section.blog-section-two {
    margin-bottom: 46px;
}

.tending-sec {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;
}

.tending-sec ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
.tending-sec ul li {
           list-style-type: none;
    text-align: left;
    margin: 0px auto;
    padding: 26px;
    box-shadow: -2px -1px 42px #cbc8c8;
    width: 200px;
    height: 194px;
}
.tending-sec ul li .img-box {
    width: 75px;
    height: 75px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 10%);
    margin: 0px auto;
    display: flex;
    transition: all linear .2s;
}
.tending-sec ul li h3 {
    font-size: 16px;
    color: #020c24;
    margin: 12px 0 10px 0;
    font-weight: 600;
    text-align: center;
}

.tending-sec ul li:hover .img-box {
    background-color: #f45721;
}



.our-erikash {
    padding: 80px 0;
    background: url(../img/rickshaw-bg.jpg) no-repeat center/cover;
}
.our-erikash .our_erkikash-hed {
    text-align: center;
}
.our-erikash .our_erkikash-hed h1 {
    color: #ffffff;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.our-erikash .e-rbox {
    padding: 20px;
    color: #ffffff;
    border: 1px solid #ffffff;
    margin-bottom: 30px;
    min-height: 201px;
    transition: 0.5s ease-in-out;
}
.our-erikash .e-rbox .e-rikash-img {
    display: table-cell;
    vertical-align: top;
}
.our-erikash .e-r-info {
    display: table-cell;
    vertical-align: top;
    padding-left: 40px;
    line-height: 22px;
}
.our-erikash .e-r-info h3 {
    font-size: 21px;
    color: #ffffff;
    line-height: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}
.our-erikash .e-r-info p {
    text-align: justify;
    font-size: 15px;
    font-family: var(--lato-font);
    font-weight: 400;
}

.our-erikash .e-rbox:hover, .our-erikash .e-rbox.active {
    background: rgb(0, 103, 55);
    background: linear-gradient(to right, #e31e24 0%, #040404 100%);
}

.pb-bt-80{margin-bottom: 80px;}


.background1 {
    position: relative;
    padding: 40px;
    background: url(../images/skyrider-img/road.png)fixed;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    padding-bottom: 90px;
}
.heading {
    color: #020c24;
    font-weight: 500;
    text-transform: uppercase;
}
.line-1 {
        width: 15%;
    background: #f15330;
    border-radius: 3px;
    height: 2px;
    border: none;
}
.line-2 {
    width: 8%;
    background: #ffc107c9;
    border-radius: 3px;
    height: 3px;
    margin-top: -16px;
    border: none;
}
.why-leftbx {
    width: 100%;
    height: auto;
}
.left-text {
    text-align: right;
    width: 70%;
    height: 114px;
    line-height: 25px;
}
.rht-circle {
    border: 2px solid #f03f2b;
    width: 25%;
    height: 86px;
    float: right;
    border-radius: 50%;
    margin-top: -115px;
    box-shadow: 4px 4px 5px #1a1b1ac7;
}

.why-icon1 {
    color: rgb(240 63 43);
    font-size: 55px !important;
    margin: 11px 23px;
}
.height {
    height: 139px;
    clear: both;
}

.why-icon2 {
    color: rgb(240 63 43);
    font-size: 55px !important;
    margin: 11px 23px;
}
.grow img {
    height: 400px;
    width: 100%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.grow img:hover {
    transform: scale(1.1);
}

.why-icon3 {
    color: rgb(240 63 43);
    font-size: 57px !important;
    margin: 12px 20px;
}

.why-icon4 {
    color: rgb(240 63 43);
    font-size: 50px !important;
    margin: 14px 19px;
}


.why-leftbx h2{color: #020c24;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 26px;}

.why-leftbx p{text-align: justify;
    line-height: 30px;
    font-size: 15px;
    color: #1d2a47;
    font-weight: 600;}


.contact-map{padding: 40px 0 0px;}

.single-service-contact h2 {
    padding: 0 0 20px 0px;
    text-transform: uppercase;
}

.cnt-inf-lst {
    float: left;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    width: 100%;
}
.cnt-inf-lst>li {
    position: relative;
    padding-left: 50px;
    line-height: 24px;
    float: left;
    width: 100%;
    color: #333;
    font-size: 16px;
    /* font-weight: 500; */
    border-bottom: 1px dashed #ccc;
    padding-bottom: 18px;
    margin-bottom: 19px;
    font-family: "Roboto", sans-serif;
}

.cnt-inf-lst>li i {
    position: absolute;
    left: -7px;
    line-height: 30px;
    font-size: 22px;
    border: 1px solid #000;
    height: 45px;
    width: 45px;
    padding: 8px 11px;
    color: #e31e24;
    border-radius: 8px;
}
.cnt-inf-lst-2>li strong {
    display: block;
    font-weight: 500;
    color: #000;
    font-size: 17px;
    margin-bottom: 7px;
}

.cnt-inf-wrp .scl4 {
    margin-top: 45px;
}
.scl4 {
    display: inline-block;
}
.scl4>a {
    float: left;
    margin: 5px 0 0 5px;
    font-size: 14px;
    color: #fff;
    line-height: 35px;
    width: 35px;
background: linear-gradient(to right, #f36133 0%, #ed2224 100%);
    text-align: center;
}

.cnt-inf-wrp {
    background: #ebeaea;
    padding: 51px 28px;
    border-radius: 20px;
    height: 649px;
}


.cnt-inf-wrp>h4 {
    margin-bottom: 22px;
    font-size: 27px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    color: #333;
}
.getuch-heading {
    margin-bottom: 22px;
    font-size: 27px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    color: #333;
}
.textarea{box-shadow: 2px 4px #050505;
    border: 1px solid #000;
    border-radius: 46px;}

.send-msg{border: 1px solid #e1dddd;
    padding: 45px;
    border-radius: 28px;}


section.blog-page-two {
    margin-bottom: 46px;
    margin-top: 51px;
}














#lightbox .modal-content {
    display: inline-block;
    text-align: center;   
}

#lightbox .close {
    opacity: 1;
    color: rgb(255, 255, 255);
    background-color: rgb(25, 25, 25);
    padding: 5px 8px;
    border-radius: 30px;
    border: 2px solid rgb(255, 255, 255);
    position: absolute;
    top: -15px;
    right: -55px;
    
    z-index:1032;
}

.dealer-map-img{margin-top: 215px;}

.pro-f-2 h5 {
    font-size: 30px;
    line-height: 43px;
    padding: 0 0 49px 0px;
    text-transform: uppercase;
    color: #020c24;
}


.single-service-details {
    padding-top: 32px;
}

.pading-0px{padding-top: 0px;}

.top-header-info .mailid {
    color: #fff;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    display: none;
}


.col-pp {
    width: 22.2%;
    float: left;
    background-color: #FFFFFF;
    border: #dfdcdc solid 1px;
    padding: 21px;
    border-radius: 25px;
    box-shadow: 0px 5px 18.9px 2.1px rgb(0 0 0 / 19%);
    margin-right: 15px;
}

.pro-f-3 h2 {
    font-size: 30px;
    line-height: 60px;
    padding: 0 0 0px 0px;
    text-transform: uppercase;
    color: #020c24;
}

.whyweare-3 h5 {
    font-size: 23px! important;
    line-height: 45px;
    padding: 0 0 0px 0px;
    text-transform: uppercase;
    color: #f25530;
    background: -webkit-linear-gradient(#ef6c43, #c11902);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        text-align: center;
}
.pro-f-3 {
    width: 100%;
    float: left;
    margin: 0 0 0 0px;
    padding: 0px 0 70px 0px;
    
    background-color: #f7f7f7;
}

.pro-f3 a {
    font-size: 20px;
    float: left;
    width: 584px;
    padding: 5px 20px 5px 20px;
    color: #000000;
    font-weight: 600;
}



  span.blink {
    background-color: #000;
        padding: 3px 5px 6px;
    text-align: center;
    font-size: 12px;
    color: white;
    animation: blink 1s linear infinite;
    border-radius: 20px;
}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}


/*---------------fature css-----------------*/
.featured-services .container-box {
    padding-left: 0;
    padding-right: 0;
}
.single-what-we-do {
    padding: 0;
}

.single-what-we-do .img-wrap {
    width: 50%;
    overflow: hidden;
    position: relative;
}
.single-what-we-do .img-wrap {
    float: left;
}
.anim-5-all {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.single-what-we-do .img-wrap img {
    transform: scale(1);
}

.single-what-we-do:hover .img-wrap .overlay-1 {
    transform: scale(1.1);
}
.single-what-we-do .img-wrap .overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #222526d6;
    opacity: 1;
    z-index: 999;
    transform: scale(0.0);
}
.single-what-we-do .img-wrap .overlay-1 .link {
    display: table;
    width: 100%;
    height: 100%;
}
.single-what-we-do .img-wrap .overlay-1 a {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.single-what-we-do .content {
    padding: 0 20px 0 21px;
    position: relative;
    width: 50%;
    border: 1px solid #F5F5F5;
    padding-bottom: 0px;
}
.single-what-we-do .content {
    float: right;
}
.single-what-we-do .content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin: 17px 0 9px;
    text-transform: uppercase;
    color: #333;
    font-family: "Roboto", sans-serif;
}
.single-what-we-do .content p {
    color: #000;
    line-height: 23px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
        letter-spacing: 0px;
}
.single-what-we-do .content a {
    color: #0110c5;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}
.single-what-we-do .content a span {
    color: #000;
}
.single-what-we-do .content:after {
    background: url(../img/arrow.png) no-repeat 0 0;
    width: 34px;
    height: 220px;
    content: ' ';
    position: absolute;
    top: 0;
    left: -34px;
    z-index: 9999;
}
.fa-chain:before, .fa-link:before {
    content: "\f0c1";
}

.single-what-we-do.content-left .img-wrap {
    float: right;
}
.single-what-we-do.content-left .content {
    padding-left: 38px;
    padding-right: 38px;
}
.single-what-we-do.content-left .content {
    float: left;
}
.single-what-we-do.content-left .content:after {
    left: auto;
    right: -34px;
    transform: rotate(180deg);
}


.find-service {
    position: relative;
    overflow: hidden;
}
.sec-pdd-90-80 {
    padding: 90px 0 80px;
}

.pull-right {
    float: right !important;
}
.find-service .form-outer {
    background: #ffffff none repeat scroll 0 0;
    margin: 0px 0px;
    padding: 0px;
    position: relative;
}
.sec-title {
    position: relative;
    margin-bottom: 50px;
}
.sec-title h4 {
    color: #13137f;
    font-weight: 700;
    font-size: 29px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}
.sec-title h4 span {
    color: #008cbb;
}
.default-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.default-form input[type="text"], .default-form input[type="email"], .default-form input[type="password"], .default-form select, .default-form textarea {
    display: block;
    width: 100%;
    line-height: 24px;
    height: 46px;
    font-size: 13px;
    border: 0px solid #008cbb;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #111111;
    border-radius: 34px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    box-shadow: 0px 1px 10px #e2e2e5;
    border-bottom: 4px solid #008cbb;
}

.sec-heading h1 {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 29px;
}

section.featured-services.sec-pdd-0-58 {
    padding: 49px 0px 0px;
}
.featured-services h1 {
    padding-bottom: 40px;
}
.featured-services h1 span {
    color: #f15424;
}

.abthd h2:before {
    border: 1px solid #f15330;
    bottom: 0;
    content: "";
    left: 0;
     margin: 0; 
    position: absolute;
    right: 0;
    width: 116px;
}

.galry-ftr{padding: 15px;}


.aprv{margin-top: 70px;}

table.table-bordered.table-hover th {
    text-align: center;
    padding: 3px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    background: #0997ea;
    color: #fff;
}

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #121111;
        font-family: 'Poppins', sans-serif;
}



/*---infrastruture---------------*/
.policy-block {
    position: relative;
    padding: 20px 15px;
    background-color: #fff;
    border: 1px solid #767273;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 15px;
    border-bottom: 5px #767273 solid;
    margin-bottom: 30px;
    height: 366px;
   
}

.policy-block p {
    
    font-size: 15px;
    line-height: 23px;
    
}

section.galry-ftr.gallry {
    background: #ebf4e0;
}

.heading-pro h2{font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 28px;
    padding-bottom: 36px;}

.heading-pro h2 span {
    color: #e31e24;
}

.policy-block a {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.policy-icon {
    color: #fff;
    font-size: 40px;
    width: 80px;
    height: 80px;
    margin: auto;
    line-height: 80px;
    border-radius: 50%;
    display: block;
    text-align: center;
    background-color: #06367e;
    position: relative;
}
.policy-icon:after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    content: "";
    position: absolute;
    border: 2px dashed #084862;
    top: -5px;
    left: -5px;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
    -webkit-animation: spin 10s infinite linear;
    animation: spin 10s infinite linear;
}
.policy-text {
    margin-top: 42px;
}
.policy-text .policy-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
}

.features-section {
    padding: 47px 0px 0px;
    background: linear-gradient(to bottom, rgba(129, 184, 62, 0) 0%, rgba(129, 184, 62, 0.14) 7%, rgba(129, 184, 62, 0.16) 8%, rgba(129, 184, 62, 0.16) 50%, rgba(129, 184, 62, 0.16) 91%, rgba(0, 178, 227, 0) 100%);
    
}

/*----infrastrue-------------*/

.sidebar-contact {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: -350px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 40px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  box-sizing: border-box;
  transition: .5s
}

.sidebar-contact.active {
  left: 0
}

.sidebar-contact input,
.sidebar-contact textarea {
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, .5);
  outline: 0
}

.sidebar-contact h2 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 26px;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.sidebar-contact textarea {
  height: 60px! important;
  resize: none
}

.sidebar-contact input[type="submit"] {
          background: #04466c;
  color: #fff;
  cursor: pointer;
  border: 0;
  font-size: 18px
}

.toggle_2 {
    position: absolute;
    height: 48px;
    transform: rotate(270deg);
    width: 170px;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(to right, #0a0a0a 0%, #e31e24 100%);
    top: 50%;
    right: -99px;
    line-height: 48px;
    border-radius: 20px;
}

.toggle_2:before {
  content: 'DEALERSHIP';
  font-size: 18px;
  color: #fff
}

.toggle.active:before {
  content: '\f00d'
}

section.strp {
    height: 754px;
}

section.strp-1 {
  
}
section.strp h2 {
    text-align: center;
    padding: 47px 0px 0px;
}

section.strp p{color: #000;
text-align: center;
    font-size: 26px;}


 

@media (max-width: 425px){
    .title h2{
        font-size: 18px;
        span{
            font-size: 18px
        }
    }

    .about-content p{
        font-size: 11px;
        line-height: 23px
    }
    .vc_custom_1546938398438{
        height: 90vh !important
    }

    .right-col{
        width: auto;
    }
  .left-col{
        width: auto;
    }
}

 
/* Tricolor background overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, #FF9933 33%, white 33%, white 66%, #138808 66%);
  z-index: 9998;
  display: none;
}

/* Popup container */
#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  /*background: white;*/
  padding: 10px;
  border-radius: 8px;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Popup image responsive */
#popup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}


 
.btnrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* Changed from nowrap to wrap */
  padding: 10px;
}

.btnrow a.btn {
  flex: 0 0 auto;
  text-align: center;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
  .btnrow {
    flex-direction: column; /* Stacks buttons vertically */
    align-items: stretch;   /* Makes buttons equal width */
    width: 100%;
    max-width: 300px;       /* Keeps buttons from being too wide */
    margin: 0 auto;
  }
  
  .btnrow a.btn {
    width: 100%;            /* Full width buttons for easy tapping */
    margin: 0;
  }
}

.ctabuttons {
  margin-bottom: 0 !important;
}

.clip-btn1 {
    color: #fff;
    background: linear-gradient(1deg, #463a3a, var(--primary));
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    padding: 20px 48px;
    border: none;
    cursor: pointer;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clip-btn1:hover {
  background: linear-gradient(1deg, var(--primary), #463a3a);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 255, 255, 0.15);
}
.clip-btn4 {
    color: #fff;
    background: linear-gradient(1deg, #463a3a, var(--primary));
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    padding: 20px 48px;
    border: none;
    cursor: pointer;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clip-btn4:hover {
  background: linear-gradient(1deg, var(--primary), #463a3a);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 255, 255, 0.15);
}
 

:root {
    --corp-blue: #0f172a;
    --corp-accent: #2563eb;
    --corp-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

/* ==============================
   Section Wrapper
================================ */
.corporate-about {
    position: relative;
    padding: clamp(60px, 10vw, 120px) 5%;
    background-color: var(--corp-bg);
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* ==============================
   Mesh Background
================================ */
.mesh-texture {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%233b82f6' stroke-width='1'%3E%3Crect x='10' y='10' width='380' height='380' rx='40' /%3E%3Crect x='30' y='30' width='380' height='380' rx='40' /%3E%3Crect x='50' y='50' width='380' height='380' rx='40' /%3E%3Crect x='70' y='70' width='380' height='380' rx='40' /%3E%3Crect x='90' y='90' width='380' height='380' rx='40' /%3E%3Crect x='110' y='110' width='380' height='380' rx='40' /%3E%3Crect x='130' y='130' width='380' height='380' rx='40' /%3E%3Crect x='150' y='150' width='380' height='380' rx='40' /%3E%3Crect x='170' y='170' width='380' height='380' rx='40' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
}

/* ==============================
   Layout
================================ */
.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* ==============================
   Info Column
================================ */
.info-column {
    flex: 1;
    min-width: 320px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-tag .line {
    width: 40px;
    height: 2px;
    background: var(--corp-accent);
}

.tag-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--corp-accent);
}

.hero-title {
     font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
     font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(90deg, #1c1716, #ef882a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.highlight {
display: inline-block;
     background: linear-gradient(90deg, #df1313, #f1ee31);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.lead-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
    text-align: justify;
}

/* ==============================
   Feature Grid
================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.feat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--corp-blue);
}

.feat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* ==============================
   Button
================================ */
.corporate-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #e31e24;
    color: #fff;
    padding: 9px 20px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 14px;
}

.corporate-btn:hover {
    background: var(--corp-accent);
    transform: translateX(5px);
     color: #fff;
}

/* ==============================
   Visual Column
================================ */
.visual-column {
    flex: 1;
    min-width: 320px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.main-image-wrapper {
    width: 85%;
    position: relative;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Accent Image */
.accent-image-wrapper {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 50%;
}

.accent-img {
/*    width: 100%;
    height: 250px;*/
    object-fit: cover;
    border-radius: 56px;
    border: 5px solid white;
    box-shadow: 0 20px 40px var(--text-gray);
}

/* Floating Card */
.floating-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.card-title {
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}

.card-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ==============================
   RESPONSIVE ADDITIONS
================================ */

@media (max-width: 1024px) {
    .content-wrapper {
        gap: 40px;
    }
    .main-image-wrapper {
        width: 100%; /* Wider image on smaller tablets */
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse; /* Put visual on top for mobile */
    }
    
    .visual-column {
        justify-content: center;
        width: 100%;
    }

    .main-img {
        height: 350px; /* Reduced height for smaller screens */
    }

    .feature-grid {
        grid-template-columns: 1fr; /* Stack stats on top of each other */
    }

    .accent-image-wrapper {
        width: 45%;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .accent-image-wrapper, .floating-card {
        display: none; /* Hide decorative elements on very small phones for clarity */
    }
    
    .corporate-btn {
        /*width: 100%;*/
        justify-content: center;
    }
}

.gradient-text {
  /* Define your gradient colors here */
  background: linear-gradient(90deg, #463130, #ff5e14);
  
  /* This clips the background to the text */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* This makes the actual text color transparent so the background shows through */
  -webkit-text-fill-color: transparent;
  color: transparent;
  
  /* Aesthetic styles */
  font-size: 36px;
  font-weight: 800;
  display: inline-block; /* Ensures the gradient only covers the text width */
}
.figcaption {
    margin: 1.3em auto;
    font-style: normal;
    font-weight: 900;
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #ffa045, #2c2020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
/* Styling for the Trust Badges Image */
.strp-1 {
    padding: 10px 0;
    background-color: #fff; /* Match background color */
}

.trust-img-center {
    display: block;
    margin: 0 auto;
    max-width: 59%; /* Limits size on desktop to match your image layout */
    width: 100%;
    height: auto;
}
 
 
 .vc_custom_15468796044512
{padding-top: 4px !important;
    padding-bottom: 16px;
    /* background-color: #f7f9fb !important; */
    background: linear-gradient(1deg, var(--color-link), var(--corp-bg)) !important;  
}


        :root {
            --brand-navy: #0F172A;
            --brand-blue: #2563EB;
            --text-main: #1E293B;
            --text-muted: #64748B;
            --border: #E2E8F0;
            --white: #FFFFFF;
        }

 
 
        .corporate-section {
            padding: 17px 0;
            background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgb(102 91 91)), url(../images/photo-1486406146926-c627a92ad1ab.avif);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
        }

        .header102 {
            margin-bottom: 60px;
            /*border-left: 4px solid var(--brand-navy);*/
            padding-left: 25px;
        }

        .header102 h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--brand-navy);
            text-transform: uppercase;
            letter-spacing: -0.025em;
                line-height: 1.1;
    font-weight: 800;
    /* margin-bottom: 25px; */
    display: inline-block;
background: linear-gradient(90deg, #e7e2e2, #b5c4e9);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
        }

        .header102 p {
            color: white;
            font-size: 16px;
            margin-top: 8px;
            /*max-width: 600px;*/
            text-align: center;
        }

        /* SLIDER COMPONENT */
       .slider-wrapper {
            position: relative;
            margin-bottom: 50px;
        }

        .product-track {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            gap: 24px;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }
        .product-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

        /* CORPORATE CARD DESIGN */
        .card {
            flex: 0 0 calc(25% - 18px); /* 4 Columns Desktop */
            scroll-snap-align: center;
            background: var(--white);
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
            border-color: var(--brand-blue);
        }

        .img-container {
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3px;
            /*background: #F8FAFC;*/
        }

        .img-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
.container > header {
    
    text-align: center!important;
}
        .card:hover .img-container img {
            transform: scale(1.05);
        }

        .card-body {
            padding: 30px;
            flex-grow: 1;
        }

        .card-body .sku {
            font-size: 11px;
            font-weight: 700;
            color: var(--brand-blue);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 12px;
        }

        .card-body h3 {
               font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-navy);
    line-height: 1.1;
    font-weight: 800;
    /* margin-bottom: 25px; */
    display: inline-block;
    background: linear-gradient(90deg, #50241b, #367fe9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
        }

        .spec-grid {
            border-top: 1px solid var(--border);
            padding-top: 15px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 6px 0;
        }

        .spec-label { color: var(--text-muted); }
        .spec-value { font-weight: 600; color: var(--brand-navy); }

        /* NAVIGATION */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 50px;
            background: var(--brand-navy);
            color: var(--white);
            border: none;
            cursor: pointer;
            z-index: 10;
            border-radius: 0; /* Corporate sharp style */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            background: linear-gradient(116deg, #e7e2e2, var(--primary));
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        }

        .nav-btn:hover { background: var(--brand-blue); }
        .prev22 { left: -25px; }
        .next22 { right: -25px; }

        /* VIEW ALL CTA */
        .footer-action {
            text-align: center;
            margin-top: 20px;
        }

        .view-all-link {
            display: inline-flex;
            align-items: center;
            font-weight: 700;
            color: var(--brand-navy);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.1em;
            padding-bottom: 5px;
            border-bottom: 2px solid var(--brand-blue);
            transition: 0.3s;
        }

        .view-all-link:hover {
            color: var(--brand-blue);
            padding-left: 10px;
        }

        /* MOBILE OVERRIDES */
        @media (max-width: 1024px) {
            .card { flex: 0 0 calc(50% - 12px); } /* 2 per row */
            .nav-btn { width: 48px; height: 40px; }
            .prev22 { left: -10px; }
            .next22 { right: -10px; }
        }

        @media (max-width: 600px) {
            .header102 { text-align: left; border-left-width: 8px; }
            .card { 
                flex: 0 0 100%; /* Perfect Single Item View */
            }
            .nav-btn { display: flex; top: auto; bottom: -60px; } /* Reposition arrows on mobile */
            .prev22 { left: 30%; }
            .next22 { right: 30%; }
            .slider-wrapper { margin-bottom: 100px; }
        }
          .card-actions {
            display: flex;
            background: var(--navy);
        }
        .btn-action {
            flex: 1;
            padding: 15px;
            border: none;
            background: linear-gradient(272deg, var(--primary-red), #cb3838);
            color: white;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-action:first-child {
            border-right: 2px solid rgb(255 255 255);
        }

        .btn-action:hover {
            background: var(--electric);
              background: linear-gradient(178deg, #ff1414, #422d2c);

        }
          .btn-action22 {
            flex: 1;
            padding: 20px;
            border: none;
  background: linear-gradient(268deg, #ff4716, #3e3333);
            color: white;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-action22:first-child {
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .btn-action22:hover {
            background: var(--electric);
              background: linear-gradient(178deg, #ff4716, #955c5c);
 color: white;
        }

           .footer-cta {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-btn {
               display: inline-block;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    background: linear-gradient(1deg, #ff2f00, #efa42a);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
        }

        .view-all-btn:hover {
    background: linear-gradient(1deg, #efa42a, #ff2f00);
            color: var(--navy);
        }

        .view-all-btn span {
            margin-left: 15px;
            transition: transform 0.3s;
        }

        .view-all-btn:hover span {
            transform: translateX(10px);
        }

        @media (max-width: 768px) {
            .product-grid { grid-template-columns: 1fr; }
            .img-container { height: 280px; }
        }


        .container > header h2, p.info {
    font-size: clamp(29px, 2vw, 66px)!important;
    line-height: 1.1!important;
    font-weight: 800!important;

        }


        .footer-col ul li a:hover {

            color: white!important;
        }


 
 
      .footer-col ul li  a{
             color: #dee1b9!important;
        }




.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider2-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider2 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide2 {
  min-width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.slide2 img {
  max-width: 100px;
  margin: 0 10px;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

button.prev {
  left: 0;
}

button.next {
  right: 0;
}

@media (max-width: 767px) {
  .mobile-center {
        display: block;
        width: 109vw;
        max-width: 110vw;
        margin: 0 auto;
        margin-left: -66px;
  }
}


  .slider-container {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px 0;
  }

  .slider-track {
    display: flex;
    justify-content: center;
    gap: 50px; /* Space between images */
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
    align-items: center; /* Center images vertically */
  }

  .slider-track img {
    height: 80px; /* Adjust the image size */
    vertical-align: middle;
    max-width: 100%; /* Make sure images scale on smaller screens */
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .slider-track {
      gap: 20px; /* Reduce gap on mobile */
    }

    .slider-track img {
      height: 40px; /* Make images smaller on mobile */
    }
  }

  /* Very small screens (phones in portrait mode) */
  @media (max-width: 480px) {
    .slider-track {
      gap: 10px; /* Tighter gap on very small screens */
    }

    .slider-track img {
      height: 40px; /* Smaller images for very small screens */
    }
  }


.sectionClass {
    padding: 0;
    position: relative;
    display: block;
    margin: 0 auto 47px;
    border-radius: 61px;
    clear: both;
    max-width: 1200px;
}

/* Flex Container for items */
.projectFactsWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 11px;
    margin-bottom: 2px;
    justify-content: space-between;
}

/* Shared styles for all .item blocks */
.projectFactsWrap .item {
    flex: 1 1 30%;
    min-width: 250px;
    margin: 10px;
    padding: 20px 15px;
    text-align: center;
    /*background-color: #28a745;   */
    background: linear-gradient(to bottom, var(--text-gray), #ad1100);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.projectFactsWrap .item:hover {
    transform: translateY(-5px);
}

/* Different background for middle item */
.projectFactsWrap .item:nth-child(2) {
    /*background: #e31e24;*/
background: linear-gradient(to bottom, #e5dad5e8, #d33d10);
}

/* First and last items with rounded edges */
.projectFactsWrap .item:nth-child(1) {
    border-radius: 25px 25px 25px 132px;
}
.projectFactsWrap .item:nth-child(3) {
    border-radius: 25px 25px 132px 25px;
}

/* Responsive Flex Behavior */
@media (max-width: 992px) {
    .projectFactsWrap {
        justify-content: center;
    }
    .projectFactsWrap .item {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .projectFactsWrap {
        flex-direction: column;
        align-items: center;
    }
    .projectFactsWrap .item {
        flex: 1 1 100%;
        border-radius: 20px !important;
    }
}

/* Number & Text Styling */
.projectFactsWrap .item .number-cnt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.projectFactsWrap .item i {
    font-size: 40px;
    color: #fff;
    margin-right: 8px;
}

.projectFactsWrap .item .number {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.projectFactsWrap .item .numbertxt {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
}

.projectFactsWrap .item h6.cl-3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
}
.plus-sign {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}


 
    .clip-btn {
  color: #fff;
  background: linear-gradient(1deg, #ff2f00, #efa42a);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;

  padding: 20px 48px;
  border: none;
  cursor: pointer;

  clip-path: polygon(
    10% 0%,
    90% 0%,
    100% 50%,
    90% 100%,
    10% 100%,
    0% 50%
  );

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clip-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}



  /* Default Button Styles */
  .btn {
    font-size: 12px; /* Default font size */
    padding: 12px 3px; /* Padding for the button */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn .btn-txt {
    margin-right: 8px;
  }

  .btn .btn-icon {
    font-size: 18px; /* Icon size */
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .btn {
      font-size: 12px; /* Smaller font on mobile */
      padding: 10px 3px; /* Adjust padding for mobile */
      width: 200px; /* Make the button smaller */
    }

    .btn .btn-icon {
      font-size: 16px; /* Smaller icon on mobile */
    }
  }

@media (max-width: 480px) {
  .btnrow {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px; /* ✅ Correct place for gap between buttons */
  }

  .btnrow .btn {
    font-size: 12px;
    padding: 6px 2px;
    width: 158px;
    margin-left: 0; /* ❌ No need for negative margin */
    white-space: nowrap; /* Prevent text wrapping */
    flex: 0 0 auto;
  }

  .btn .btn-icon {
    font-size: 14px;
  }
}



.adv-section {
  position: relative; 
  padding: 100px 0;
  background-color: #ffffff; /* Base color */
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* Background Image Layer */
.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.ashmagroup.com/images/parallax4.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1; /* Lowest level */
}

.content-wrap {
  position: relative;
  z-index: 2; /* Sits above the background */
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.top-tag {
  color: #8bc53f; /* Lime Green */
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.gradient-text4444 {
  /*font-size: 32px;*/
     line-height: 1.1;
    font-weight: 800;
    /* margin-bottom: 25px; */
    display: inline-block;
    background: linear-gradient(90deg, #50241b, #ff4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.adv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 30px;
}

/* Mirroring alignments */
.left-features .adv-item { text-align: right; justify-content: flex-end; }
.right-features .adv-item { text-align: left; justify-content: flex-start; }

.adv-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

/* Custom Leaf Icon Box */
.icon-box.leaf-shape {
 width: 70px;
    height: 70px;
    background: #3fc55d;
    border-radius: 39px 0 31px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(139, 197, 63, 0.2);
}

.icon-box img {
  width: 35px;
  filter: brightness(0) invert(1);
}

.text-info h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.text-info p { font-size: 15px; color: #666; line-height: 1.5; }

.adv-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .adv-wrapper { grid-template-columns: 1fr; }

  .adv-image { 
    order: -1; /* Image shows first on mobile */
    margin-bottom: 40px;
  }

  .adv-item {
    flex-direction: column !important;
    text-align: center !important;
  }

  .left-features .adv-item { flex-direction: column-reverse !important; }

  .gradient-text4444 { font-size: 32px; }
}




.why-us-section {
    position: relative;
    min-height: 600px;
    width: 100%;
    /* Replace with your actual image path */
    background: url('../images/hero-IncorporatingCommercialGreenSpaces.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Dark overlay to make text readable as seen in image */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* Adjust darkness here */
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
}

/* Text Content Styling */
.tagline {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff3f3;
}

.mission-text {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    background: linear-gradient(1deg, #ff2f00, #efa42a);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.read-more-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
        color: #fff;

}

/* Video Play Button Styling */
.video-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 10px; /* Squarish with rounded corners like the image */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .video-trigger {
        margin-top: 40px;
    }

    .why-us-section {
        padding: 80px 20px;
    }
}


        :root {
            --navy: #111827;
            --blue: #2563EB;
            --slate: #4B5563;
            --light-bg: #F9FAFB;
            --white: #FFFFFF;
            --border: #E5E7EB;
        }

        * {
          
            font-family: 'Inter', -apple-system, sans-serif;
        }

        .features-section88 {
            padding: 80px 20px;
            background-color: var(--white);
            text-align: center;
        }

        .container88 {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header88 {
            margin-bottom: 50px;
        }

        .header88 h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .header88 p {
            font-size: 16px;
            color: var(--slate);
            max-width: 700px;
            margin: 0 auto;
        }

        /* The Grid - Matching your reference */
        .features-grid88 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .feature-card88 {
            background: linear-gradient(145deg, #ffffff, #30d8ff);
            padding: 40px 25px;
            border: 1px solid var(--border);
            border-radius: 14px;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .icon-container88 img {
            mix-blend-mode: multiply;
        }


           .feature-card88:hover {
            border-color: var(--blue);
            background: linear-gradient(145deg, #f8faff, #eef2ff);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
            transform: translateY(-6px);
        }


        /* Icon Wrapper */
        .icon-container88 {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-container88 img {
            width: 98px;
            /*height: 50px;*/
            object-fit: contain;
            /* Applying a blue filter to match the corporate theme */
            filter: invert(31%) sepia(94%) font-weight(700) saturate(2538%) hue-rotate(213deg) brightness(96%) contrast(92%);
        }

        .feature-card88 h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .feature-card88 p {
             color: var(--slate);
            line-height: 1.6;
        }

        /* Mobile Adjustments */
        @media (max-width: 992px) {
            .features-grid88 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .features-grid88 { grid-template-columns: 1fr; }
            .header88 h2 { font-size: 26px; }
            .feature-card88 { padding: 30px 20px; }
        }


@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Montserrat:wght@400;600;800&display=swap');

:root {
    --primary: #E31E24;
    --black: #000000;
    --gray-bg: #F2F2F2;
    --text-main: #1A1A1A;
    --overlay: rgba(15, 23, 42, 0.85); /* Deep corporate navy overlay */
}

/* 1. BACKGROUND IMAGE & OVERLAY CONFIG */
.pro-corporate-section {
    position: relative;
    padding: 100px 20px;
    background-image: linear-gradient(rgb(15 23 42 / 84%), rgb(15 23 42 / 24%)), url(../images/bpo-img.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates professional parallax effect */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pro-grid {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}

/* LEFT SIDEBAR - Modern Glassmorphism blend */
.pro-contact-sidebar {
    flex: 1;
    background: linear-gradient(135deg, rgba(251, 139, 69, 0.9), rgba(100, 116, 139, 0.95));
    color: white;
    padding: 60px 40px;
}

.pro-badge {
    background: var(--primary);
    padding: 6px 18px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
}

.pro-title {
    font-family: 'Oswald', sans-serif;
    line-height: 0.9;
    margin: 25px 0;
    font-size: 50px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px white;
}

.pro-lead {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 15px;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.pro-label {
    font-size: 14px;
    color: black;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.pro-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pro-icon { color: #fff; font-size: 20px; margin-top: 5px; opacity: 0.8; }

.pro-text p { margin: 0; font-weight: 500; font-size: 15px; }

/* RIGHT FORM CARD */
.pro-form-card {
    flex: 1.4;
    background: white;
    padding: 60px 40px;
}

.form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    letter-spacing: -1px;
    color: var(--black);
}

.pro-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
    transition: 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.pro-submit-btn {
    width: 100%;
    max-width: 320px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 22px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
    /* Fixed Clip-path for all devices */
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.pro-submit-btn:hover {
    background: var(--black);
    transform: translateX(10px);
}

a:hover{
        color: white;

}

/* RESPONSIVE DESIGN */
@media (min-width: 1024px) {
    .pro-grid { flex-direction: row; }
    .pro-title { font-size: 75px; }
    .pro-row { flex-direction: row; }
    .pro-submit-btn { 
        width: 70%; 
        clip-path: polygon(8% 0%, 91% 1%, 80% 53%, 93% 104%, 10% 100%, 0% 50%);
    }
}

@media (max-width: 768px) {
    .pro-corporate-section { padding: 40px 10px; }
    .pro-contact-sidebar, .pro-form-card { padding: 40px 20px; }
    .pro-submit-btn { max-width: 100%; }
}


  /* Adjust modal width */
  .modal-dialog {
    max-width: 700px; /* Adjust the width here */
    margin: 30px auto;
  }

/*   .modal-content {
    max-height: 80vh; 
    overflow-y: auto;  
  }*/


 .slide-a1 {
    background-image: linear-gradient(rgb(15 23 42 / 37%), rgb(15 23 42 / 0%)), url("../images/a1_desk_v1.jpeg");
}
.slide-n1 {
    background-image: linear-gradient(rgb(15 23 42 / 37%), rgb(15 23 42 / 0%)), url("../images/n1_desk_v1.jpg");
}
.slide-super {
    background-image: linear-gradient(rgb(15 23 42 / 37%), rgb(15 23 42 / 0%)), url("../images/super_desk_v1.jpg");
}
.slide-loader {
    background-image: linear-gradient(rgb(15 23 42 / 37%), rgb(15 23 42 / 0%)), url("../images/loader_desk_v1.jpg");
}

 


@media (max-width: 768px) {
    .slide-a1 {
         background-image: linear-gradient(rgb(15 23 42 / 85%), rgb(15 23 42 / 0%)), url(../images/a1_v1.jpg);
    }
    .slide-n1 {
                 background-image: linear-gradient(rgb(15 23 42 / 85%), rgb(15 23 42 / 0%)), url(../images/n1_v1.jpg);

    }
    .slide-super {
                         background-image: linear-gradient(rgb(15 23 42 / 85%), rgb(15 23 42 / 0%)), url(../images/super_v1.jpg);

    }
    .slide-loader {
                                 background-image: linear-gradient(rgb(15 23 42 / 85%), rgb(15 23 42 / 0%)), url(../images/loader_v1.jpg);

    }


}


 
        /* Section Background with your Texture */
        .texture-bg {
            background-color: #fdfdfd;
            background-image: url("../images/pattern88.jpg");
            /*padding: 80px 20px;*/
            text-align: center;
            overflow: hidden; /* Prevents horizontal scroll on the whole page */
        }

        .section-title {
             

            font-size: clamp(32px, 5vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(90deg, #1c1716, #ef882a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 20px;


        }

        /* The Blue Frame - Now acts as the Slider Viewport */
        .large-blue-frame {
      position: relative;
    max-width: 77%;
    margin: 0 auto;
    /* border: 4px solid #1a3a5f; */
    padding: 50px;
    /* background: rgba(255, 255, 255, 0.6); */
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    overflow: hidden;
        }

        /* The sliding container */
        .slider-trackk {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
            /* width will be set by the number of items automatically */
        }

        .guest-card-large {
            flex: 0 0 calc(33.333% - 20px); /* Desktop: Show 3 at a time */
            max-width: 450px;
            text-align: center;
        }

     .video-box {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden; /* Important: this keeps the zoom inside the borders */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* The actual image styling */
.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes the zoom smooth (0.5 seconds) */
    transition: transform 0.5s ease-in-out; 
    display: block;
}

/* The Zoom Effect: triggers when the mouse hovers over the box */
.video-box:hover img {
    transform: scale(1.15); /* Zooms in by 15% */
}

        .play-icon-large {
            position: absolute;
            width: 70px;
            height: 48px;
            background: #ff0000;
            border-radius: 12px;
            cursor: pointer;
            z-index: 2;
        }

        .play-icon-large::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translate(-50%, -50%);
            border-style: solid;
            border-width: 12px 0 12px 20px;
            border-color: transparent transparent transparent white;
        }

        .caption {
            margin-top: 20px;
            font-size: 18px;
            font-weight: bold;
            color: #1a3a5f;
        }

        /* Slider Controls (Arrows) */
     /* Container for buttons at the bottom */
.slider-btn {
    position: relative;
    top: auto;
    transform: none;
    color: white;
    border: none;
    width: 55px;  /* Slightly wider for the hexagon shape */
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    
    /* The Gradient */
    background: linear-gradient(116deg, #e7e2e2, red);
    
    /* FIXED Hexagon Clip-path (removed border-radius) */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    
    /* Remove border-radius as it conflicts with clip-path */
    border-radius: 0; 
}

.slider-btn:hover {
    transform: scale(1.1); /* Adds a little pop on hover */
    filter: brightness(1.1);
}

/* Container to hold them at the bottom center */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Specific button tweaks */
.prev-btn, .next-btn {
    left: auto;
    right: auto;
}

        .btn-know-more {
            display: inline-block;
            margin-top: 40px;
            background-color: #2e6da4;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            transition: 0.3s;
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .guest-card-large {
                flex: 0 0 calc(50% - 15px); /* Show 2 at a time on tablets */
            }
        }

        @media (max-width: 768px) {
            .large-blue-frame {
                padding: 40px 20px;
            }
            .guest-card-large {
                flex: 0 0 100%; /* Show 1 at a time on mobile */
            }
            .slider-btn {
                width: 35px;
                height: 35px;
            }
        }



        /* Section & Title */
.corporate-enjoyment {
    padding: 100px 0;
    text-align: center;
}

.section-title2 {
      font-size: clamp(32px, 5vw, 44px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(90deg, #1c1716, #ef882a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Subtle underline for a premium look */
.section-title2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: red; /* Matching your logo color */
    margin: 10px auto 0;
}

/* The Corporate Frame */
.corporate-frame {
    max-width: 96%;
    margin: 0 auto;
    /*border: 5px solid #0d253f;  */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px); /* Modern Glass effect */
    padding: 40px 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Infinite Marquee Animation */
.marquee-content {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scroll-left 40s linear infinite; /* Slower for a professional feel */
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.enjoy-card {
    flex: 0 0 400px; /* Larger images for desktop */
}

.photo-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px; /* Slightly sharper corners for corporate look */
    overflow: hidden;
    filter: grayscale(20%); /* Subtle desaturation for elegance */
    transition: all 0.4s ease;
}

.photo-box img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.photo-box:hover {
    filter: grayscale(0%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.photo-box:hover img {
    transform: scale(1.08);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .section-title2 {
        font-size: 26px;
    }
    
    .enjoy-card {
        flex: 0 0 280px; /* Proportional sizing for mobile */
    }

    .corporate-frame {
        border-width: 3px;
        margin: 0 15px;
    }
}