/*
Theme Name: tiss-theme
*/



@font-face {
	font-family: sf-display-regular;
	src: url(../tiss-theme/assets/sf-pro-display/SFPRODISPLAYREGULAR.OTF);
	font-weight: 400;
}

@font-face {
	font-family: sf-display-medium;
	src: url(../tiss-theme/assets/sf-pro-display/SFPRODISPLAYMEDIUM.OTF);
	font-weight: 500;
}

@font-face {
	font-family: sf-display-bold;
	src: url(../tiss-theme/assets/sf-pro-display/SFPRODISPLAYBOLD.OTF);
	font-weight: 600;
}

@font-face {
	font-family: Urbanist-bold;
	src: url(../tiss-theme/assets/urbanist-bold/Urbanist-Bold.ttf);
	font-weight: 600;
}



h1,h2,h3,h4,h5,h6{
    font-family: "Poppins", sans-serif;
}

p, a{
   font-family: "Roboto", sans-serif;
    color: #000000de;  
    font-size: 16px;                                         
}

span{
    font-family: "Roboto", sans-serif;  
}

a:hover{
   
    text-decoration: none !important;
}

.error-404 img{
    width: 100%;
    height: 485px;
    object-fit: contain;
    margin: 106px 0;
}
/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1D1D1D;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cf815d;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
  html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff !important;
}

.container {
    max-width: unset !important;
    padding: 0 4% !important;
}


/* header start */

.header-wrapper {
    width: 100%;
    background: #ffffff;
    text-align: center;
    position: fixed;
    top: 0px;
    z-index: 9;
    padding: 15px 0;
    box-shadow: 0px 4px 4px 0 #00000021;
}

.f-nav .header-wrapper {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transition: .3s ease;
}

.header-logo img {
    width: 250px;
    object-fit: cover;
    height: auto;
    margin-right: auto;
    display: block;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 200px;
}

.f-nav .menu-logoheader{
    padding-top: 0;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-button {
    display: flex;
    align-items: center;
}

.header-enquiry-btn a {
    display: inline-flex;
    gap: 10px;
    background: #CF815D;
    color: #ffffff;
    padding: 12px 20px;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-enquiry-btn a:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #CF815D;
}

.header-enquiry-btn i {
    transition: transform 0.3s ease-in-out;  /* smooth icon animation */
}

.header-enquiry-btn:hover i {
    transform: rotate(-45deg);
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 20px 0px 20px;
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: normal !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    color: #cf815d !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    color: #cf815d !important;
}

/* header ends */



/* banner section start  */

.banner-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.banner-contain-fluid {
    padding: 0 !important;
}

.banner-slide {
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 35%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 60%;
    left: 8%;
    transform: translateY(-40%);
    z-index: 2;
    max-width: 666px;
    color: #fff;
    text-align: left;
}

.banner-title {
    font-size: 60px;
    font-family: "sf-display-bold";
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-para p {
    font-size: 22px;
    line-height: 1.5;
    font-family: "sf-display-regular";
    opacity: 0.9;
    margin-bottom: 30px;
    color: #fff;
}

.banner-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 25px;
}

.banner-get-free-btn {
    background: #CF815D;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;  
}

.banner-get-free-btn i {
    transition: transform 0.3s ease-in-out;  /* smooth icon animation */
}

.banner-get-free-btn:hover {
    background: #c5825b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207,129,93,0.4);
}

.banner-get-free-btn:hover i {
    transform: rotate(-45deg);
}

.banner-call-btn {
    border: 1.5px solid #e0976f;
    color: #e0976f;
    padding: 12px 45px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.banner-call-btn:hover {
    background: #CF815D;
    color: #fff;
}


/* banner section end  */



/* About Section start */

.about-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.about-featured-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content-wrap {
    padding-left: 50px;
}

.about-tag-title {
    display: block;
    color: #CF815D;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content-inner h1 {
    font-size: 44px;
    font-family: "sf-display-bold";
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
}

.about-content-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-btn {
    background: #CF815D;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.about-btn i {
    transition: transform 0.3s ease-in-out;  /* smooth icon animation */
}

.about-btn:hover {
    background: #c5825b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207,129,93,0.4);
}

.about-btn:hover i {
    transform: rotate(-45deg);
}

/* About Section end */



/* counter section start  */

.home-counter-section {
    margin: 60px 0;
    padding: 60px 0;
    color: #fff;
    background-image: url('./assets/img/counter.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.home-counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-box {
    padding: 50px 30px;
    position: relative;
}

.counter-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background: rgba(255,255,255,0.6);
}

.counter-number {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 22px;
    color: #fff;
    opacity: 0.9;
}



/* counter section end   */


/* service section start  */


.services-section {
    padding: 60px 0;
}

.service-head-contain {
    width: 90% !important;
    margin: auto !important;
}

.service-head-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-tag {
    color: #cf815d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.service-head-title {
    font-size: 44px;
    font-family: "sf-display-bold";
    line-height: 1.2;
    color: #000;
    width: 50%;
    margin-bottom: 30px;
}

.service-head-para {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    width: 50%;
    margin-bottom: 25px;
}

.service-contain {
    padding: 5px !important;
    overflow: hidden;
}

.service-col {
    margin-top: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-align: center;
}

.service-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgb(0 0 0 / 89%) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    color: #fff;
}

.service-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.service-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    margin: 0 auto;
}

.service-btn:hover {
    background: #fff;
    color: #000;
}

/* service section end  */


