/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.5
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
header.header.sticky-bar {
    padding: 10px;
}
.main-menu{
display:flex;
align-items:center;
gap:30px;
list-style:none;
margin:0;
padding:0;
}
.container {
    max-width: 94% !important;
}
header.header.sticky-bar img {
 max-width: 80% !important;
}
.header{
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.box-bar.bg-grey-900 i {
    color: #f5c443;
}
.main-menu li{
position:relative;
}

.main-menu li a{
text-decoration:none;
font-weight:500;
color:#000;
}

.main-menu li ul{
position:absolute;
top:100%;
left:0;
background:#fff;
display:none;
padding:10px;
list-style:none;
}

.main-menu li:hover ul{
display:block;
}
.box-background-offer .bg-under {
    position: absolute;
    bottom: -30px;
    top: 140px;
    left: -100px;
    right: -100px;
    z-index: 1;
    background: url("./images/backware.png") center top no-repeat;
}
.box-background-offer .bg-under::before {
    content: "";
    position: absolute;
    bottom: 160px;
    left: -30px;
    height: 95px;
    width: 113px;
    z-index: 1;
    background: url("../imgs/page/homepage1/quote.png") center top no-repeat;
}
section.section.mt-70 {
    overflow: hidden;
}
.box-list-how-it-work .list-how-works li::before {
    content: "";
    width: 100%;
    top: 41px;
    left: 50%;
    height: 2px;
    background: url(./images/bg-dashed.png) repeat-x top left;
    position: absolute;
}
.box-img-testimonials-4::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    max-width: 565px;
    height: 100%;
    background: url(./images/bg-testimonial-4.png) no-repeat bottom right;
    background-size: contain;
    z-index: 1;
}
.box-list-how-it-work .list-how-works li.dashed-2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 3px;
    height: 60px;
    background: url(./images/bg-dashed-2.png) no-repeat top left;
}
section.section-mainless {
    margin: 60px 0;
}
.box-img-testimonials-4 img {
    width: 65%;
}
.cardGrid{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.cardGrid:hover{
transform:translateY(-5px);
}
.cardImage img {
    width: 21%;
    height: auto;
    object-fit: cover;
    border: 1px dotted #c79613;
    border-radius: 41px;
    padding: 8px;
}

.cardInfo{
padding:20px;
}

.cardInfo h5{
font-weight:600;
margin-bottom:10px;
}

.cardInfo p {
    font-size: 14px;
    color: #666 !important;
}
.contact-section{
    padding:80px 0;
    background:#f8f9fc;
}

.contact-form-wrapper{
    max-width:900px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Form Grid */

.form-row{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.form-group{
    flex:1 1 48%;
    display:flex;
    flex-direction:column;
}

.form-group.full{
    flex:1 1 100%;
}

/* Labels */

.form-group label{
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    color:#333;
}

/* Inputs */

.form-group input,
.form-group textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    transition:0.3s;
}

/* Focus */

.form-group input:focus,
.form-group textarea:focus{
    border-color:#ff6a00;
    outline:none;
    box-shadow:0 0 0 3px rgba(255,106,0,0.1);
}

/* Textarea */

.form-group textarea{
    min-height:120px;
    resize:none;
}

/* Button */

.contact-btn{
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
}

.contact-btn:hover{
    background:#e85f00;
}

/* Mobile */

@media(max-width:768px){

	section.innerpages {
    padding: 55px 0 !important;
}
	.sm-hero {
    padding: 80px 0 !important;
}
	.sm-highlight {
    margin: 30px 0 0 0 !important;
}
	h2.sm-section-title {
    padding: 22px 0 0 0;
}
	h1.pagetitle {
    text-align: center;
}
	.sm-hero h1 {
    line-height: 47px;
}
	
.form-group{
    flex:1 1 100%;
}

.contact-form-wrapper{
    padding:25px;
}

}
.swiper-button-next,
.swiper-button-prev{
color:#000;
}
section.py-5.bg-light h2 {
    margin: 5px 0px 10px 0;
}
.card.border-0.shadow-sm.h-100 {
    margin: 20px 0 0 0 !important;
}
.card.border-0.shadow-sm.h-100 h5 {
    margin: 0 0 10px 0;
}
.card.border-0.shadow-sm.h-100 p {
    margin: 0 0 16px 0;
}

/* inner-pages-css */


.sm-hero {
    background: linear-gradient(135deg,#034460,#88574c);
    color: white;
    padding: 80px 40px;
    border-radius: 12px;
}

.sm-hero h1{
font-size:42px;
font-weight:700;
}

.sm-hero p{
font-size:18px;
}

.sm-btn{
background:#f2bd0b;
color:#000;
padding:12px 28px;
font-weight:600;
border-radius:5px;
text-decoration:none;
}

.sm-btn:hover{
background:#e0ac00;
color:#000;
}
.sm-card h4 {
    padding: 14px 0 9px 0;
}

.sm-section-title {
    color: #88574c;
    font-weight: 700;
    margin-bottom: 25px;
}

.sm-card{
padding:30px;
border-radius:10px;
background:#fff;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
height:100%;
}

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

.sm-feature-icon{
font-size:35px;
color:#88574c;
margin-bottom:15px;
}

.sm-highlight{
background:#f9f9f9;
padding:50px 30px;
border-radius:10px;
}

.sm-img{
border-radius:10px;
width:100%;
}

.sm-list li{
margin-bottom:10px;
}

.sm-box{
background:#034460;
color:white;
padding:30px;
border-radius:8px;
}
p {
    font-weight: 400 !important;
    font-family: "epilogue", sans-serif !important;
    line-height: 28px !important;
    font-size: 16px !important;
}
ul.sm-list li i {
    color: #004f72;
    font-size: 17px;
    margin-right: 9px;
}
ul.sm-list li {
    font-size: 15px;
}
h3.fw-bold {
    padding: 0 0 6px 0;
}
.row.sm-section {
    margin: 45px 0 0 0;
}
section.innerpages {
    padding: 55px;
}
.sm-icon i {
    color: #88574c;
    font-weight: 700;
    font-size: 45px;
    padding: 0 0 18px 0;
}
ul#footer\ menu li a {
    color: #c9c9c9;
    line-height: 29px;
}
ul#product-menu li a {
  color: #c9c9c9;
    line-height: 29px;
}
p.contact-text {
    padding: 0 0 40px 0;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-dark.px-5.py-3 {
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    background: #88574c;
    border: none;
}
h3.contact-head {
    color: #88574c;
    font-weight: 600;
}
.bg-how-it-work-2 {
    border-radius: 25px;
}

.map iframe {
    height: 350px !important;
}
@media(max-width:767px) {
    .box-list-how-it-work .list-how-works li::before {
    display: none;
}
}

/* New Sections css */
  .video-section {
    width: 100%;
  }

  .video-wrapper {
    width: 100%;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* offer section */
    .sm-offer-section {
    background: #faf6f2;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .sm-offer-section .container {
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }

  .sm-offer-section .sm-heading {
    font-size: 48px;
    font-weight: 600;
    color: #1A2A28;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .sm-offer-section .sm-heading img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 12px 14px rgba(138, 90, 74, 0.3));
    transition: transform 0.3s;
  }

  .sm-offer-section .sm-heading:hover img {
    transform: rotate(-3deg) scale(1.05);
  }

  .sm-offer-section .sm-desc {
    color: #4c4340;
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
    border-left: 4px solid #8A5A4A;
    padding-left: 2rem;
  }

  .sm-offer-section .sm-btn {
    background: #8A5A4A;
    color: white;
    padding: 1rem 2.6rem;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #cfb09b;
    box-shadow: 0 15px 25px -10px #8a5a4a;
    text-decoration: none;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
  }

  .sm-offer-section .sm-btn i {
    font-size: 1.4rem;
  }

  .sm-offer-section .sm-btn:hover {
    background: #6D4639;
    transform: translateY(-4px);
    box-shadow: 0 28px 30px -12px #5f4033;
  }

  .sm-offer-section .sm-offer-card {
    background: white;
    border-radius: 25px;
    padding: 2rem 1.8rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(138, 90, 74, 0.12);
    box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  .sm-offer-section .sm-offer-card .card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s;
    transform: scale(1.02);
    z-index: -1;
    pointer-events: none;
  }

  .sm-offer-section .sm-offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .sm-offer-section .sm-offer-card:hover::after {
    opacity: 1;
  }

  .sm-offer-section .sm-offer-card:hover .card-bg-img {
    opacity: 0.9;
    transform: scale(1.08);
  }

  .sm-offer-section .sm-offer-card:hover {
    background: transparent;
    border-color: rgba(255, 255, 240, 0.3);
    box-shadow: 0 6px 8px -7px #201814;
  }

  .sm-offer-section .sm-offer-card:hover .sm-card-content h5,
  .sm-offer-section .sm-offer-card:hover .sm-card-content p,
  .sm-offer-section .sm-offer-card:hover .sm-link {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  }

  .sm-offer-section .sm-offer-card:hover .sm-link i {
    color: white;
  }

  .sm-offer-section .sm-offer-card:hover .sm-card-img {
    background: rgba(255, 255, 245, 0.2);
    backdrop-filter: blur(4px);
    border-color: white;
  }

  .sm-offer-section .sm-offer-card:hover .sm-card-img i {
    color: white;
    transform: scale(1.05);
  }

  .sm-offer-section .sm-card-img {
    margin-bottom: 1.5rem;
    background: #f6f0ea;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 2px solid white;
    box-shadow: 0 12px 18px -10px rgba(88, 57, 39, 0.2);
    position: relative;
    z-index: 10;
  }

  .sm-offer-section .sm-card-img i {
    font-size: 2.4rem;
    color: #8A5A4A;
    transition: color 0.2s, transform 0.2s;
  }

  .sm-offer-section .sm-card-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .sm-offer-section .sm-card-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #1A2A28;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
  }

  .sm-offer-section .sm-card-content p {
    font-size: 0.95rem;
    color: #4f4945;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    transition: color 0.2s;
    flex: 1;
  }

  .sm-offer-section .sm-link {
    font-weight: 700;
    color: #8A5A4A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    margin-top: auto;
    align-self: flex-start;
  }

  .sm-offer-section .sm-link i {
    font-size: 1.1rem;
    transition: transform 0.2s;
  }

  .sm-offer-section .sm-link:hover {
    border-bottom-color: currentColor;
  }

  .sm-offer-section .sm-link:hover i {
    transform: translateX(5px);
  }

  .sm-offer-section .owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    gap: 1rem;
  }

  .sm-offer-section .owl-nav button {
    width: 56px !important;
    height: 56px !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #dccbbd !important;
    transition: 0.2s !important;
    font-size: 1.8rem !important;
    color: #8A5A4A !important;
  }

  .sm-offer-section .owl-nav button i {
    font-weight: 900;
  }

  .sm-offer-section .owl-nav button:hover {
    background: #8A5A4A !important;
    color: white !important;
    border-color: #8A5A4A !important;
    transform: scale(1.07);
  }

  .sm-offer-section .contact-strip {
    background: #fff9f3;
    border-radius: 100px;
    padding: 1rem 2.2rem;
    border: 1px solid #e1cfc0;
    margin-top: 3.5rem;
    color: #2d3a37;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .sm-offer-section .contact-strip i {
    color: #8A5A4A;
    margin-right: 0.4rem;
    font-size: 1.1rem;
  }

  .sm-offer-section .contact-strip .badge {
    background: white;
    padding: 0.4rem 1.5rem;
    border-radius: 40px;
    color: #4f3d34;
    border: 1px solid #dac2b2;
    font-weight: 600;
  }

  .sm-offer-section .owl-stage-outer {
    padding: 40px 0;
  }

  @media (max-width: 991px) {
    .sm-offer-section .sm-heading {
      font-size: 32px;
    }

    .sm-offer-section .sm-desc {
      padding-left: 1rem;
    }

    .sm-offer-section .owl-stage-outer {
      padding: 30px 0;
    }

    .sm-offer-section .owl-nav {
      display: none;
    }

    .sm-offer-section .contact-strip {
      gap: 1rem;
      justify-content: center;
      margin-top: 15px;
      border-radius: 25px;
    }
  }

  /* Global Presence */
  .global-presence {
    background-color: #fdfcfb;
    padding-bottom: 4rem;
  }

  .global-presence .contact-strip {
    background: linear-gradient(150deg, #1e2b2f 0%, #122026 100%);
    border-radius: 60px 60px 30px 30px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 150, 0.2);
    color: white;
  }

  .global-presence .contact-strip .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 245, 0.08);
    backdrop-filter: blur(4px);
    padding: .9rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 200, 140, 0.25);
    transition: .2s ease;
  }

  .global-presence .contact-strip .contact-item:hover {
    background: rgba(138, 90, 74, .4);
    border-color: #e6b15c;
    transform: translateY(-3px);
  }

  .global-presence .contact-strip i {
    font-size: 2rem;
    color: #F6A00B;
    filter: drop-shadow(0 2px 5px #00000050);
    width: 2.4rem;
    text-align: center;
  }

  .global-presence .phone-numbers .num {
    font-size: 1.25rem;
    letter-spacing: .5px;
    background: rgba(0, 0, 0, .3);
    padding: .15rem .9rem;
    border-radius: 40px;
    display: inline-block;
    margin-right: .5rem;
    border-left: 3px solid #F6A00B;
  }

  .global-presence .availability-badge {
    background: #408333;
    font-size: 1rem;
    font-weight: 600;
    padding: .4rem 1.4rem;
    border-radius: 40px;
    box-shadow: 0 0 15px #8bc34a80;
    white-space: nowrap;
  }

  .global-presence .email-chip {
    background: #8A5A4A;
    font-size: 1.2rem;
    padding: .5rem 1.8rem;
    border-radius: 40px;
    font-weight: 500;
  }

  .global-presence .email-chip i {
    font-size: 1.6rem;
    margin-right: 8px;
    color: #ffd78c;
  }

  .global-presence .glowing-badge {
    animation: glow 1.8s infinite alternate;
  }

  @keyframes glow {
    0% {
      box-shadow: 0 0 5px #8bc34a;
    }

    100% {
      box-shadow: 0 0 20px #f3b33d;
    }
  }

  .global-presence .section-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(130deg, #8A5A4A, #b3431b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .global-presence .section-heading h2 i {
    background: none;
    -webkit-text-fill-color: initial;
    color: #FF9933;
    font-size: 2.5rem;
  }

  .global-presence .india-tagline {
    background: #f0ebe5;
    padding: .5rem 1.8rem;
    border-radius: 60px;
    color: #2c3e3a;
    font-weight: 500;
    border-left: 6px solid #FF9933;
    border-right: 6px solid #138808;
  }

  .global-presence .regional-card {
    border-radius: 24px;
    transition: transform .3s cubic-bezier(.2, .9, .3, 1.1), box-shadow .3s;
    background-color: #fff;
    border: 1px solid #fff3e7;
    overflow: hidden;
  }

  .global-presence .regional-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(138, 90, 74, .25) !important;
    border-color: #8A5A4A;
  }

  .global-presence .brand-icon {
    color: #8A5A4A;
  }

  .global-presence .map-wrapper {
    min-height: 540px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fefcf8;
    box-shadow: 0 20px 35px -10px rgba(98, 60, 45, .2);
  }

  .global-presence .world-map-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 90% !important;
    opacity: .3;
    pointer-events: none;
  }

  .global-presence .map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #8A5A4A;
    transform: translate(-50%, -50%);
    z-index: 20;
    cursor: default;
  }

  .global-presence .map-pin i {
    font-size: 28px;
    filter: drop-shadow(0 6px 6px #402e26);
    animation: pulse-pin 2s infinite;
  }

  .global-presence .map-pin:hover i {
    color: #c9784b;
    filter: drop-shadow(0 0 10px #ffb984);
  }

  .global-presence .map-pin span {
    font-size: 12px;
    font-weight: 700;
    color: #1a1e24;
    background: rgba(255, 255, 250, .95);
    padding: 4px 10px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-left: 3px solid #8A5A4A;
    margin-top: 4px;
    backdrop-filter: blur(2px);
    white-space: nowrap;
  }

  .global-presence .pin-india {
    top: 52%;
    left: 70%;
    z-index: 30;
  }

  .global-presence .pin-india i {
    color: #FF9933;
    font-size: 28px;
    filter: drop-shadow(0 0 12px #ffb347);
    animation: pulse-india 1.5s infinite;
  }

  .global-presence .pin-india span {
    background: #fcf3e3;
    border-left: 4px solid #FF9933;
    font-weight: 800;
    font-size: 12px;
  }

  @keyframes pulse-india {
    0% {
      transform: scale(1);
      text-shadow: 0 0 2px #FF9933;
    }

    50% {
      transform: scale(1.25);
      text-shadow: 0 0 20px #138808;
    }

    100% {
      transform: scale(1);
    }
  }

  .global-presence .pin-na {
    top: 33%;
    left: 21%;
  }

  .global-presence .pin-sa {
    top: 70%;
    left: 32%;
  }

  .global-presence .pin-eu {
    top: 28%;
    left: 48%;
  }

  .global-presence .pin-asia {
    top: 43%;
    left: 78%;
  }

  @keyframes pulse-pin {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.15);
    }

    100% {
      transform: scale(1);
    }
  }

  .global-presence .map-legend,
  .global-presence .map-stats {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .85) !important;
    border-radius: 24px;
    border: 1px solid rgba(138, 90, 74, .2);
  }

  .global-presence .map-stats .india-highlight {
    color: #bd5a2b;
    font-weight: 800;
    background: #ffe0c0;
    padding: 0 6px;
    border-radius: 20px;
  }

  .global-presence .contact-footnote {
    background: white;
    border-radius: 20px;
    margin-top: 25px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .03);
    border: 1px solid #e0d6cc;
  }

  .global-presence .contact-footnote span i {
    color: #8A5A4A;
  }

  @media (max-width:991px) {
    .global-presence .contact-strip .d-flex {
      flex-wrap: wrap;
      justify-content: center;
    }

    .global-presence .section-heading h2 {
      font-size: 2rem;
    }

    .global-presence .short-head {
      font-size: 12px;
    }
  }

  /* Sm Works */
  .sm-works {
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(2px);
    border-radius: 25px;
    padding: 60px 30px;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 245, 235, 0.5) 0%, transparent 30%);
  }

  .sm-works .title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
  }

  .sm-works .sm-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(145deg, #4f3a31, #8a5a4a, #b78d74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .5rem;
    text-shadow: 0 2px 5px rgba(138, 90, 74, .15);
  }

  .sm-works .sub-head {
    font-size: 16px;
    color: #5f534b;
    background: #f3eeea;
    display: inline-block;
    padding: .5rem 2rem;
    border-radius: 60px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
    border: 1px solid #e2d5cb;
  }

  .sm-works .filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 4rem;
  }

  .sm-works .filter-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    color: #4e3f38;
    cursor: pointer;
    transition: .25s ease;
    border: 1.5px solid #e2cfc0;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .02);
    letter-spacing: .02em;
  }

  .sm-works .filter-btn.active {
    background: #8a5a4a;
    color: white;
    border-color: #8a5a4a;
    box-shadow: 0 15px 25px -8px rgba(138, 90, 74, .5);
    transform: translateY(-2px);
  }

  .sm-works .filter-btn:hover {
    background: #c1a18f;
    color: white;
    border-color: #c1a18f;
    transform: translateY(-2px);
  }

  .sm-works .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .sm-works .portfolio-item {
    transition: all .3s;
  }

  .sm-works .portfolio-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    background: #e7dbd2;
    box-shadow: 0 25px 40px -12px rgba(68, 52, 42, .3);
    transition: .4s cubic-bezier(.2, .9, .3, 1);
    border: 1px solid rgba(255, 255, 255, .5);
    aspect-ratio: .9/1.1;
  }

  .sm-works .portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(30, 20, 15, .7) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
  }

  .sm-works .portfolio-card:hover::before {
    opacity: 1;
  }

  .sm-works .portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.25, .45, .45, .95);
    will-change: transform;
  }

  .sm-works .portfolio-card:hover img {
    transform: scale(1.1);
  }

  .sm-works .card-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(4px);
    color: #4f3429;
    font-weight: 700;
    font-size: .8rem;
    padding: .3rem 1.4rem;
    border-radius: 40px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid #dccbbd;
    z-index: 5;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    transition: .2s;
  }

  .sm-works .portfolio-card:hover .card-tag {
    background: #8a5a4a;
    color: white;
    border-color: #8a5a4a;
  }

  .sm-works .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.8rem;
    z-index: 10;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: .4s ease .1s;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .4);
  }

  .sm-works .portfolio-card:hover .overlay {
    transform: translateY(0);
    opacity: 1;
  }

  .sm-works .overlay h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: .15rem;
    line-height: 1.2;
  }

  .sm-works .overlay p {
    font-size: 1rem;
    font-weight: 500;
    opacity: .9;
  }

  .sm-works .collection-footer {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fcf8f4;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    border: 1px solid #e5d6cb;
  }

  .sm-works .type-indicator {
    display: flex;
    gap: 2rem;
  }

  .sm-works .type-indicator span {
    font-weight: 600;
    color: #6a4e40;
  }

  .sm-works .type-indicator i {
    color: #b3805a;
    margin-right: .3rem;
  }

  .sm-works .contact-highlight {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .sm-works .contact-highlight a {
    text-decoration: none;
    color: #2c3e3a;
    font-weight: 600;
    background: #e9dfd7;
    padding: .5rem 1.8rem;
    border-radius: 40px;
    transition: .2s;
    border: 1px solid #ceb7a8;
  }

  .sm-works .contact-highlight a i {
    color: #8a5a4a;
    margin-right: .5rem;
  }

  .sm-works .contact-highlight a:hover {
    background: #8a5a4a;
    color: white;
  }

  .sm-works .contact-highlight a:hover i {
    color: white;
  }

  @media(max-width:1100px) {
    .sm-works .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media(max-width:800px) {
    .sm-works {
      border-radius: 25px;
      padding: 60px 20px;
    }

    .sm-works .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .sm-works .sm-title {
      font-size: 38px;
    }

    .sm-works .sub-head {
      font-size: 12px;
    }

    .sm-works .filter-tabs {
      gap: 10px;
      margin-bottom: 2rem;
    }

    .sm-works .filter-btn {
      padding: 8px 25px;
      font-size: 12px;
    }

    .sm-works .collection-footer {
      flex-wrap: wrap;
      padding: 15px;
      border-radius: 25px;
    }

    .sm-works .type-indicator {
      flex-wrap: wrap;
      gap: 1rem;
    }

    .sm-works .contact-highlight {
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 10px;
    }

    .sm-works .contact-highlight a {
      padding: 6px 12px;
      font-size: 11px;
    }
  }

  @media(max-width:500px) {
    .sm-works .portfolio-grid {
      grid-template-columns: 1fr;
    }
  }

  .sm-works .portfolio-item {
    animation: fadeUp .5s backwards;
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(15px);
    }
  }

  /* Trust Section Css */
  .sm-trust-section {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    isolation: isolate;
  }

  .sm-trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 20, 25, 0.85) 0%, rgba(30, 45, 50, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .sm-trust-section .container {
    position: relative;
    z-index: 10;
  }

  .sm-trust-section .sm-trust-heading h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #fff5e6, #ffe0b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .sm-trust-section .sm-trust-heading p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 245, 0.9);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    display: inline-block;
  }

  .sm-trust-section .sm-stat-card {
    background: rgba(10, 25, 30, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 140, 0.2);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 30px 40px -25px black;
    height: 100%;
    border-radius: 25px;
  }

  .sm-trust-section .sm-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 50, 55, 0.8);
    border-color: #e6b15c;
    box-shadow: 0 40px 55px -20px #000;
  }

  .sm-trust-section .sm-stat-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.6)) brightness(1.1);
  }

  .sm-trust-section .sm-stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: #e6b15c;
    margin-bottom: 0.4rem;
    line-height: 1.2;
  }

  .sm-trust-section .sm-stat-card p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0e7dc;
    margin-bottom: 0;
  }

  .sm-trust-section .sm-quote-wrapper {
    background: rgba(20, 35, 40, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(230, 177, 92, 0.3);
    padding: 3.5rem 3rem;
    margin-top: 3rem;
    border-radius: 25px;
    box-shadow: 0 40px 60px -25px #030303;
  }

  .sm-trust-section .sm-quote-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: normal;
    color: #ffddaa;
    margin-bottom: 0.8rem;
  }

  .sm-trust-section .sm-quote-desc {
    font-size: 1.2rem;
    color: #d9d0c5;
    margin-bottom: 2rem;
  }

  .sm-trust-section .sm-quote-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 25px 35px -20px black;
    border: 2px solid rgba(230, 177, 92, 0.4);
    transition: 0.3s;
  }

  .sm-trust-section .sm-quote-image img:hover {
    border-color: #e6b15c;
  }

  @media (max-width: 991px) {
    .sm-trust-section .sm-trust-heading h2 {
      font-size: 2.8rem;
    }

    .sm-trust-section .sm-quote-wrapper {
      padding: 2rem;
    }
  }

  @media (max-width: 768px) {
    .sm-trust-section .sm-stat-card {
      margin-bottom: 1.5rem;
    }
  }

  /* Contact Form Css */
  .sm-contact-form .custom-input,
  .sm-contact-form .form-select,
  .sm-contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(230, 177, 92, 0.3);
    color: white;
    padding: 0.9rem 1.2rem;
    border-radius: 0 !important;
    font-size: 12px;
    transition: 0.2s;
    box-shadow: none;
    backdrop-filter: blur(4px);
  }

  .sm-contact-form .custom-input:focus,
  .sm-contact-form .form-select:focus,
  .sm-contact-form textarea:focus {
    background: rgba(40, 60, 65, 0.7);
    border-color: #e6b15c;
    color: white;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(230, 177, 92, 0.2);
  }

  .sm-contact-form .custom-input::placeholder,
  .sm-contact-form textarea::placeholder {
    color: rgba(255, 240, 210, 0.7);
  }

  .sm-contact-form .form-select option {
    background: #1e353b;
    color: white;
  }

  .sm-contact-form .extra-services-title {
    color: #ffd893;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .sm-contact-form .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .sm-contact-form .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(255, 255, 240, 0.15);
    border: 1px solid #e6b15c;
    border-radius: 0;
    box-shadow: none;
  }

  .sm-contact-form .form-check-input:checked {
    background-color: #e6b15c;
    border-color: #e6b15c;
  }

  .sm-contact-form .form-check-label {
    color: #f0dfcd;
    font-weight: 500;
  }

  .sm-contact-form .wpcf7-list-item {
    margin: 0;
  }

  .sm-contact-form .btn-submit {
    background: #e6b15c;
    color: #0b2025;
    width: 100%;
    font-weight: 700;
    padding: 15px 30px;
    font-size: 1.3rem;
    border: none;
    border-radius: 0;
    transition: 0.25s;
    box-shadow: 0 15px 25px -8px #00000080;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

  .sm-contact-form .btn-submit i {
    font-size: 1.4rem;
  }

  .sm-contact-form .btn-submit:hover {
    background: #ffc97a;
    color: #0b2025;
    transform: translateY(-3px);
    box-shadow: 0 22px 30px -8px black;
  }

  .sm-contact-form .wpcf7-checkbox label {
    font-size: 13px;
    margin: 0;
  }

  /* Faq section css */
  .sm-faq-section {
    background: #ffffff;
    padding: 60px 0;
    width: 100%;
    margin: 0 auto;
  }

  .sm-faq-gallery {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    padding-right: 0.5rem;
    transition: all 0.2s;
  }

  .sm-faq-img-lg {
    border-radius: 2.2rem;
    overflow: hidden;
    box-shadow: 0 30px 45px -20px rgba(98, 60, 45, 0.35);
    border: 1px solid #fff3ea;
    transition: 0.4s ease;
  }

  .sm-faq-img-lg img {
    width: 100%;
    display: block;
    transition: transform 0.7s;
  }

  .sm-faq-img-lg:hover img {
    transform: scale(1.02);
  }

  .sm-faq-img-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
  }

  .sm-faq-img-sm {
    flex: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
    border: 1px solid #ffeede;
    transition: 0.3s;
  }

  .sm-faq-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
  }

  .sm-faq-img-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -15px #8a5a4a60;
  }

  .sm-faq-img-sm:hover img {
    transform: scale(1.08);
  }

  .sm-faq-content {
    padding-left: 2.5rem;
  }

  .sm-faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #0F1616;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .sm-faq-desc {
    color: #5f5b57;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    border-left: 4px solid #8A5A4A;
    padding-left: 1.8rem;
  }

  .sm-faq-accordion .accordion-item {
    border: none;
    border-radius: 1.5rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.06);
    background: white;
    border: 1px solid rgba(138, 90, 74, 0.1);
    transition: 0.2s;
  }

  .sm-faq-accordion .accordion-item:hover {
    box-shadow: 0 14px 30px -12px rgba(138, 90, 74, 0.2);
    border-color: #d7b6a2;
  }

  .sm-faq-accordion .accordion-button {
    font-weight: 700;
    background: white;
    color: #0F1616;
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    border: none;
    box-shadow: none;
    transition: 0.2s;
    font-family: 'Outfit', sans-serif;
  }

  .sm-faq-accordion .accordion-button:not(.collapsed) {
    background: #8A5A4A;
    color: white;
    box-shadow: none;
  }

  .sm-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
  }

  .sm-faq-accordion .accordion-button::after {
    background-size: 1.3rem;
    transition: 0.2s;
  }

  .sm-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }

  .sm-faq-accordion .accordion-body {
    background: #fcfaf8;
    color: #4a4540;
    padding: 1.8rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid #f0ded2;
  }

  /* responsive */
  @media (max-width: 991px) {
    .sm-faq-section {
      padding:30px 0;
    }
    .sm-faq-img-sm,.sm-faq-img-lg {
    border-radius: 15px;
}

    .sm-faq-gallery {
      position: relative;
      top: 0;
      margin-bottom: 2rem;
    }

    .sm-faq-content {
      padding-left: 0;
    }

    .sm-faq-title {
      font-size: 38px;
    }
  }

  /* Cta Section Css */
  .sm-cta-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    padding: 6rem 0;
    isolation: isolate;
  }

  .sm-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 10, 15, 0.8) 0%, rgba(40, 25, 15, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .sm-cta-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
  }

  .sm-cta-section .sm-cta-wrapper {
    background: rgba(20, 30, 30, 0.3);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-radius: 3rem;
    padding: 4rem 5rem;
    box-shadow: 0 40px 60px -20px #000000cc, 0 0 0 1px rgba(230, 177, 92, 0.2) inset;
    border: 1px solid rgba(255, 235, 180, 0.25);
  }

  .sm-cta-section .sm-cta-subtitle {
    font-size: 1.4rem;
    color: #fff5e6;
    opacity: 0.95;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .sm-cta-section .sm-cta-subtitle i {
    color: #e6b15c;
    font-size: 1.8rem;
  }

  .sm-cta-section .sm-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }

  .sm-cta-section .sm-cta-title span {
    color: #e6b15c;
    background: linear-gradient(145deg, #e6b15c, #f5c17b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
    filter: drop-shadow(0 2px 5px #00000050);
  }

  .sm-cta-section .sm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #e6b15c;
    color: #1a2a27;
    padding: 10px 20px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 25px 35px -10px #000000b3, 0 0 0 2px rgba(255, 215, 120, 0.3);
    border: 1px solid #ffcf8a;
    letter-spacing: 0.03em;
  }

  .sm-cta-section .sm-cta-btn:hover {
    background: #ffcb7a;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 35px 45px -10px black, 0 0 0 3px #ffdd9e;
    color: #0f2623;
  }

  .sm-cta-section .sm-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.7rem;
    border-radius: 50%;
    transition: 0.2s;
    backdrop-filter: blur(2px);
  }

  .sm-cta-section .sm-cta-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2.2;
    filter: drop-shadow(0 2px 3px black);
  }

  .sm-cta-section .sm-cta-btn:hover .sm-cta-icon {
    background: rgba(255, 255, 200, 0.3);
    transform: rotate(2deg);
  }

  @media (max-width: 991px) {
    .sm-cta-section .sm-cta-title {
      font-size: 2.8rem;
    }

    .sm-cta-section .sm-cta-wrapper {
      padding: 3rem;
    }

    .sm-cta-section .sm-cta-btn {
    padding: 5px 16px;
    font-size: 14px;
    border-radius: 15px;
    gap: 10px;
}
  }

  @media (max-width: 576px) {
    .sm-cta-section .sm-cta-title {
      font-size: 2.2rem;
    }

    .sm-cta-section .sm-cta-wrapper {
      padding: 2rem;
      border-radius: 2rem;
    }

    .sm-cta-section .sm-cta-subtitle {
      font-size: 1.2rem;
    }
  }

  body, section, header, footer {
    overflow-x: hidden;
  }
  .sm-works, .global-presence, header, .sm-faq-section, section.blog-section, section.map-section{
    overflow-y: hidden;
  }