 :root {
     --gold: #e63a3a;
     --gold-light: #ff7070;
     --gold-dark: #b02020;
     --bg: #FFF5F5;
     --card-bg: #FFFFFF;
     --text-dark: #1A1A1A;
     --text-mid: #444444;
     --border: #F5D0D0;
     --primary: #e63a3a;
     --primary-light: #A52020;
     --accent: #e63a3a;
     --bgs: #F2D98A;
     --bg-dark: #E8C96A;
     --text: #5A0E0E;
     --white: #FFFFFF;
 }

 .form-select {
     appearance: none;
     -webkit-appearance: none;

     padding-right: 45px;

     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

     background-repeat: no-repeat;
     background-position: right 14px center;
     background-size: 20px !important;
     border-radius: none;
 }

 .hl-title {
     text-align: center;
 }

 .hl-wrap {
     padding: 30px 70px;
     background-color: #fff;
     max-width: 1240px;
     margin: 0 auto;
     position: relative;
 }

 /* Title */
 .hl-title {
     font-size: 22px;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 40px;
 }

 /* Stepper */
 .stepper {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 2.5rem;
     margin: 0px 200px 2.5rem;
 }

 .step-node {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     cursor: pointer;
     background: #f5f5f5;
     color: #aaa;
     border: 1px solid #ddd;
 }

 /* ONLY ACTIVE RED */
 .step-node.active {
     background: #C8251A;
     color: #fff;
     box-shadow: 0 0 0 5px rgba(200, 37, 26, 0.18);
 }

 .step-line {
     flex: 1;
     height: 1.5px;
     background: #e0e0e0;
 }

 /* Layout */
 .content-area {
     display: flex;
     justify-content: space-between;
     gap: 2rem;
 }

 /* Left */
 .step-text {
     flex: 1;
     width: 50%;
     display: flex;
     align-items: center;
 }

 .step-label {
     font-size: 11px;
     color: #C8251A;
     margin-bottom: 6px;
     text-transform: uppercase;
 }

 .step-heading {
     font-size: 28px;
     letter-spacing: 2%;
     line-height: 32px;
     margin-bottom: 16px;
     margin-top: 30px;
 }

 .step-desc {
     font-size: 20px;
     letter-spacing: 0;
     line-height: 26px;
     max-width: 415px;
 }

 /* Right */
 .tablet-frame {
     width: 50%;
 }


 /* Nav */
 .nav-controls {
     display: flex;
     align-items: center;
     justify-content: space-between;
     max-width: 200px;
     margin: 2rem auto 0;
     position: absolute;
     top: 50%;
     left: 25px;
 }

 .nav-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 1px solid #ddd;
     background: #fff;
     cursor: pointer;
 }

 .slide-in-right {
     animation: slideRight 0.4s ease;
 }

 .nav-btns {
     right: 0px;
 }

 .slide-in-left {
     animation: slideLeft 0.4s ease;
     right: 0px;
 }

 .slider-wrapper {
     position: relative;
 }

 /* Buttons */
 .nav-btns {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 45px;
     height: 45px;
     border-radius: 50%;
     border: 1px solid #ddd;
     background: #fff;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
 }

 /* LEFT */
 .nav-btns.left {
     left: -60px;
     /* adjust as needed */
 }

 /* RIGHT */
 .nav-btns.right {
     right: -60px;
     /* adjust as needed */
 }


 @keyframes slideRight {
     from {
         opacity: 0;
         transform: translateX(40px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes slideLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }





 /* header */
 /* ===== HEADER BASE ===== */
 .menu_top_fixed {
     position: sticky;
     top: 0;
     z-index: 9999;
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 /* ===== TOP BAR ===== */
 .top-bar {
     display: flex;
     justify-content: space-between;
     padding: 6px 40px;
     font-size: 13px;
     background: #111;
     color: #fff;
 }

 .top-bar a {
     /* color: #fff; */
     text-decoration: none;
     margin-left: 15px;
 }

 /* ===== NAV ===== */
 nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 30px;
 }

 /* ===== LOGO ===== */
 .logo img {
     width: 55px;
 }

 /* ===== NAV LINKS ===== */
 .nav-links {
     display: flex;
     list-style: none;
     gap: 25px;
     margin-bottom: 0px;
 }

 .header-search button {
     padding: 3px 7px;
 }

 .nav-links li {
     position: relative;
     padding: 0px;
 }

 .nav-links a {
     text-decoration: none;
     color: #222;
     font-weight: 500;
     transition: 0.3s;
 }

 .nav-links a:hover {
     color: #e63a3a;
 }

 /* ===== CTA BUTTON ===== */
 .btn-estimate {
     background: #e63a3a;
     color: #fff;
     padding: 7px 25px;
     border-radius: 100px;
     text-decoration: none;
     font-weight: 500;
     transition: 0.3s;
 }

 .btn-estimate:hover {
     background: #c92f2f;
 }

 /* ===== MEGA MENU ===== */
 .has-mega-menu:hover .mega-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .mega-menu {
     position: absolute;
     top: 100%;
     left: 0;
     width: 300px;
     background: #fff;
     padding: 1px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border-radius: 8px;
     display: flow;

     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: 0.3s;
 }

 .menu-item {
     padding: 10px 10px;
     border-radius: 6px;
     transition: 0.2s;
 }

 .menu-item {
     display: flex;
     align-items: center;
     border-bottom: 1px solid #eee;
     cursor: pointer;
     width: calc(100% / 2);
 }

 .mega-column {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-around;
     text-align: left;
 }

 .menu-item:hover {
     background: #f5f5f5;
 }

 .menu-item a {
     color: #333;
     text-decoration: none;
     font-size: 14px;
 }

 .menu-text {
     font-size: 14px;
     color: #333;
     font-weight: 500;
     text-transform: capitalize;
 }

 /* ===== SEARCH ICON ===== */
 .header-search {
     position: relative;
 }

 #headerSearchInput {
     display: none;
 }

 /* ===== SEARCH OVERLAY ===== */
 .search-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 99999;

     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
 }

 .search-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .search-box {
     background: #fff;
     padding: 15px 10px 10px 10px;
     border-radius: 10px;
     width: 90%;
     max-width: 500px;
     /* display: flex; */
     flex-direction: row-reverse;
     position: relative;
 }

 .search-box button {
     background: #e63a3a;
     border: none;
     color: #fff;
     border-radius: 100px;
     width: 25px;
     height: 25px;
     padding: 0px !important;
     margin: 0px;
     font-size: 20px;
     line-height: 25px;
 }

 textarea#Comments {
     height: 40px;
     overflow: hidden;
 }

 .pcScreen {
     display: none;
 }

 div#overlaySearchResults {
     /* background: #eee; */
     /* padding: 5px 15px; */
     border-radius: 5px;
 }

 .category-result-item {
     padding: 5px 0px;
     cursor: pointer;
     border-bottom: 1px solid #f0f0f0 !important;
     transition: background 0.2s;
     font-size: 14px;
     text-transform: capitalize;
 }

 .search-box input {
     flex: 1;
     border: none;
     outline: none;
     font-size: 16px;
     border-bottom: 1px solid #d0d0d0;
     padding: 6px 4px;
 }

 .modal.show .modal-dialog {
     transform: none;
     width: fit-content;
 }

 .search-box button {
     background: #e63a3a;
     border: none;
     color: #fff;
     padding: 10px 25px;
     border-radius: 100px;
     position: absolute;
     right: 10px;
 }

 .modact {
     padding: 0px;
 }

 /* ===== MOBILE ===== */
 .nav-toggle {
     display: none;
 }

 .top-bar {
     position: relative;
     background: #000;
     color: #fff !important;
     padding: 8px 15px;
     background: #e63a3a !important;
 }

 .top-bar a {
     color: #fff !important;
 }

 .close-topbar {
     margin-left: 15px;
     cursor: pointer;
     font-size: 18px;
     font-weight: bold;
 }

 .header-search {
     border-radius: 100px;
     width: 30px;
     height: 30px;
 }





 @media (max-width: 768px) {

     .top-bar {
         display: none;
     }

     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         width: 260px;
         height: 100%;
         background: #fff;
         flex-direction: column;
         padding: 20px;
         transition: 0.3s;
     }

     .nav-links.active {
         right: 0;
     }

     .nav-toggle {
         display: block;
     }

     .btn-estimate {
         display: none;
     }
 }

 /* header css end */



 .steps-section {
     width: 100%;
     align-items: center;
     justify-content: center;
     display: flex;
     margin: auto;
     padding: 30px 100px;
 }

 /* ── 4-Column Grid ── */
 .steps-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
 }

 /* ── Each Column ── */
 .step-col {
     padding: 0 1rem 1.5rem 0;
     border-right: 1.5px dashed #ccc;
 }

 .step-col:first-child {
     padding-left: 0;
 }

 .step-icon-circle img {
     width: 100%;
 }

 .step-col:not(:first-child) {
     padding-left: 1rem;
 }

 .step-col:last-child {
     border-right: none;
     padding-right: 0;
 }

 /* ── Header Block ── */
 .step-header {
     position: relative;
     height: 110px;
     margin-bottom: 1.8rem;
 }

 /* ── Big Faded Gradient Number (background) ── */
 .step-big-num {
     position: absolute;
     top: 0;
     left: -4px;
     font-size: 110px;
     font-weight: 800;
     line-height: 1;
     letter-spacing: -5px;
     z-index: 0;
     user-select: none;
     opacity: 0.25;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .num-1 {
     background-image: linear-gradient(120deg, #b5e48c29, #52b788);
 }

 .num-2 {
     background-image: linear-gradient(120deg, #ffb3c629, #e5497a);
 }

 .num-3 {
     background-image: linear-gradient(120deg, #c8b6e21e, #7b2d8b);
 }

 .num-4 {
     background-image: linear-gradient(120deg, #90e1ef25, #0077b6);
 }

 /* ── Heading overlaps bottom of number ── */
 .step-labels {
     position: absolute;
     bottom: -45px;
     left: 0;
     z-index: 1;
     font-size: 22px;
     font-weight: 700;
     color: #1a1a1a;
     line-height: 1;
 }

 /* ── Icon Circle top-right ── */
 .step-icon-circle {
     position: absolute;
     top: 12px;
     right: 0;
     width: 56px;
     height: 56px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2;
 }

 .step-icon-circle svg {
     width: 26px;
     height: 26px;
     fill: none;
     stroke-width: 1.6;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 .col-1 .step-icon-circle {
     background: #d8f3dc;
 }

 .col-1 .step-icon-circle svg {
     stroke: #1b4332;
 }

 .col-2 .step-icon-circle {
     background: #ffe0eb;
 }

 .col-2 .step-icon-circle svg {
     stroke: #880e4f;
 }

 .col-3 .step-icon-circle {
     background: #ede7f6;
 }

 .col-3 .step-icon-circle svg {
     stroke: #4a148c;
 }

 .col-4 .step-icon-circle {
     background: #e0f7fa;
 }

 .col-4 .step-icon-circle svg {
     stroke: #006064;
 }

 /* ── Description ── */
 .step-desc {
     font-size: 14px;
     color: #666;
     line-height: 1.4;
     margin-top: 60px;
 }

 /* Tablet — 2 columns */
 @media (max-width: 768px) {
     .steps-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .step-col:nth-child(2) {
         border-right: none;
         padding-right: 0;
     }

     .step-col:nth-child(3) {
         border-right: 1.5px dashed #ccc;
         border-top: 1.5px dashed #ccc;
         padding-left: 0;
         padding-top: 1.5rem;
         margin-top: 1rem;
     }

     .step-col:nth-child(4) {
         border-right: none;
         border-top: 1.5px dashed #ccc;
         padding-right: 0;
         padding-top: 1.5rem;
         margin-top: 1rem;
     }
 }

 /* Mobile — 1 column */
 @media (max-width: 460px) {
     .steps-grid {
         grid-template-columns: 1fr;
     }

     .step-col,
     .step-col:nth-child(n) {
         border-right: none !important;
         border-top: 1.5px dashed #ccc;
         padding: 1.5rem 0 !important;
         margin-top: 0;
     }

     .step-col:first-child {
         border-top: none;
         padding-top: 0 !important;
     }
 }




 .faq {
     padding: 50px 25px;
 }

 .headings {
     text-transform: capitalize;
     text-align: center;
 }

 .section-heading {
     font-size: 28px;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 20px;
 }

 .sub-heading {
     margin: 20px auto 0 15px;
     /* max-width: 45ch; */
     color: #939393;
     line-height: 1.6;
     text-align: left;
 }

 .que-container {
     max-width: 1200px;
     margin: 50px auto 0;
 }

 .question {
     border-top: 1px solid #d2d2d2;
 }

 .question:last-child {
     border-bottom: 1px solid #d2d2d2;
 }

 .question button {
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: transparent;
     font-size: 20px;
     color: #131313;
     text-transform: capitalize;
     font-weight: 500;
     letter-spacing: 1px;
     padding: 15px 20px 15px 0;
     border: none;
     cursor: pointer;
     transition: color 0.3s;
 }

 .question button i {
     color: #c92f2f;
     transition: transform 0.3s;
 }

 .question p {
     color: #939393;
     line-height: 1.6;
     height: 0;
     overflow: hidden;
     transition: all 0.3s;
 }

 .question button.show+p {
     padding-bottom: 5px;
     height: auto;
 }

 .question button.show {
     color: #ff0000;
 }

 .question button.show i {
     transform: rotate(180deg);
 }

 .mobile-form {
     display: none;
 }


 /* slider css start */
 .sliderauto {
     --totSlides: 7;
     --slideWidth: 200px;
     --slideHeight: 100px;
     --animationSpeed: calc(2s * var(--totSlides));
     /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
     /* height: var(--slideHeight); */
     margin: auto;
     overflow: hidden;
     position: relative;
     width: 100%;

     margin: 0px 30px;
 }

 .sliderauto .slideauto-track {
     animation: scroll var(--animationSpeed) linear infinite;
     display: flex;
     width: calc(var(--slideWidth) * var(--totSlides) * 2);
     gap: 30px;
 }

 .sliderauto .slideauto {

     margin-top: 30px;
     /* background: red; */
     width: var(--slideWidth);
     /* filter: grayscale(100); */
     overflow: hidden;
 }

 .sliderauto .slideauto img {
     height: 100%;
     width: auto;
     max-width: 100%;
     object-fit: contain;
 }





 /* awwwwadrs */


 /* ── Section ── */
 .awards-section {
     padding: 20px 0 30px;
     background: var(--bg);
     position: relative;
     overflow: hidden;
 }

 .awards-section::before {
     content: '';
     position: absolute;
     top: -60px;
     left: 50%;
     transform: translateX(-50%);
     width: 700px;
     height: 400px;
     background: radial-gradient(ellipse at center, rgba(201, 168, 76, .15) 0%, transparent 70%);
     pointer-events: none;
 }

 .awards-section .container {
     max-width: 95%;
 }

 /* ── Heading ── */
 .awards-heading {
     /* font-family: 'Playfair Display', serif; */
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 900;
     color: var(--text-dark);
     line-height: 1.2;
     margin-bottom: 10px;
 }

 .awards-heading .highlight {
     background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .awards-subtitle {
     font-size: 1rem;
     color: var(--text-mid);
     letter-spacing: .04em;
     margin-bottom: 25px;
 }

 /* ── Divider ── */
 .gold-divider {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-bottom: 25px;
 }

 .gold-divider span {
     display: block;
     height: 2px;
     width: 60px;
     background: linear-gradient(90deg, transparent, var(--gold));
     border-radius: 2px;
 }

 .gold-divider span:last-child {
     background: linear-gradient(90deg, var(--gold), transparent);
 }

 .gold-divider i {
     width: 10px;
     height: 10px;
     background: var(--gold);
     transform: rotate(45deg);
     border-radius: 2px;
     display: block;
 }

 /* ── Award Card ── */
 .award-card {
     background: var(--card-bg);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 15px 20px 15px;
     text-align: center;
     position: relative;
     transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
     height: 100%;
     box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
     overflow: hidden;
 }

 .award-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
     opacity: 0;
     transition: opacity .35s ease;
     border-radius: 0 0 20px 20px;
 }

 .award-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 16px 48px rgba(201, 168, 76, .18);
     border-color: var(--gold);
 }

 .award-card:hover::after {
     opacity: 1;
 }

 /* icon wrapper */
 .award-icon-wrap {
     width: 110px;
     height: 110px;
     margin: 0 auto 24px;
     border-radius: 50%;
     background: linear-gradient(145deg, #FDF8EE, #F0E6C8);
     border: 2px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
     position: relative;
     transition: border-color .35s, background .35s;
     box-shadow: 0 4px 16px rgba(201, 168, 76, .12), inset 0 2px 6px rgba(255, 255, 255, .8);
 }

 .award-card:hover .award-icon-wrap {
     border-color: var(--gold);
     background: linear-gradient(145deg, #FFF8E5, #F5E0A0);
 }

 /* gold ring animation on hover */
 .award-icon-wrap::before {
     content: '';
     position: absolute;
     inset: -6px;
     border-radius: 50%;
     border: 2px dashed var(--gold);
     opacity: 0;
     transition: opacity .35s;
     animation: spin 12s linear infinite;
 }

 .award-card:hover .award-icon-wrap::before {
     opacity: .5;
 }

 @keyframes spin {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 /* badge */
 .award-badge {
     position: absolute;
     top: 18px;
     right: 18px;
     background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
     color: #fff;
     font-size: .6rem;
     font-weight: 700;
     letter-spacing: .08em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 20px;
 }

 /* stars */
 .award-stars {
     color: var(--gold);
     font-size: .85rem;
     letter-spacing: 2px;
     margin-bottom: 12px;
     display: block;
 }

 /* title */
 .award-title {
     /* font-family: 'DM Sans', sans-serif; */
     font-size: .75rem;
     font-weight: 700;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--text-dark);
     line-height: 1.55;
     margin: 0;
 }

 /* ── Bottom tagline ── */
 .awards-tagline {
     font-size: .85rem;
     color: var(--text-mid);
     letter-spacing: .06em;
 }

 .awards-tagline strong {
     color: var(--gold-dark);
 }


 /* ── Left dashed box ── */
 .logo-col {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 30px 10px 30px 30px;
     position: relative;
 }

 .dashed-box {
     /* border: 2px dashed var(--primary); */
     border-radius: 10px;
     padding: 2px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, .12);
 }

 /* ── Compass SVG ── */
 .compass-wrap {
     width: 130px;
     height: 130px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .compass-wrap img {
     width: 175px;
     height: 175px;
 }

 /* ── Middle text col ── */
 .text-col {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 30px 20px;
 }

 .vastu-title {
     font-family: 'Poppins', sans-serif;
     font-size: clamp(1.6rem, 3vw, 2.4rem);
     font-weight: 800;
     color: var(--primary);
     margin: 0 0 8px;
     display: flex;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .free-badge {
     background: var(--accent);
     color: #fff;
     font-size: .65rem;
     font-weight: 700;
     letter-spacing: .06em;
     padding: 4px 10px;
     border-radius: 6px;
     vertical-align: middle;
     text-transform: uppercase;
     display: inline-block;
 }

 .vastu-sub {
     color: var(--text);
     font-size: clamp(.85rem, 1.4vw, 1rem);
     font-weight: 400;
     line-height: 1.6;
     margin: 0;
     opacity: .85;
 }

 /* ── Right CTA col ── */
 .cta-col {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 30px 30px 30px 10px;
 }

 .vastu-btn {
     background: var(--primary);
     color: #fff;
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     font-size: .95rem;
     letter-spacing: .04em;
     border: none;
     border-radius: 50px;
     padding: 15px 36px;
     cursor: pointer;
     transition: background .28s, transform .28s, box-shadow .28s;
     box-shadow: 0 6px 24px rgba(123, 26, 26, .35);
     white-space: nowrap;
     text-decoration: none;
     display: inline-block;
 }

 .vastu-btn:hover {
     background: var(--primary-light);
     transform: translateY(-3px) scale(1.03);
     box-shadow: 0 12px 32px rgba(123, 26, 26, .4);
     color: #fff;
 }

 .vastu-btn .arrow {
     margin-left: 8px;
     font-size: 1.1rem;
     transition: transform .25s;
     display: inline-block;
 }

 .vastu-btn:hover .arrow {
     transform: translateX(4px);
 }

 /* ── Direction labels ── */
 .dir-label {
     position: absolute;
     font-size: .58rem;
     font-weight: 700;
     letter-spacing: .1em;
     color: var(--primary);
     opacity: .5;
 }

 .dir-n {
     top: 2px;
     left: 50%;
     transform: translateX(-50%);
 }

 .dir-s {
     bottom: 2px;
     left: 50%;
     transform: translateX(-50%);
 }

 .dir-e {
     right: 2px;
     top: 50%;
     transform: translateY(-50%);
 }

 .dir-w {
     left: 2px;
     top: 50%;
     transform: translateY(-50%);
 }

 /* responsive */
 @media (max-width: 767px) {
     .vastu-section {
         margin: 16px;
         border-radius: 14px;
     }

     .logo-col {
         padding: 24px 0 10px;
         justify-content: center;
     }

     .text-col {
         padding: 10px 24px;
         text-align: center;
     }

     .vastu-title {
         justify-content: center;
     }

     .cta-col {
         padding: 16px 24px 28px;
     }

     .vastu-btn {
         width: 100%;
         text-align: center;
     }

     .vastu-sub {
         text-align: center;
     }
 }
















 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(var(--slideWidth) * var(--totSlides) * -1));
     }
 }


 .widget-whatsapp {
     bottom: 30px !important;
 }

 /* ===== SECTION ===== */
 .services-section {
     text-align: center;
     padding: 30px 10px;
     background: #f5f4f5;
 }

 .services-section h2 {
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 40px;
 }

 /* ===== GRID ===== */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
     max-width: 1200px;
     margin: auto;
 }

 /* ===== ITEM ===== */
 .service-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }

.service-item img {
     width: 160px;
     height: 160px;
     object-fit: contain;
 }

 /* ===== TEXT ===== */
 .service-item p {
     font-size: 18px;
     color: #333;
     margin: 0;
     font-weight: 600;
 }

 .hero {
     position: relative;
     min-height: auto;
     overflow: hidden;
 }

 /* LEFT DARK GRADIENT */
 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     z-index: 1;

     background: linear-gradient(to right, rgba(0, 0, 0, 1.82) 0%, rgb(0 0 0 / 59%) 20%, rgb(0 0 0 / 14%) 40%, rgb(0 0 0 / 14%) 65%, rgba(0, 0, 0, 0) 100%)
 }

 /* Content above overlay */
 .hero-container {
     position: relative;
     z-index: 2;
 }

 .hero-text {
     max-width: 500px;
     /* padding-left: 40px; */
 }

 /* TEXT */
 .hero-text h1 {
     font-size: 36px;
     font-weight: 900;
     background: linear-gradient(135deg, #ab7917, #edb33f, #fad894);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 15px;
     line-height: 1.1;
     text-transform: uppercase;
 }

 .hero-text h2 {
     font-size: 23px;
     color: #fff;
     line-height: 1.2;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .hero-text h6 {
     color: #edb33f;
     font-size: 14px;
     font-weight: 500;
     letter-spacing: 2px;
 }

 .slide-in-right img,
 .slide-in-left img {
     width: 100%;
     height: 100%;
     min-height: 250px !important;
     object-fit: cover;
     border-radius: 10px;
 }

 /* =========================
   AWWARD SECTION
========================= */

 /* =========================
   AWWARD SECTION
========================= */

 .awward-section {
     position: relative;
     padding: 30px 0;
     overflow: hidden;

     background-image: url("http://localhost/bluepearl/assets/frontend/AwwrdBg.webp");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 /* BLACK OVERLAY */

 .awward-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.847);
     z-index: 1;
 }

 .awward-section .container {
     position: relative;
     z-index: 2;
 }

 .awward-heading {
     text-align: center;
     margin-bottom: 30px;
 }

 .awward-heading h2 {
     color: #fff;
     font-size: 52px;
     font-weight: 800;
     line-height: 1.2;
     margin: 0;
 }

 .awward-heading h2 span {
     /* display: block; */
     color: #f2c66d;
 }

 .awward-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .awward-card {
     text-align: center;
 }

 .awward-icon {
     width: 180px;
     height: 180px;
     margin: auto;
     border-radius: 50%;
     /* background: linear-gradient(145deg,#f5d27b,#8b6928); */
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 70px;
     /* padding: 20px; */
     /* box-shadow:
         0 10px 30px rgba(0, 0, 0, 0.5),
         inset 0 0 20px rgba(255, 255, 255, 0.3); */
 }

 .awward-icon img {
     width: 185px;
     height: 170px;
     object-fit: cover;
     padding: 10px;
 }

 .awward-card h3 {
     color: #fff;
     font-size: 14px;
     line-height: 1.4;
     /* margin-top: 5px; */
     font-weight: 600;
     text-transform: capitalize;
     letter-spacing: 1px;
     padding: 0px 30px;
 }

 p.awards-taglines {
     color: #fff;
     text-align: center;
     margin-top: 10px;
 }

 p.awards-taglines strong {
     color: #C8251A;
 }

 /* =========================
   RESPONSIVE
========================= */

 .referral-section {
     position: relative;
     width: 100%;
     min-height: 450px;
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 /* ─── Background Image ────────────────────────────── */
 .referral-bg {
     position: absolute;
     inset: 0;
     background-image: url('http://localhost/bluepearl/assets/frontend/hotel.jpeg');
     background-size: cover;
     background-position: center right;
     background-repeat: no-repeat;
     z-index: 0;
 }

 /* ─── Left Gradient Overlay ───────────────────────── */
 .referral-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right,
             rgba(255, 243, 215, 0.97) 0%,
             rgba(255, 243, 215, 0.92) 25%,
             rgba(255, 243, 215, 0.75) 42%,
             rgba(255, 243, 215, 0.30) 60%,
             rgba(255, 243, 215, 0.00) 75%);
     z-index: 1;
 }

 /* ─── Content ─────────────────────────────────────── */
 .referral-content {
     position: relative;
     z-index: 2;
     padding: 70px 0 70px 30px;
     max-width: 520px;
 }

 .referral-eyebrow {
     font-family: 'Jost', sans-serif;
     font-size: 0.72rem;
     font-weight: 500;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: #8b6914;
     margin-bottom: 14px;
 }

 .referral-heading {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(2.4rem, 4vw, 3.6rem);
     font-weight: 300;
     line-height: 1.08;
     color: #3d2a00;
     margin-bottom: 20px;
     letter-spacing: -0.01em;
 }

 .referral-heading em {
     font-style: italic;
     font-weight: 300;
 }

 .referral-divider {
     width: 44px;
     height: 1.5px;
     background: linear-gradient(to right, #b8891a, #e0b84b);
     margin-bottom: 22px;
     border: none;
     opacity: 1;
 }

 .referral-body {
     font-family: 'Jost', sans-serif;
     font-size: 1.05rem;
     font-weight: 300;
     line-height: 1.75;
     color: #4a3510;
     max-width: 380px;
     margin-bottom: 36px;
 }

 .referral-body strong {
     font-weight: 500;
     color: #3d2a00;
 }

 /* ─── CTA Button ──────────────────────────────────── */
 .btn-referral {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-family: 'Jost', sans-serif;
     font-size: 0.78rem;
     font-weight: 500;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: #fff;
     background: linear-gradient(135deg, #b8891a 0%, #d4a830 55%, #b8891a 100%);
     border: none;
     padding: 14px 34px;
     text-decoration: none;
     position: relative;
     overflow: hidden;
     transition: box-shadow 0.35s ease, transform 0.25s ease;
     box-shadow: 0 4px 18px rgba(180, 130, 20, 0.35);
 }

 .btn-referral::after {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(255, 255, 255, 0.12);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .btn-referral:hover {
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(180, 130, 20, 0.5);
 }

 .btn-referral:hover::after {
     opacity: 1;
 }

 .btn-referral svg {
     transition: transform 0.3s ease;
 }

 .btn-referral:hover svg {
     transform: translateX(4px);
 }

 /* ─── Sparkle Accent ──────────────────────────────── */
 .sparkle {
     position: absolute;
     z-index: 2;
     bottom: 32px;
     right: 28px;
     opacity: 0.55;
     pointer-events: none;
 }

 .contact-card .lead-form {
     background: var(--white);
     padding: 10px 20px;
     width: 100%;
     border-radius: 4px;
     box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
     z-index: 10;
 }

 .contact-cards .lead-form {
     background: var(--white);
     padding: 10px 20px;
     width: 100%;
 }

 .contact-info strong {
     color: #c92b2b !important;
 }



 /* ─── Responsive ──────────────────────────────────── */
 @media (max-width: 767.98px) {
     .referral-bg {
         background-position: 70% center;
     }

     .referral-overlay {
         background: linear-gradient(to bottom,
                 rgba(255, 243, 215, 0.96) 0%,
                 rgba(255, 243, 215, 0.90) 50%,
                 rgba(255, 243, 215, 0.50) 80%,
                 rgba(255, 243, 215, 0.10) 100%);
     }

     .referral-content {
         padding: 48px 28px;
         max-width: 100%;
     }

     .referral-section {
         min-height: 480px;
         align-items: flex-start;
     }
 }

 .mobileLogoSAcreen {
     display: none;
 }


 :root {
     --gold: #c9963a;
     --gold-light: #e8c46a;
     --gold-pale: #f5e8c8;
     --red: #c0392b;
     --red-dark: #922b21;
     --brown: #6b4c2a;
 }

 /* ── Section ───────────────────────────────────── */
 .vastu-section {
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg,
             #f7e8c2 0%, #fdf3df 30%, #fdf6e9 55%, #f5dfa8 80%, #e8c878 100%);
     width: 95%;
     margin: auto;
     border-radius: 10px;
 }

 .vastu-section::before,
 .vastu-section::after {
     content: '';
     position: absolute;
     width: 320px;
     height: 320px;
     border-radius: 50%;
     pointer-events: none;
     z-index: 0;
 }

 .vastu-section::before {
     background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
     top: -100px;
     left: -80px;
     opacity: .10;
 }

 .vastu-section::after {
     background: radial-gradient(circle, var(--red) 0%, transparent 70%);
     bottom: -100px;
     right: -80px;
     opacity: .08;
 }

 /* ── Borders ───────────────────────────────────── */
 .vastu-border-top,
 .vastu-border-bottom {
     width: 100%;
     height: 3px;
     background: linear-gradient(to right,
             transparent 0%, var(--gold-light) 20%, var(--gold) 50%,
             var(--gold-light) 80%, transparent 100%);
 }

 /* ── Inner ─────────────────────────────────────── */
 .vastu-inner {
     position: relative;
     z-index: 2;
     padding: 52px 40px;

     /* ← CENTER everything */
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0;
 }

 /* ── Image ─────────────────────────────────────── */
 .vastu-img-wrap {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .vastu-img-wrap::before {
     content: '';
     position: absolute;
     inset: -18px;
     border-radius: 50%;
     background: conic-gradient(from 0deg,
             var(--gold-light), var(--gold-pale), var(--gold),
             var(--gold-pale), var(--gold-light));
     opacity: .40;
     animation: rotateSlow 18s linear infinite;
     z-index: 0;
 }

 .vastu-img-wrap::after {
     content: '';
     position: absolute;
     inset: -6px;
     border-radius: 50%;
     border: 1.5px solid var(--gold);
     opacity: .55;
     animation: pulseFade 3s ease-in-out infinite;
     z-index: 1;
 }

 .vastu-img {
     position: relative;
     z-index: 2;
     width: 190px;
     height: 190px;
     object-fit: cover;
     border-radius: 50%;
     border: 3px solid var(--gold);
     box-shadow:
         0 0 0 8px rgba(201, 150, 58, .15),
         0 12px 40px rgba(107, 76, 42, .25);
 }

 @keyframes rotateSlow {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 @keyframes pulseFade {

     0%,
     100% {
         transform: scale(1);
         opacity: .55;
     }

     50% {
         transform: scale(1.06);
         opacity: .22;
     }
 }

 /* ── Vertical Divider ──────────────────────────── */
 .vastu-vdivider {
     width: 1px;
     align-self: stretch;
     min-height: 130px;
     background: linear-gradient(to bottom,
             transparent, var(--gold) 25%, var(--gold) 75%, transparent);
     margin: 0 44px;
     flex-shrink: 0;
     opacity: .60;
 }

 /* ── Text ──────────────────────────────────────── */
 .vastu-text {
     text-align: left;
     /* text left-aligned inside its block */
 }

 .vastu-tag {
     display: inline-block;
     font-family: 'Raleway', sans-serif;
     font-size: .68rem;
     font-weight: 600;
     letter-spacing: .25em;
     text-transform: uppercase;
     color: var(--gold);
     background: rgba(201, 150, 58, .10);
     border: 1px solid rgba(201, 150, 58, .30);
     padding: 4px 14px;
     border-radius: 2px;
     margin-bottom: 14px;
 }

 .vastu-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(2.2rem, 3.5vw, 3.2rem);
     font-weight: 700;
     line-height: 1.05;
     color: var(--red);
     margin-bottom: 0;
 }

 .vastu-title span {
     color: var(--red-dark);
 }

 .vastu-title-line {
     display: block;
     width: 60px;
     height: 2.5px;
     margin: 13px 0 16px;
     background: linear-gradient(to right, var(--gold), var(--gold-light));
     border-radius: 2px;
 }

 .vastu-subtitle {
     font-family: 'Raleway', sans-serif;
     font-size: 1.02rem;
     font-weight: 400;
     line-height: 1.42;
     color: var(--brown);
     max-width: 400px;
     margin-bottom: 0;
 }

 /* ── Corner ornaments ──────────────────────────── */
 .corner-ornament {
     position: absolute;
     z-index: 1;
     opacity: .18;
     pointer-events: none;
 }

 .corner-ornament.tl {
     top: 10px;
     left: 14px;
 }

 .corner-ornament.tr {
     top: 10px;
     right: 14px;
     transform: scaleX(-1);
 }

 .corner-ornament.bl {
     bottom: 10px;
     left: 14px;
     transform: scaleY(-1);
 }

 .corner-ornament.br {
     bottom: 10px;
     right: 14px;
     transform: scale(-1);
 }


.da-services-decs {
     width: 100%;
     padding: 0px 20px;
     overflow: hidden;
 }

.da-services-type-of {
     width: 100%;
     padding: 0 20px 15px;
     overflow: hidden;
 }

 .da-services-sec {
     width: 100%;
     padding: 20px 20px;
     overflow: hidden;
 }

 .da-services-title {
     text-align: center;
     font-size: 38px;
     margin-bottom: 40px;
 }

 .da-slider-main {
     position: relative;
     display: flex;
     align-items: center;
     user-select: none;
     -webkit-user-select: none;
     touch-action: pan-y;
 }

 .da-track-wrap {
     width: 100%;
     overflow: hidden;
 }

 .da-slider-track {
     display: flex;
     gap: 20px;
     transition: transform 0.5s ease;
     will-change: transform;
 }

 .da-service-card {
     min-width: calc(25% - 10px);
     background: #fff;
     border-radius: 18px;
     overflow: hidden;
     flex-shrink: 0;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
 }

 .da-service-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     display: block;
     pointer-events: none;
 }

 .da-service-card h3 {
     font-size: 22px;
     padding: 18px 18px 8px;
 }

 .da-service-card p {
     padding: 0 18px 22px;
     line-height: 1.6;
     font-size: 15px;
 }

 .da-arrow-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 35px;
     height: 35px;
     border: none;
     border-radius: 50%;
     background: #fff;
     color: #000;
     cursor: pointer;
     z-index: 5;
     box-shadow: 0 8px 28px rgba(180, 55, 20, 0.5);
 }

 .da-left-btn {
     left: -10px;
 }

 .da-right-btn {
     right: -10px;
 }

 .da-track-wrap {
     overflow: hidden;
 }

 .da-slider-main {
     cursor: grab;
     user-select: none;
     -webkit-user-select: none;
     touch-action: pan-y;
 }

 .da-track-wrap {
     overflow: hidden;
 }

 .da-slider-track {
     display: flex;
 }

 .da-slider-main img {
     pointer-events: none;
 }

 .da-service-card {
     -webkit-user-drag: none;
 }

 .video-slider-container {
     position: relative;
     overflow: hidden;
 }

 .video-track {
     display: flex;
     gap: 20px;
     will-change: transform;
 }

 .video-card {
     flex-shrink: 0;
 }

 .video-slider-container iframe {
     pointer-events: none;
 }

 /* TABLET */

 .video-track {

     display: flex;
     gap: 20px;

     overflow-x: auto;
     overflow-y: hidden;

     scroll-behavior: smooth;

     scrollbar-width: none;

     -webkit-overflow-scrolling: touch;

     cursor: grab;

     padding-bottom: 10px;
 }

 .video-track::-webkit-scrollbar {
     display: none;
 }

 /* =========================
   DRAGGING EFFECT
========================= */
 .video-track.dragging {

     cursor: grabbing;

     scroll-behavior: auto;
 }

 /* =========================
   VIDEO CARD
========================= */
 .video-card {

     flex: 0 0 auto;

     width: 380px;

     border-radius: 16px;

     overflow: hidden;
 }

 .video-thumbnail iframe {

     width: 100%;

     height: 220px;

     border-radius: 16px;
 }

 /* =========================
   SHORTS
========================= */
 .short-video {

     width: 260px;
 }

 .short-video iframe {

     height: 460px;
 }

 .ba-review-section {
     background: #f8fafc;
     overflow: hidden;
 }

 .ba-review-title {
     font-size: 42px;
     font-weight: 800;
     color: #111827;
     margin-bottom: 0;
 }

 /* Slider Wrapper */
 .ba-review-slider-wrapper {
     position: relative;
 }

 /* Slider */
 .ba-review-slider {
     display: flex;
     gap: 24px;
     overflow-x: auto;
     scroll-behavior: smooth;
     scrollbar-width: none;
     padding: 10px 5px;
     cursor: grab;
 }

 .ba-review-slider::-webkit-scrollbar {
     display: none;
 }

 .ba-review-slider.active {
     cursor: grabbing;
 }

 /* Slide */
 .ba-review-slide {
     flex: 0 0 calc(50% - 12px);
 }

 /* Card */
 .ba-review-card {
     background: #ffffff;
     border-radius: 8px;
     padding: 15px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     transition: 0.3s ease;
     height: 100%;
 }

 .ba-review-card:hover {
     transform: translateY(-5px);
 }

 /* Image */
 .ba-review-image-box {
     width: 100%;
 }

 .ba-review-image {
     width: 100%;
     height: 230px;
     object-fit: cover;
     border-radius: 8px;
     display: block;
 }

 /* Content */


 .ba-review-name {
     font-size: 18px;
     font-weight: 700;
     color: #111827;
     margin-bottom: 5px;
 }

 .ba-review-location {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #6b7280;
     font-size: 12px;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .ba-review-location i {
     color: #b02020;
 }

 .ba-review-description {
     font-size: 14px;
     line-height: 1.5;
     color: #374151;
     /* border-left: 4px solid #b02020; */
     /* padding-left: 18px; */
 }

 /* Arrows */
 .ba-review-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 52px;
     height: 52px;
     border: none;
     border-radius: 50%;
     background: #fff;
     color: #000;
     z-index: 20;
     transition: 0.3s ease;
     box-shadow: 0 8px 28px rgba(180, 55, 20, 0.5);
 }

 .ba-review-arrow:hover {
     background: #111827;
 }

 .ba-review-arrow-left {
     left: -15px;
 }

 .ba-review-arrow-right {
     right: -15px;
 }

 /* Tablet */
 @media (max-width: 991px) {

     .ba-review-title {
         font-size: 34px;
     }

     .ba-review-slide {
         flex: 0 0 85%;
     }

     .ba-review-image {
         height: 240px;
     }

     .ba-review-name {
         font-size: 24px;
     }
 }

 /* Mobile */
 @media (max-width: 767px) {

     .ba-review-section {
         padding: 50px 0;
     }

     .ba-review-slide {
         flex: 0 0 100%;
     }

     .ba-review-card {
         padding: 18px;
         border-radius: 18px;
     }

     .ba-review-image {
         height: 220px;
         margin-bottom: 18px;
     }

     .ba-review-content {
         padding-left: 0;
         text-align: center;
     }

     .ba-review-location {
         justify-content: center;
     }

     .ba-review-description {
         border-left: none;
         border-top: 3px solid #b02020;
         padding-left: 0;
         padding-top: 15px;
         text-align: center;
         font-size: 15px;
     }

     .ba-review-arrow {
         width: 42px;
         height: 42px;
         display: none;
     }

     .ba-review-arrow-left {
         left: 5px;
     }

     .ba-review-arrow-right {
         right: 5px;
     }
 }


 @media(max-width:768px) {

     .video-track {

         gap: 14px;

         padding-inline: 10px;
     }

     .video-card {

         width: 85%;
     }

     .video-thumbnail iframe {

         height: 200px;
     }

     .short-video {

         width: 220px;
     }

     .short-video iframe {

         height: 400px;
     }

     .footer-links-group .mobileFooterContact ul {
         display: contents !important;
     }

     .footer-links-group .mobileFooterContact ul li {
         width: 100%;
     }

     .footer-bottom {
         margin-top: 0px
     }

     .bottom-container {
         flex-direction: column;
         text-align: center;
         margin-top: 10px;
     }

 }
















 @media (max-width: 991px) {

     .da-service-card {
         min-width: calc(50% - 10px);
     }
 }

 /* MOBILE */

 @media (max-width: 767px) {

     /* .da-service-card {
        min-width: 100%;
    } */

     .da-arrow-btn {
         display: none;
     }
 }

 /* ── Responsive ────────────────────────────────── */
 @media (max-width: 767.98px) {
     .vastu-inner {
         flex-direction: column;
         padding: 40px 24px;
         text-align: center;
     }

     .vastu-vdivider {
         display: none;
     }

     .vastu-img {
         width: 150px;
         height: 150px;
     }

     .vastu-img-wrap {
         margin-bottom: 28px;
     }

     .vastu-text {
         text-align: center;
     }

     .vastu-title-line {
         margin: 12px auto 14px;
     }

     .vastu-subtitle {
         margin: 0 auto;
     }
 }


 /* =========================
   TRACK
========================= */

 .da-track-wrap {
     overflow: hidden;
     width: 100%;
 }

 .da-slider-track {
     display: flex;
     gap: 20px;
     transition: transform .5s ease;
 }

 /* =========================
   DESKTOP
========================= */

 .da-service-card {
     flex: 0 0 calc(25% - 15px);
 }

 /* =========================
   TABLET
========================= */

 @media(max-width:991px) {

     .da-service-card {
         flex: 0 0 calc(50% - 10px);
     }
 }

 /* =========================
   MOBILE
========================= */

 @media(max-width:767px) {


     .da-service-card {

         /* MAIN MAGIC */

         flex: 0 0 85%;
     }

     .da-arrow-btn {
         display: none;
     }
 }







 @media(max-width:991px) {

     .awward-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .awward-heading h2 {
         font-size: 40px;
     }

     .awward-card h3 {
         font-size: 22px;
     }
 }

 @media(max-width:576px) {

     .awward-grid {
         grid-template-columns: 1fr;
     }

     .awward-heading h2 {
         font-size: 30px;
     }

     .awward-icon {
         width: 140px;
         height: 140px;
         font-size: 55px;
     }

     .awward-card h3 {
         font-size: 18px;
     }
 }

 /* MOBILE */
 @media(max-width:768px) {

     .hero::before {
         background: linear-gradient(to bottom,
                 rgba(0, 0, 0, 1.78) 0%,
                 rgba(0, 0, 0, 0.58) 40%,
                 rgba(0, 0, 0, 0.2) 75%,
                 rgba(0, 0, 0, 0) 100%);
     }

     .product-slider-section {
         margin-top: 0px !important;
     }

     .slider-group {
         margin-bottom: 20px !important;
     }

     .hero-text h1 {
         font-size: 1.7rem;
         font-weight: 900;
         margin-bottom: 8px;
     }

     .hero-text h2 {
         font-size: 16px;
         font-weight: 600;
         margin-bottom: 7px;
     }

     .hero-text h6 {
         font-size: 12px;
         font-weight: 500;
     }

     .hero-text {
         max-width: 100%;
         padding-left: 0px;
     }

 }


 @media (max-width: 768px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 25px;
     }

     .service-item img {
         width: 60px;
         height: 60px;
     }

     .services-section h2 {
         font-size: 22px;
     }
 }

 @media (max-width: 480px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }


 /* Mobile */
 @media(max-width:768px) {
     .content-area {
         flex-direction: column
     }

     .step-text {
         text-align: center
     }

     .step-heading {
         font-size: 20px;
         line-height: 20px;
         margin-bottom: 12px;
         margin-top: 0;
     }

     .step-desc {
         font-size: 14px;
         line-height: 20px;
         margin-bottom: 12px;
         margin-top: 0;
     }

     .step-text {
         width: 100%;
     }

     .tablet-frame {
         width: 100%;
     }

     .hl-wrap {
         padding: 30px;
     }

     .step-node {
         width: 25px;
         height: 25px;
     }

     .nav-btns.left {
         left: -20px;
     }

     .nav-btns.right {
         right: -20px;
     }

     .nav-btns {
         width: 30px;
         height: 30px;
     }

     .nav-btns i {
         font-size: 14px;
     }

     .question button {
         font-size: 14px;
         padding: 15px 20px 5px 0;
     }

     .section-heading {
         font-size: 22px;
     }

     .sub-heading {
         font-size: 14px;
     }

     .question p {
         font-size: 12px;
     }

     /* .lead-form {
        padding: 0px;
    } */

     .top-bar {
         flex-direction: row;
         display: block;
     }

     .top-bar a {
         font-size: 10px;
         margin: 0;
     }

     .top-bar .top-links {
         display: none;
     }



     .hero-person {
         position: absolute;
         bottom: -5vh;
         left: 45%;
         transform: translateX(-50%);
         height: 90%;
         z-index: 1;
         pointer-events: none;
     }

     .hero-person img {
         height: 100%;
         width: auto;
         object-fit: contain;
     }

     .hero .lead-form {
         display: none;
     }

     .hero {
         align-items: start;
         justify-content: start;
         min-height: 400px;
         padding: 10px 0px;
     }

     .mobileLogoSAcreen {
         display: block;
     }

     .mobile-form {
         display: block;
     }

     .logo img {
         width: 35px;
     }

     nav {
         padding: 10px 20px;
     }

     .back-to-top.show {
         bottom: 20px !important;
     }

     .award-icon-wrap {
         width: 40px;
         height: 40px;
         font-size: 1rem;
         margin: 0 auto 10px;
     }

     .award-title {
         font-size: .5rem;
         font-weight: 600;
         margin: 0;
     }

     .award-badge {
         position: absolute;
         top: 10px;
         right: 7px;
         font-size: .3rem;
         font-weight: 700;
         letter-spacing: .07em;
         padding: 4px 8px;
         border-radius: 20px;
     }

     .award-stars {
         margin-bottom: 5px;
     }

     .award-card {
         background: var(--card-bg);
         border: 1px solid var(--border);
         border-radius: 10px;
         padding: 10px 10px 10px;
     }

     .awards-section .container {
         max-width: 100%;
         padding: 0px 10px;
     }

     .awards-heading {
         font-size: 24px !important;
     }

     .awards-subtitle {
         font-size: 12px;
     }

     #mobileNavToggleBox {
         float: right;
         width: 30px;
         height: 30px;
         line-height: 16px;
         margin-bottom: 10px;
     }

     .search-box {
         background: #fff;
         padding: 20px;
         border-radius: 10px;
         width: 90%;
         max-width: 500px;
         display: flex;
         flex-direction: column;
     }

     .pcScreen {
         display: block;
     }

     .slide-in-right img,
     .slide-in-left img {
         width: 100%;
         height: 100%;
         min-height: 180px !important;
         object-fit: cover;
         border-radius: 10px;
     }

     .testimonial-video-box {
         height: 200px;
     }

     .nav-links li a {
         text-decoration: none;
         color: var(--text-dark);
         font-weight: 500;
         font-size: 15px;
     }

     .nav-links .mega-menu .mega-column.mobile-open .menu-item {
         width: calc(100% / 1);
     }

     nav .nav-main-controls .nav-links {
         overflow: scroll;
     }

     .testimonial-track .product-card {
         min-width: 250px;
         height: 170px;
     }

     .stepper {
         display: flex;
         align-items: center;
         justify-content: center;
         margin-bottom: 2.5rem;
         margin: 0px 0px 2.5rem;
     }

     .testimonial-video-box img {
         width: 100%;
         height: 200px;
         object-fit: cover;
     }

     button.faq-question {
         padding: 10px 0px !important;
     }

     .sub-heading {
         margin: 20px auto 0 0px;
     }

     .footer-bottom {
         padding: 0px;
         margin-bottom: 30px;
         padding-bottom: 0px;
     }

     .awward-icon {
         width: 100px;
         height: 100px;
         font-size: 16px;
     }

     .awward-icon img {
         width: 120px;
         height: 100px;
         object-fit: cover;
         padding: 10px;
     }

     .awward-card h3 {
         font-size: 11px;
         font-weight: 400;
         padding: 0px;
     }

     .awward-grid {
         grid-template-columns: 1fr 1fr;
         padding: 0px 10px;
     }

     .services-section h2 {
         margin-bottom: 10px;
     }


     p.awards-taglines {
         color: #fff;
         text-align: center;
         margin-top: 10px;
         font-size: 12px;
     }

     .top-right {
         display: flex;
         align-items: center;
         justify-content: space-between;
         width: 100%;
     }

     .top-right a i {
         display: none;
     }

     .container {
         padding: 0px 0px;
     }

     .da-service-card .product-card {
         height: 170px;
     }

     .da-service-card .product-card .product-name {
         padding: 10px;
     }

     .footer-col ul li {
         width: calc(100% / 2);
     }

     .footer-col ul {
         display: flex;
         flex-wrap: wrap;
     }

     .footer-links-group {
         gap: 0px;
     }

     .CategoryBocss .product-name {
         font-size: 14px !important;
     }

     .CategoryBocss.product-card {
         /* height: 170px; */
         width: 100% !important;
         min-width: 100% !important;
     }

     .CategoryBocss .product-code {
         font-size: 10px;
         padding: 4px 10px;
     }

     /* .CategoryBocss .product-image-wrap img {
         height: 240px;
     } */
     .service-item img {
         width: 100px;
         height: 100px;
     }
     
    .service-item p {
        font-size: 14px;
        color: #333;
        margin: 0;
        font-weight: 600;
    }
    .rightNavbarBox .header-search{
        display: none;
    }
     .CategoryBocss .product-image-wrap {
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .CategoryBocss .product-image-wrap a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .CategoryBocss .product-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    /* PRODUCT CARD MOBILE FIX */

.CategoryBocss.product-card {
    width: 100% !important;
    min-width: 100% !important;
}

.CategoryBocss .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.CategoryBocss .product-image-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.CategoryBocss .product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.CategoryBocss .product-code {
    font-size: 10px;
    padding: 4px 10px;
}

.CategoryBocss .product-name {
    font-size: 14px !important;
}
 }