/* project section start  */

.latest-projects {
    padding: 60px 0;
}

.projects-head-card {
    text-align: center;
    margin-bottom: 40px;
}

.projects-tag {
    color: #cf815d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.projects-head-title {
    font-size: 44px;
    font-family: "sf-display-bold";
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.projects-head-para {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.project-right-small-col-2 , .project-right-small-col-3 {
    padding-top: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card.large {
    height: 620px;
}

.project-card.small {
    height: 300px;
}

.project-card.wide {
    height: 200px;
}

.project-card.normal {
    height: 200px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(214,196,170,0.85),
        rgba(0,0,0,0.1)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.project-title {
    background: #ffffff;
    color: #000;
    font-family: "Urbanist-bold";
    padding: 10px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}


/* project section end */



/* gallery section start  */

.project-gallery {
    padding: 60px 0;
}

.project-subhead-card {
    width: 90% !important;
    margin: auto !important;
}

.gallery-col {
    margin-top: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.tall {
    height: 600px;
}

.gallery-item.medium {
    height: 285px;
}

.gallery-layout .col-md-4 {
    display: flex;
    flex-direction: column;
}


/* gallery section end  */



/* Testimonial Section Styles */

.testimonial-section {
    padding: 60px 0;
}

.testimonial-subhead-card {
    width: 90% !important;
    margin: auto !important;
}

.testimonial-slider {
    margin: 0 -15px;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.3s ease;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Quote Icon */
.quote-icon {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    line-height: 1;
    margin-bottom: 15px;
}

.quote-icon img {
    width: 40px;
    object-fit: contain;
    height: 40px;
}

/* Text */
.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Divider */
.testimonial-divider {
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

/* Bottom Section */
.testimonial-bottom {
    display: flex;
    align-items: center;
}

.testimonial-thumb img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
}

/* Name */
.testimonial-info h4 {
    font-size: 14px;
    margin: 0;
    color: #e36b2c; /* orange name */
    font-weight: 600;
}

/* Location */
.testimonial-info span {
    font-size: 12px;
    color: #888;
}

/* Arrows */
.testimonial-nav {
    margin-top: 40px;
}

.testimonial-nav button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    margin: 0 6px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

.testimonial-nav button:hover {
    background: #333;
}


/* testimonial section end  */




/* footer section start  */


.footer {
    padding: 60px 0 0;
    background: #e8e8e8;
}

.footer-contain {
    padding: 0 6% !important;
}

.footer-small-text {
    font-size: 16px;
    color: #343a40;
}

.newsletter-form p {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpcf7-spinner {
    display: none !important;
}

.newletter-input {
    width: 100%;
    max-width: 320px;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    outline: none;
    background-color: #ffffff;
    font-size: 16px;
    color: #333;
}

.newletter-input::placeholder {
    color: #9aa0a6;
}

.footer-subscr-btn {
    display: inline-flex;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    padding: 12px 20px;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-second-small-text {
    font-size: 16px;
    color: #343a40;
}

.social-icon {
    margin-left: 12px;
    color: #343a40;
    font-size: 20px;
}

.social-icon:hover {
    margin-left: 12px;
    color: #CF815D;
}

.footer-divider {
    background: #5c5c5c40;
    width: 95%;
    height: 1px;
    margin: 40px 0;
}

.footer-divider-2 {
    background: #5c5c5c40;
    width: 95%;
    height: 1px;
    margin: 40px 0 0 ;
}

.footer-brand-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
}

.footer-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.footer-heading {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    color: #343a40;
    margin-bottom: 20px;
}

.footer-heading-btn {
    display: inline-flex;
    gap: 10px;
    background: #CF815D;
    color: #ffffff;
    padding: 15px 20px;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-heading-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #CF815D;
}

.footer-menu {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.footer-contact {
    margin-top: 40px;
}

.footer-menu ul {
    padding: 0 !important;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: #6c757d;
}

.footer-menu a:hover {
    color: #cf815d;
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #495057;
}

.footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #cf815d;
    text-decoration: underline;
}

/* Optional: add spacing between items */
.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 13px;
    color: #555;
    position: relative;
    z-index: 2;
}

.footer-bottom p, .footer-bottom a {
    color: #343a40;
    text-decoration: none;
    margin: 0;
}
.footer-bottom a:hover{
    color:#c77c59;
}
.footer-bottom-start {
    display: flex;
    justify-content: flex-start;
}

.footer-bottom-end {
    display: flex;
    justify-content: flex-end;
}

.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.call-btn a {
    background: #cf815d;
    width: 80px;
    height: 80px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.call-btn a:hover {
    background: #cc8a67;
    color: #ffffff;
}

.call-btn a::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(207,129,93,0.45);
    top: 0;
    left: 0;
    z-index: -1;
    animation: rippleFill 2s infinite;
}

.call-btn a::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #cf815d;
    top: 0;
    left: 0;
    animation: rippleBorder 2.5s infinite;
    animation-delay: 1s;
}

/* Filled ripple */
@keyframes rippleFill {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Border ripple */
@keyframes rippleBorder {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* footer section end  */


/* inner page header section start  */

.innerpage-header {
  position: relative;
  height: 65vh;
  overflow: hidden;
}

.innerpage-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(54 54 54 / 25%);
    z-index: 1;
}

.innerpage-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pageheading-middle {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    z-index: 2;
    transform: translateY(-40%);
    width: 80%;
    margin: auto;
}

.pageheading-middle a {
    color: #ffffff;
}

.pageheading-middle a:hover {
    color: #ffffff;
}

/* inner page header section end  */


/* inner about us section start  */

.inner-about-us-section {
    padding: 60px 0;
}

.inner-about-us-images {
    position: relative;
    min-height: 520px;
}

.inner-about-us-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-about-us-img-featured {
    top: 0;
    left: 10px;
    width: 50%;
    height: 310px;
    border-radius: 15px;
}

.inner-about-us-img-2 {
    top: 35px;
    right: 35px;
    width: 40%;
    height: 180px;
    border-radius: 15px;
}

.inner-about-us-img-3 {
    bottom: 10px;
    left: 30%;
    width: 55%;
    height: 290px;
    border: 15px solid #fff;
    border-radius: 25px;
}

.inner-about-us-experience {
    position: absolute;
    bottom: 20px;
    left: 25px;
    border-radius: 18px;
    z-index: 3;
    text-align: center;
    width: 170px;
    height: 170px;
}

.inner-about-us-experience img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 15px;
}


.inner-about-us-tag {
    display: block;
    color: #CF815D;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.inner-about-us-content h1 {
    font-size: 44px;
    font-family: "sf-display-bold";
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
}

.inner-about-us-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.inner-about-us-box h5 {
    color: #1e90ff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.inner-about-us-box h5::before {
    content: "✓";
    color: #ffffff;
    background: #4caeed;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
    display: inline-block;
    margin-right: 8px;
    padding: 4px;
}

.inner-about-us-box p {
    margin: 0;
}

.inner-about-us-btn {
    display: inline-flex;
    gap: 10px;
    background: linear-gradient(
        90deg,
        rgba(27, 137, 204, 1) 42%,
        rgba(88, 183, 245, 0.93) 100%
    );
    color: #ffffff;
    padding: 12px 20px;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inner-about-us-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 164, 240, 0.4);
}



/* below about us section */

.inner-below-about {
    padding: 60px 0;
}

.inner-below-about-contain {
    padding: 0 10% !important;
}

.inner-below-about-card {
    background: #e4d0b74a;
    border: none;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 9%);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.inner-below-about-card:hover {
    transform: translateY(-8px);
}

.inner-below-about-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.inner-below-about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* inner heritage about us section  */

.inner-about-heritage {
    padding: 60px 0;
}

.inner-about-heritage-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

/* inner what we master about section */


.inner-about-we-master {
    padding: 60px 0;
    background: #f7f1ea78;
}

.inner-about-we-master-card {
    background: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 16px;
    box-shadow: -1px -2px 40px rgb(0 0 0 / 10%);
    transition: 0.3s ease;
}

.inner-about-we-master-card:hover {
    transform: translateY(-8px);
}

.inner-about-we-master-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.inner-about-we-master-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.inner-about-we-master-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}


/* promise section  */

.inner-about-promise {
    padding: 60px 0;
}

.inner-about-promise-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}


/* why choose section   */

.inner-about-why-choose {
    padding: 60px 0;
}

.inner-about-why-choose-col {
    margin-bottom: 20px;
}

.inner-about-why-choose-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 12%);
    transition: 0.3s ease;
}

.inner-about-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.inner-about-why-choose-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.inner-about-why-choose-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}





/* inner about us section end  */


/* inner page service section start  */

.inner-service-head-card {
    display: unset;
    text-align: center;
}

.inner-service-tag {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-service-head-title {
    text-align: center;
    width: 80%;
    margin: 20px auto;
}

.inner-service-head-para {
    text-align: center;
    width: 80%;
    margin: 20px auto 40px;
}


/* inner page service section end  */



/* single page service section start  */

.single-service-section {
    padding: 60px 0;
}

.single-service-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.single-service-text {
    line-height: 1.7;
}

.single-service-img {
    border-radius: 12px;
}

.single-service-related {
    padding: 60px 0;
    background: #f8f8f8;
}

.single-service-related-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.single-service-card {
    padding: 0px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.single-service-card:hover {
    transform: translateY(-5px);
}

.single-service-card-img {
    width: 100%;
    object-fit: cover;
    height: 250px;
}

.single-service-img {
    width: 100%;
    object-fit: cover;
    height: 440px;
    border-radius: 10px;
}

.single-service-card-content {
    margin-top: 20px;
}

.single-service-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-service-card-para {
    margin-bottom: 20px;
}

.single-service-card-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: start;
}

.single-service-card-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.single-service-card-btn:hover {
    color: #CF815D;
}

.single-service-card-btn:hover i {
    transform: translateX(5px);
}

/* single page service section end  */



/* inner page project section start  */

.inner-project-section {
  padding: 60px 0;
}

.inner-project-col {
    margin-top: 20px;
}

.inner-project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.inner-project-card:hover {
  transform: translateY(-6px);
}

.inner-project-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
}

.inner-project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  transition: padding-bottom 0.35s ease;
}

.inner-project-content {
  position: relative;
  transition: transform 0.35s ease;
  z-index: 2;
}

.inner-project-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.inner-project-excerpt {
  font-size: 14px;
  margin: 0;
  color: #fff;
  opacity: 0.9;
}

.inner-project-btn {
  position: absolute;
  left: 20px;
  bottom: 15px;
  transform: translateY(40px);
  opacity: 0;
  padding: 10px 22px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 3;
}

.inner-project-btn:hover {
  background: #CF815D;
  color: #fff;
}

.inner-project-card:hover .inner-project-content {
  transform: translateY(-20px);
}

.inner-project-card:hover .inner-project-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.inner-project-card:hover .inner-project-overlay {
  padding-bottom: 65px;
}


/* inner page project section end  */


/* single page project section start  */


.single-project-section {
  padding: 60px 0;
}

.single-project-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.single-project-title {
  font-size: 32px;
  font-weight: 700;
  margin: 25px 0 15px;
  line-height: 1.3;
}

.single-project-content {
  font-size: 17px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 40px;
}

.single-project-gallery-slider {
  margin: 40px 0 !important;
}

.single-project-gallery-slide {
  padding: 0 10px;
}

.single-project-gallery-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.single-project-gallery-slider .slick-dots {
  bottom: -45px !important;
  text-align: center;
}

.single-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 26px;
  background: #CF815D;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.single-project-btn:hover {
  background: #000;
  color: #fff;
}


/* single page project section end  */



/* inner page gallery section start  */

.inner-gallery {
    padding: 60px 0;
}

/* Heading */
.inner-gallery-head-card {
    display: unset;
}

.inner-gallery-tag {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-gallery-head-title {
    text-align: center;
    width: 80%;
    margin: 20px auto;
}

.inner-gallery-head-para {
    text-align: center;
    width: 80%;
    margin: 20px auto 40px;
}

/* ==============================
   MASONRY LAYOUT
============================== */

.inner-gallery-row {
    column-count: 4;
    column-gap: 20px;
}

.inner-gallery-col {
    break-inside: avoid;
    margin-bottom: 20px;
}

.inner-gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.inner-gallery-item img {
    width: 100%;
    height: auto;   /* IMPORTANT for masonry */
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.inner-gallery-item:hover img {
    transform: scale(1.05);
}
/* inner page gallery section end  */


/* inner page testimonial section start  */

.inner-testimonial-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.inner-testimonial-head-card {
    display: unset;
}

.inner-testimonial-tag {
    display: flex;
    justify-content: center;
}

.inner-testimonial-head-title {
    width: unset;
    margin-bottom: 0;
    text-align: center;
}

.inner-testimonial-head-para {
    width: 80%;
    margin: 20px auto 40px;
}

.inner-testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.inner-testimonial-quote {
    font-size: 32px;
    color: #CF815D;
    opacity: 0.3;
    margin-bottom: 20px;
}

.inner-testimonial-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.inner-testimonial-readmore {
    background: none;
    border: none;
    color: #CF815D;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.inner-testimonial-readmore:hover {
    text-decoration: none;
    color: #000000;
}

.inner-testimonial-user {
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.inner-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.inner-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-testimonial-name {
    font-size: 18px;
    margin: 0px 0 5px;
}

.inner-testimonial-designation {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* Popup */
.inner-testimonial-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.inner-testimonial-popup-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.inner-testimonial-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.inner-testimonial-popup-user {
    margin-bottom: 20px;
}

.popup-name {
    font-size: 20px;
    margin: 0 0 10px;
}

.popup-designation {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
}

.popup-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.popup-content-wrapper {
    max-height: 400px;
    overflow: auto;
}


/* inner page testimonial section end  */


/* inner page Blog section start */

.blog-listing-section {
    padding: 60px 0;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 14px;
    color: #CC8A67;
    margin-bottom: 10px;
    font-weight: 500;
    display: block;
    font-family: inherit;
}

.blog-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #CF815D;
}

.blog-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-viewmore {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: start;
}

.blog-viewmore i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-viewmore:hover {
    color: #CF815D;
}

.blog-viewmore:hover i {
    transform: translateX(5px);
}


/* inner page Blog section end  */


/* Single page Blog section start */

.single-blog-section {
    padding: 60px 0;
    background-color: #fff;
}

.single-blog-content {
    padding-right: 30px;
}

.single-blog-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.single-blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog-title {
    font-size: 44px;
    font-family: "sf-display-bold";
    line-height: 1.2;
    color: #000;
    margin: 30px 0;
}

.single-blog-meta {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.single-blog-text {
    margin-bottom: 40px;
}

.single-blog-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.single-blog-text li {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.single-blog-text h4 {
    font-size: 20px;
    color: #000000d3;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.single-blog-text thead {
	background: #cb7f5d;
    color: #fff;
}

.single-blog-text table {
	border-spacing: 2px !important;
    border-collapse: separate !important;
}

.single-blog-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background: #e3cfb763;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #CC8A67;
}

.recent-post-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.recent-post-item:hover {
    background: #cb815f;
}

.recent-post-item:hover a {
    color: #fff;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-image {
    width: 115px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 15px;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content {
    flex-grow: 1;
    padding: 15px;
}

.recent-post-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.recent-post-content h5 {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.recent-post-content h5 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
    color: #fff;
}

/* Single page Blog section end */


/* inner page contact section start  */

.inner-contact-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.inner-contact-contain {
    padding: 0 10% !important;
}

.inner-contact-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.inner-contact-form-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-contact-form-header p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

/* Form Fields */
.inner-contact-form-wrap .form-group {
    position: relative;
    margin-bottom: 25px;
}

.inner-contact-form-wrap .form-control {
    width: 100%;
    height: 55px;
    border: none;
    border-bottom: 2px solid #e5e5e5;
    background: transparent;
    padding: 0;
    font-size: 15px;
    color: #000;
    border-radius: 0;
    transition: 0.3s ease;
}

.inner-contact-form-wrap textarea.form-control {
    height: 130px;
    padding-top: 10px;
    resize: none;
}

.inner-contact-form-wrap .form-control:focus {
    outline: none;
    border-bottom: 2px solid #CC8A67;
    box-shadow: none;
}

.inner-contact-form-wrap .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

/* Submit Button */
.inner-contact-form-wrap .btn-submit {
    background: #CC8A67;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

.inner-contact-form-wrap .btn-submit:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* CF7 Messages */
.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin-top: 20px;
    border-radius: 8px;
    font-size: 14px;
}

.inner-contact-info-wrap {
    padding: 40px;
}

.inner-contact-sub-title {
    font-size: 14px;
    font-weight: 600;
    color: #CC8A67;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inner-contact-section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
}

.inner-contact-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

/* Contact Items */
.inner-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.inner-contact-icon {
    width: 50px;
    height: 50px;
    background: #CC8A67;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
}

.inner-contact-text h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.inner-contact-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.inner-contact-text a {
    color: #555;
    text-decoration: none;
}

.inner-contact-text a:hover {
    color: #CC8A67;
}

.inner-contact-socials h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.inner-contact-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.inner-contact-social-links a {
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    color: #333;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-size: 16px;
}

.inner-contact-social-links a:hover {
    background: #CC8A67;
    color: #fff;
    transform: translateY(-3px);
}

/* inner page contact section end  */



@media screen and (min-width:300px) and (max-width: 576.5px) {

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #ffffff !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFA5D340', endColorstr='#FFD9F9AC');
    padding: 0px 0px 0px 0px;
    display: none;
}

.menu-logoheader .row {
    align-items: center;
}
	
.header-wrapper .header-logo img {
    height: auto;
    width: 120px;
}
	
.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 105px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-enquiry-btn a {
    display: none;
}
	
.header-mobile-enquiry-btn a {
    display: inline-flex;
    gap: 7px;
    background: #CF815D;
    color: #ffffff;
    padding: 8px 10px;
    align-items: center;
    line-height: 1;
    font-size: 10px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* banner section start  */

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.banner-title {
    font-size: 28px;
}

.banner-para p {
    font-size: 14px;
}

.banner-get-free-btn {
    background: #CF815D;
    color: #fff;
    padding: 12px 15px;
    font-size: 12px;
}

.banner-call-btn {
    font-size: 12px;
    padding: 12px 30px;
}


/* banner section end  */



/* about us section start  */

.about-tag-title {
    font-size: 14px;
    margin-top: 50px;
}

.about-content-wrap {
    padding-left: unset;
}

.about-content-inner h1 {
    font-size: 26px;
}

.about-content-inner p {
    font-size: 14px;
}

.about-btn {
    font-size: 14px;
    padding: 12px 15px;
}

/* about us section end  */


/* couner section start  */

.home-counter-section {
    margin: 60px 0;
    padding: 0px 0;
}
	
.counter-box {
    padding: 40px 20px;
}

.counter-number {
    font-size: 30px;
}

.counter-label {
    font-size: 18px;
}

.counter-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 45%;
    width: 2px;
    background: rgba(255,255,255,0.6);
}

/* counter section end  */



/* service section start  */

.service-head-card {
    display: block;
}

.service-head-title {
    font-size: 26px;
    width: unset;
    margin: 20px 0;
}

.service-head-para {
    font-size: 14px;
    width: unset;
    margin-bottom: 25px;
}

.service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-overlay h4 {
    font-size: 16px;
}

/* service section end  */



/* project section start  */

.projects-head-title {
    font-size: 26px;
    margin: 20px 0;
}

.projects-head-para {
    font-size: 14px;
    margin-bottom: 25px;
}

.project-left-col, .project-right-col, .project-right-small-col, .project-right-small-col-1, .project-right-small-col-2, .project-right-small-col-3 {
    margin-top: 20px;
}

.project-title {
    padding: 10px 28px;
    font-size: 14px;
}

/* project section end  */


/* testimonial section start  */

.quote-icon img {
    width: 25px;
    object-fit: contain;
    height: 25px;
}

/* testimonial section end  */



/* footer section start  */

.footer-small-text {
    font-size: 14px;
    color: #343a40;
}

.footer-second-small-text {
    font-size: 14px;
    color: #343a40;
    margin-top: 20px;
}

.footer-logo {
    width: 170px;
    object-fit: contain;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-heading-btn {
    color: #ffffff;
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 30px;
}

.footer-menu {
    display: flex;
    justify-content: flex-start;
}
.footer-brand-wrap {
    display: flex;
    flex-direction: column;
}
.footer-menu a {
    color: #000000cc;
    font-size: 14px;
}

.footer-contact a {
    color: #000000cc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-bottom-start {
    display: flex;
    justify-content: center;
}

.footer-bottom-end {
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    font-size: 14px;
}
	
.call-btn a {
    width: 55px;
    height: 55px;
    padding: 5px;
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
}
.call-btn a::before,
.call-btn a::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* footer section end  */



.pageheading-middle h2 {
    font-size: 20px;
}

.pageheading-middle a {
    color: #cf815d;
    font-size: 14px;
}

.breadcrumb_last {
    font-size: 14px;
}



/* inner page about us section start  */

.inner-about-us-img-featured {
    top: 0;
    left: 0;
    width: 50%;
    height: 310px;
    border-radius: 15px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inner-about-us-img-2 {
    top: 40px;
    right: 0;
    width: calc(50% - 10px);
    height: 180px;
    border-radius: 15px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #ffffff;
}

.inner-about-us-img-3 {
    bottom: 10px;
    right: 10%;
    left: unset;
    width: 55%;
    height: 290px;
    background: #ffffff;
    border: 10px solid #fff;
    border-radius: 18px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inner-about-us-experience {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 35%;
    height: 170px;
}

.inner-about-us-experience img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 15px;
}

.inner-about-us-content h1 {
    font-size: 26px;
    margin: 20px 0;
}

.inner-about-us-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}
	
/* inner below about us section 	 */
	
.inner-below-about-contain {
    padding: 0 4% !important;
}
	
.inner-below-about-col {
    margin-bottom: 30px;
}
	
.inner-below-about-title {
    font-size: 18px;
}
	
.inner-below-about-text {
    font-size: 14px;
}
	
.inner-below-about-card {
    height: 100%;
}
	

/* inner heritage about us section  */
	
.inner-about-heritage-content {
    font-size: 14px;
}	

	
/* inner what we master about section  */
	
.inner-about-we-master-col {
	margin-bottom: 20px;	
}
	
.inner-about-we-master-title {
    font-size: 18px;
}
	
.inner-about-we-master-icon img {
    width: 45px;
    height: 45px;
}

/* promise section  */
	
.inner-about-promise-content {
    font-size: 14px;
}
	
/*  why choose section */

.inner-about-why-choose-col {
	margin-bottom: 20px;	
}	

.inner-about-why-choose-title {
    font-size: 18px;
}
	
.inner-about-why-choose-text {
    font-size: 14px;
}
	

/* inner page about us section end  */


/* single page service section start  */

.single-service-col {
    margin-top: 40px;
}

.single-service-title {
    font-size: 26px;
    margin: 20px 0;
} 

.single-service-text p {
    font-size: 14px;
}

.single-service-related-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.single-service-card-para {
    margin-bottom: 20px;
    font-size: 14px;
}

.single-service-card-para {
    margin-bottom: 20px;
    font-size: 14px;
}

/* single page service section end  */
	
	
/* inner page gallery section end  */
	
.inner-gallery-row {
    column-count: 2;
    column-gap: 10px;
}
	
/* inner page gallery section end  */



/* inner page blog section end  */

.blog-title a {
    font-size: 14px;
}

.blog-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}
	
.blog-viewmore {
    font-size: 14px;
}

/* inner page blog section end  */



/* single page blog section start  */

.single-blog-contain  {
	padding: 0 10% !important;	
}
	
.single-blog-title {
    font-size: 26px;
}
	
.single-blog-content {
    padding-right: 0;
}

.single-blog-text p {
    font-size: 14px;
}
	
.single-blog-text h4 {
    font-size: 18px;
}
	
.single-blog-text li {
    font-size: 14px;
}

.single-blog-text table  {
	font-size: 14px;
}
	
.recent-post-content h5 a {
    font-size: 14px;
}
	
.blog-sidebar {
    padding-left: 0px;
}
	
.recent-post-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
}
	
.recent-post-image {
    width: 100%;
    height: 120px;
    flex-shrink: 0;
    margin-right: 15px;
}
	
.recent-post-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
	
.recent-post-content {
    flex-grow: 1;
    padding: 20px 0 0;
}
	
.recent-post-content h5 a {
    text-align: center;
    font-size: 13px;
}

/* single page blog section end  */


/* inner contact us section start  */


.inner-contact-contain {
    padding: 0 4% !important;
}

.inner-contact-form-header h3 {
    font-size: 26px;
}

.inner-contact-form-header p {
    font-size: 14px;
}

.inner-contact-form-wrap .btn-submit {
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.inner-contact-info-wrap {
    padding: 20px;
}

.inner-contact-section-title {
    font-size: 26px;
}

.inner-contact-description {
    font-size: 14px;
}

.inner-contact-text h6 {
    font-size: 14px;
}

.inner-contact-text a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.inner-contact-icon {
    width: 35px;
    height: 35px;
}

.inner-contact-icon i {
    font-size: 14px;
}

/* inner contact us section end  */



}






@media screen and (min-width:577px) and (max-width: 767.5px) {

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #ffffff !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFA5D340', endColorstr='#FFD9F9AC');
    padding: 0px 0px 0px 0px;
    display: none;
}

.header-logo img {
    width: 180px;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 150px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-enquiry-btn a {
    display: none;
}


/* banner section start  */

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.banner-title {
    font-size: 36px;
}

.banner-para p {
    font-size: 16px;
}

.banner-get-free-btn {
    background: #CF815D;
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
}

.banner-call-btn {
    font-size: 14px;
    padding: 12px 30px;
}


/* banner section end  */



/* about us section start  */

.about-tag-title {
    font-size: 14px;
    margin-top: 50px;
}

.about-content-wrap {
    padding-left: unset;
}

.about-content-inner h1 {
    font-size: 30px;
}

.about-content-inner p {
    font-size: 16px;
}

.about-btn {
    font-size: 16px;
    padding: 12px 15px;
}

/* about us section end  */


/* couner section start  */

.home-counter-section {
    margin: 60px 0;
    padding: 0px 0;
}

.counter-number {
    font-size: 40px;
}

.counter-number {
    font-size: 40px;
}

.counter-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 45%;
    width: 2px;
    background: rgba(255,255,255,0.6);
}

/* counter section end  */



/* service section start  */

.service-head-card {
    display: block;
}

.service-head-title {
    font-size: 30px;
    width: unset;
    margin: 20px 0;
}

.service-head-para {
    font-size: 16px;
    width: unset;
    margin-bottom: 25px;
}

.service-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-overlay h4 {
    font-size: 18px;
}

/* service section end  */



/* project section start  */

.projects-head-title {
    font-size: 30px;
    margin: 20px 0;
}

.projects-head-para {
    font-size: 16px;
    margin-bottom: 25px;
}

.project-left-col, .project-right-col, .project-right-small-col, .project-right-small-col-1, .project-right-small-col-2, .project-right-small-col-3 {
    margin-top: 20px;
}

.project-title {
    padding: 10px 28px;
    font-size: 16px;
}

.project-card.large {
    height: 500px;
}

/* project section end  */


/* testimonial section start  */

.quote-icon img {
    width: 25px;
    object-fit: contain;
    height: 25px;
}

/* testimonial section end  */



/* footer section start  */

.footer-small-text {
    font-size: 16px;
    color: #000000;
}
.footer-brand-wrap {
    display: flex;
    flex-direction: column;
}

.footer-second-small-text {
    font-size: 16px;
    color: #000000;
    margin-top: 20px;
}

.footer-logo {
    width: 200px;
    object-fit: contain;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-heading-btn {
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    margin-bottom: 30px;
}

.footer-menu {
    display: flex;
    justify-content: flex-start;
}

.footer-menu a {
    color: #000000a6;
    font-size: 16px;
}

.footer-contact a {
    color: #495061;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-bottom p {
    font-size: 16px;
}
	
.call-btn a {
    width: 55px;
    height: 55px;
    padding: 5px;
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
}
.call-btn a::before,
.call-btn a::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* footer section end  */

.pageheading-middle h2 {
    font-size: 20px;
}

.pageheading-middle a {
    color: #cf815d;
    font-size: 14px;
}

.breadcrumb_last {
    font-size: 14px;
}



/* inner page about us section start  */

.inner-about-us-img-featured {
    top: 0;
    left: 0;
    width: 50%;
    height: 310px;
    border-radius: 15px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inner-about-us-img-2 {
    top: 40px;
    right: 0;
    width: calc(50% - 10px);
    height: 180px;
    border-radius: 15px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #ffffff;
}

.inner-about-us-img-3 {
    bottom: 10px;
    right: 10%;
    left: unset;
    width: 55%;
    height: 290px;
    background: #ffffff;
    border: 10px solid #fff;
    border-radius: 18px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inner-about-us-experience {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 35%;
    height: 170px;
}

.inner-about-us-experience img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 15px;
}

.inner-about-us-content h1 {
    font-size: 26px;
    margin: 20px 0;
}

.inner-about-us-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}
	
/* inner below about us section 	 */
	
.inner-below-about-contain {
    padding: 0 4% !important;
}
	
.inner-below-about-col {
    margin-bottom: 30px;
}
	
.inner-below-about-title {
    font-size: 20px;
}
	
.inner-below-about-text {
    font-size: 16px;
}
	
.inner-below-about-card {
    height: 100%;
}
	

/* inner heritage about us section  */
	
.inner-about-heritage-content {
    font-size: 16px;
}	

	
/* inner what we master about section  */
	
.inner-about-we-master-col {
	margin-bottom: 20px;	
}
	
.inner-about-we-master-title {
    font-size: 20px;
}
	
.inner-about-we-master-icon img {
    width: 45px;
    height: 45px;
}

/* promise section  */
	
.inner-about-promise-content {
    font-size: 16px;
}
	
/*  why choose section */

.inner-about-why-choose-col {
	margin-bottom: 20px;	
}	

.inner-about-why-choose-title {
    font-size: 20px;
}
	
.inner-about-why-choose-text {
    font-size: 16px;
}
	

/* inner page about us section end  */


/* single page service section start  */

.single-service-col {
    margin-top: 40px;
}

.single-service-title {
    font-size: 26px;
    margin: 20px 0;
} 

.single-service-text p {
    font-size: 14px;
}

.single-service-related-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.single-service-card-para {
    margin-bottom: 20px;
    font-size: 14px;
}

.single-service-card-para {
    margin-bottom: 20px;
    font-size: 14px;
}

/* single page service section end  */
	
	
/* inner page gallery section end  */
	
.inner-gallery-row {
    column-count: 3;
    column-gap: 15px;
}
	
/* inner page gallery section end  */


/* inner page blog section end  */

.blog-title a {
    font-size: 14px;
}

.blog-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}

/* inner page blog section end  */



/* single page blog section start  */
	
.single-blog-content {
    padding-right: 0;
}

.single-blog-title {
    font-size: 30px;
}

.single-blog-text p {
    font-size: 16px;
}
	
.single-blog-text h4 {
    font-size: 20px;
}
	
.single-blog-text li {
    font-size: 16px;
}

.single-blog-text table  {
	font-size: 16px;
}
	
.recent-post-content h5 a {
    font-size: 16px;
}


/* single page blog section end  */


/* inner contact us section start  */


.inner-contact-contain {
    padding: unset;
}

.inner-contact-form-header h3 {
    font-size: 26px;
}

.inner-contact-form-header p {
    font-size: 14px;
}

.inner-contact-form-wrap .btn-submit {
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.inner-contact-info-wrap {
    padding: 20px;
}

.inner-contact-section-title {
    font-size: 26px;
}

.inner-contact-description {
    font-size: 14px;
}

.inner-contact-text h6 {
    font-size: 14px;
}

.inner-contact-text a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.inner-contact-icon {
    width: 35px;
    height: 35px;
}

.inner-contact-icon i {
    font-size: 14px;
}

/* inner contact us section end  */

}


@media screen and (min-width:768px) and (max-width: 1200.5px) {


#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #ffffff !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFA5D340', endColorstr='#FFD9F9AC');
    padding: 0px 0px 0px 0px;
    display: none;
}

.header-logo img {
    width: 220px;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 200px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-enquiry-btn a {
    display: none;
}


/* banner section start  */

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.banner-title {
    font-size: 50px;
}

.banner-para p {
    font-size: 20px;
}

.banner-get-free-btn {
    background: #CF815D;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
}

.banner-call-btn {
    font-size: 16px;
    padding: 12px 30px;
}


/* banner section end  */

/* about us section start  */

.about-tag-title {
    font-size: 14px;
    margin-top: 50px;
}

.about-content-wrap {
    padding-left: unset;
}

.about-featured-image {
    width: 100%;
    height: 550px;
    display: block;
    object-fit: cover;
}

.about-content-inner h1 {
    font-size: 40px;
}

.about-content-inner p {
    font-size: 16px;
}

.about-btn {
    font-size: 16px;
    padding: 12px 15px;
}

/* about us section end  */


/* couner section start  */

.home-counter-section {
    margin: 60px 0;
    padding: 0px 0;
}

.counter-number {
    font-size: 40px;
}

.counter-number {
    font-size: 40px;
}

.counter-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 45%;
    width: 2px;
    background: rgba(255,255,255,0.6);
}

/* counter section end  */



/* service section start  */

.service-head-card {
    display: block;
}

.service-head-title {
    font-size: 40px;
    width: unset;
    margin: 20px 0;
}

.service-head-para {
    font-size: 16px;
    width: unset;
    margin-bottom: 25px;
}

.service-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-overlay h4 {
    font-size: 18px;
}

/* service section end  */



/* project section start  */

.projects-head-title {
    font-size: 40px;
    margin: 20px 0;
}

.projects-head-para {
    font-size: 16px;
    margin-bottom: 25px;
}

.project-left-col, .project-right-col, .project-right-small-col, .project-right-small-col-1, .project-right-small-col-2, .project-right-small-col-3 {
    margin-top: 0;
}

.project-title {
    padding: 10px 12px;
    font-size: 14px;
}

.project-card.large {
    height: 500px;
}

/* project section end  */


/* testimonial section start  */

.quote-icon img {
    width: 25px;
    object-fit: contain;
    height: 25px;
}

/* testimonial section end  */



/* footer section start  */

.footer-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
}
	
.footer-heading {
    font-size: 24px;
}
	
.footer-heading-btn {
    padding: 12px 20px;
    font-size: 14px;
}
.footer-menu {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}
	
.footer-subscr-btn {
    padding: 10px 15px;
}

.social-icon {
    margin-left: 5px;
    color: #343a40;
    font-size: 20px;
}
	
.newsletter-form p {
    display: block;
}
	
.newsletter-form input {
    border: none;
    padding: 20px;
    margin-top: 10px;
}
	
.call-btn a {
    width: 65px;
    height: 65px;
    padding: 5px;
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
}
.call-btn a::before,
.call-btn a::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* footer section end  */


.pageheading-middle h2 {
    font-size: 28px;
}


/* inner page about us section start  */

.inner-about-us-img-featured {
    top: 0;
    left: 0;
    width: 50%;
    height: 310px;
    border-radius: 15px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inner-about-us-img-2 {
    top: 40px;
    right: 0;
    width: calc(50% - 10px);
    height: 180px;
    border-radius: 15px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #ffffff;
}

.inner-about-us-img-3 {
    bottom: 10px;
    right: 10%;
    left: unset;
    width: 55%;
    height: 290px;
    background: #ffffff;
    border: 10px solid #fff;
    border-radius: 18px;
}

.inner-about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.inner-about-us-experience {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 35%;
    height: 170px;
}

.inner-about-us-experience img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 15px;
}

.inner-about-us-content h1 {
    font-size: 40px;
    margin: 20px 0;
}
	
.inner-about-we-master-col {
    margin-bottom: 20px;
}

/* inner page about us section end  */


/* single page service section start  */

.single-service-col {
    margin-top: 40px;
}

.single-service-title {
    font-size: 40px;
    margin: 20px 0;
} 

.single-service-related-title {
    font-size: 24px;
    margin-bottom: 10px;
}

/* single page service section end  */



/* single page blog section start  */

.single-blog-title {
    font-size: 40px;
}

.blog-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* single page blog section end  */


/* inner contact us section start  */


.inner-contact-contain {
    padding: unset;
}

.inner-contact-info-wrap {
    padding: 20px;
}

/* inner contact us section end  */

    
}

@media screen and (min-width:1200px) and (max-width: 1365.5px) {

.blog-sidebar {
    padding-left: 0;
}
	
.recent-post-image {
    width: 100px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 15px;
}
	
.recent-post-content h5 a {
    font-size: 15px;
}


}

@media screen and (min-width: 300px) and (max-width: 400.5px) {
	.header-wrapper .header-logo img {
        height: auto;
        width: 100px;
    }	
	.f-nav .header-wrapper .header-logo img {
		height: auto;
		width: 85px;
	}
	.header-mobile-enquiry-btn a {
		font-size: 8px;
	}
}
