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

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     scroll-behavior: smooth;
 }

 /* Bootstrap Root Color Override */
 :root {
     --bs-primary: #2D7BAF;
     --bs-primary-rgb: 45, 123, 175;
     --bs-secondary: #3B3788;
     --bs-secondary-rgb: 59, 55, 136;
     --bs-primary-light: #5A9FD4;
     --bs-primary-dark: #1E5580;
     --bs-secondary-light: #5855B0;
     --bs-secondary-dark: #2A2560;
     --bs-border-radius: 12px;
     --bs-border-radius-sm: 8px;
     --bs-border-radius-lg: 16px;
     --bs-border-radius-xl: 24px;
     --header-gap: 20px;
     --bs-bg-body: #F4F7F9;
     --bs-card-bg: #FFFFFF;
     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
     --shadow-hover: 0 12px 32px rgba(45, 123, 175, 0.15);
     --input-bg: #F8F9FA;
 }

 .h5,
 h5 {
     font-size: 15px;
 }

 .form-select {
     font-size: 13px;
 }

 .material-icons {
     vertical-align: middle;
 }

 .text-primary {
     color: var(--bs-primary) !important;
 }

 .text-secondary {
     color: var(--bs-secondary) !important;
 }

 ::-webkit-scrollbar {
     width: 8px;
     height: 8px;
 }

 ::-webkit-scrollbar-track {
     background: rgba(45, 123, 175, 0.05);
     border-radius: 10px;
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(135deg, var(--bs-primary-dark) 0%, var(--bs-secondary-dark) 100%);
 }

 body {
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     font-weight: 400;
     line-height: 20px;
     letter-spacing: 1px;
 }

 p {
     font-size: 14px;
     line-height: 18px;
     margin-bottom: 0.8rem;
 }

 ul {
     list-style: none;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 5px 10px !important;
     background: var(--bs-primary) !important;
     color: white !important;
     border: none !important;
     border-radius: 50px !important;
     font-size: 12px !important;
     font-weight: 600 !important;
     cursor: pointer;
     transition: all 0.3s ease;
     align-self: flex-start;
 }

 .btn-primary:hover {
     background: #333 !important;
     transform: translateX(5px) !important;
 }

 /* Header Container */
 .header_container {
     position: fixed;
     top: var(--header-gap);
     left: 50%;
     transform: translateX(-50%);
     width: 95%;
     max-width: 1400px;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .header_container_nav {
     background: rgb(255 255 255 / 79%);
     /* background: transparent; */
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-radius: var(--bs-border-radius-xl);
     padding: 6px 15px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
         0 2px 8px rgba(96, 101, 103, 0.1),
         inset 0 1px 0 rgba(255, 255, 255, 0.8);
     border: 1px solid rgba(255, 255, 255, 0.5);
     position: relative;
     overflow: visible;
 }

 /* Glossy Effect */


 .header_container_inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     position: relative;
     z-index: 1;
 }

 /* Logo */
 .header_container_logo {
     font-size: 24px;
     font-weight: 700;
     color: var(--bs-primary);
     text-decoration: none;
     white-space: nowrap;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 /* Navigation Menu */
 .header_container_menu {
     display: flex;
     list-style: none;
     gap: 8px;
     margin: 0;
     padding: 0;
     flex: 1;
     justify-content: center;
 }

 .header_container_menu_item {
     position: relative;
 }

 .header_container_menu_link {
     display: flex;
     align-items: center;
     gap: 4px;
     padding: 10px 10px;
     color: #333;
     text-decoration: none;
     border-radius: var(--bs-border-radius);
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .header_container_menu_link:hover,
 .header_container_menu_link:focus {
     background: var(--bs-primary);
     color: white;
     outline: none;
 }

 /* Action Buttons */
 .header_container_actions {
     display: flex;
     align-items: center;
     gap: 9px;
 }

 .header_container_icon_link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: var(--bs-border-radius);
     transition: all 0.3s ease;
     color: #666;
 }

 .header_container_icon_link:hover {
     background: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
 }

 .header_container_auth_links {
     display: flex;
     gap: 8px;
 }

 .header_container_link {
     padding: 8px 10px;
     border-radius: var(--bs-border-radius);
     text-decoration: none;
     color: #333;
     transition: all 0.3s ease;
 }

 .header_container_link:hover {
     background: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
 }

 .header_container_btn_demo {
     padding: 10px 24px;
     background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
     color: white;
     border: none;
     border-radius: var(--bs-border-radius);
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(45, 123, 175, 0.3);
     font-size: 14px;
 }

 .header_container_btn_demo:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(45, 123, 175, 0.4);
 }

 /* Mega Menu Container */
 .header_container_mega_menu {
     position: absolute;
     top: 45px;
     left: 0;
     background: transparent;
     padding: 0;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     pointer-events: none;
     display: flex;
     min-height: 200px;
 }

 .header_container_menu_link:hover+.header_container_mega_menu,
 .header_container_mega_menu:hover {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
     pointer-events: auto;
 }

 /* Menu Inner Wrapper - This contains the rounded corners and shadow */
 .header_container_menu_inner {
     display: flex;
     background: white;
     border-radius: 12px;
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
         0 4px 12px rgba(45, 123, 175, 0.1);
     border: 1px solid rgba(0, 0, 0, 0.08);
     position: relative;
 }

 /* First Level - Categories List */
 .header_container_menu_categories {
     width: 280px;
     background: #f8f9fa;
     padding: 20px 0;
     border-right: 1px solid rgba(0, 0, 0, 0.08);
     flex-shrink: 0;
 }

 .header_container_category_item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 14px 20px;
     color: #333;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     font-size: 14px;
     font-weight: 500;
 }

 .header_container_category_item .material-icons:first-child {
     color: var(--bs-primary);
     font-size: 22px;
 }

 .header_container_category_item .material-icons:last-child {
     margin-left: auto;
     color: #999;
     font-size: 20px;
 }

 .header_container_category_item:hover,
 .header_container_category_item.active {
     background: white;
     color: var(--bs-primary);
 }

 .header_container_category_item:hover .material-icons,
 .header_container_category_item.active .material-icons {
     color: var(--bs-primary);
 }

 /* Second Level - Submenu */
 .header_container_submenu {
     position: absolute;
     left: 283px;
     top: 0;
     bottom: 0;
     width: 420px;

     height: 400px;
     min-height: 280px;
     overflow-y: auto;
     overflow-x: hidden;
     background: white;
     padding: 20px;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: all 0.3s ease;
     transform: translateX(-10px);
     border-radius: 0 12px 12px 0;
 }

 .header_container_submenu.active {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: translateX(0);
 }

 .header_container_submenu_title {
     font-size: 16px;
     font-weight: 700;
     color: var(--bs-primary);
     margin-bottom: 16px;
     padding-bottom: 12px;
     border-bottom: 2px solid rgba(45, 123, 175, 0.2);
 }

 .header_container_submenu_grid {
     display: flex;
     flex-direction: column;
     gap: 4px;
     padding-bottom: 10px;
 }

 .header_container_service_card {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px;
     background: transparent;
     border-radius: 8px;
     border: none;
     transition: all 0.2s ease;
     text-decoration: none;
     color: inherit;
 }

 .header_container_service_card:hover {
     background: rgba(45, 123, 175, 0.08);
     transform: translateX(4px);
 }

 .header_container_service_icon {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(45, 123, 175, 0.1) 0%, rgba(59, 55, 136, 0.1) 100%);
     border-radius: 8px;
     color: var(--bs-primary);
     transition: all 0.3s ease;
 }

 .header_container_service_card:hover .header_container_service_icon {
     background: var(--bs-primary);
     color: white;
 }

 .header_container_service_content {
     flex: 1;
     min-width: 0;
 }

 .header_container_service_content h3 {
     font-size: 13px;
     font-weight: 600;
     color: #333;
     margin: 0 0 2px 0;
     line-height: 1.4;
 }

 .header_container_service_content p {
     font-size: 11px;
     color: #666;
     margin: 0;
     line-height: 1.3;
 }

 /* Custom Scrollbar */
 .header_container_submenu::-webkit-scrollbar {
     width: 6px;
 }

 .header_container_submenu::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.05);
     border-radius: 3px;
 }

 .header_container_submenu::-webkit-scrollbar-thumb {
     background: rgba(45, 123, 175, 0.3);
     border-radius: 3px;
 }

 .header_container_submenu::-webkit-scrollbar-thumb:hover {
     background: rgba(45, 123, 175, 0.5);
 }

 .hamburger-menu {
     background: none;
     border: none;
     font-size: 1.5rem;
     color: #333;
 }


 .landing_page-hero {
     background: rgb(198 229 252);
     /* background: url('https://sequoia.stylemixthemes.com/12_corporate/wp-content/uploads/sites/13/2022/06/marketsection2-1.jpg'); */
     background-size: cover;
     background-position: center;
     padding: 10px 0;
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 /* .landing_page-hero.geometric {
     background-color: rgb(198 209 252);
     background-image:
         linear-gradient(30deg, rgba(255, 255, 255, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.12) 87.5%, rgba(255, 255, 255, 0.12)),
         linear-gradient(150deg, rgba(255, 255, 255, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.12) 87.5%, rgba(255, 255, 255, 0.12)),
         linear-gradient(30deg, rgba(255, 255, 255, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.12) 87.5%, rgba(255, 255, 255, 0.12)),
         linear-gradient(150deg, rgba(255, 255, 255, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.12) 87.5%, rgba(255, 255, 255, 0.12));
     background-size: 80px 140px;
     background-position: 0 0, 0 0, 40px 70px, 40px 70px;
 } */

 .landing_page-hero::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
     pointer-events: none;
 }

 .landing_page-hero>* {
     position: relative;
     z-index: 1;
 }




 .landing_page-btn-primary {
     background-color: var(--bs-primary);
     border-color: var(--bs-primary);
     border-radius: var(--bs-border-radius);
     padding: 12px 30px;
     font-weight: 600;
     color: #fff;
 }

 .landing_page-btn-primary:hover {
     background-color: var(--bs-primary-dark);
     border-color: var(--bs-primary-dark);
     color: #fff;
 }

 .section-padding {
     padding: 20px 0;
 }

 .section-bg {
     background-color: #f5f5f5;
 }


 .title-8 {
     font-size: 2rem;
     font-weight: 700;
     color: var(--bs-primary-dark);
     position: relative;
     padding: 15px;
     max-width: fit-content;
 }

 .title-8::before,
 .title-8::after {
     content: '';
     position: absolute;
     width: 20px;
     height: 20px;
     border: 3px solid var(--bs-primary);
     transition: all 0.3s ease;
 }

 .title-8::before {
     top: 0;
     left: 0;
     border-right: none;
     border-bottom: none;
 }

 .title-8::after {
     bottom: 0;
     right: 0;
     border-left: none;
     border-top: none;
 }

 .title-8:hover::before,
 .title-8:hover::after {
     width: 30px;
     height: 30px;
 }


 .cards-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .card-style-1 {
     position: relative;
     height: 180px;
     border-radius: 25px;
     padding: 30px;
     cursor: pointer;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .card-style-1:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .card-style-1::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
     pointer-events: none;
 }

 .card-style-1-title {
     position: relative;
     color: white;
     font-size: 2em;
     font-weight: 700;
     z-index: 2;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .card-style-1-icon {
     position: absolute;
     right: -20px;
     bottom: -20px;
     color: white;
     opacity: 0.3;
     transform: rotate(-15deg);
     transition: all 0.4s ease;
 }

 .card-style-1:hover .card-style-1-icon {
     transform: rotate(0deg) scale(1.1);
     opacity: 0.5;
 }



 /* All cards - Same gradient background using theme colors */
 .card-style-1-car,
 .card-style-1-bike,
 .card-style-1-truck,
 .card-style-1-bus {
     background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
 }



 /* --- Card Styling --- */
 .card-style-3 {
     background-color: #fff;
     border-radius: var(--bs-border-radius-lg);
     border: 1px solid rgba(0, 0, 0, 0.08);
     overflow: hidden;
     height: 100%;
     transition: all 0.4s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
     position: relative;
     display: flex;
     flex-direction: column;
 }

 /* Hover: Card Lift */
 .card-style-3:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(45, 123, 175, 0.15);
     border-color: transparent;
 }

 /* --- Image Wrapper & Icon --- */
 .card-style-3-img-box {
     position: relative;
     height: 240px;
     overflow: hidden;
 }

 .card-style-3-img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 /* Hover: Image Zoom */
 .card-style-3:hover .card-style-3-img-box img {
     transform: scale(1.1);
 }

 /* Floating Icon */
 .card-style-3-icon {
     position: absolute;
     bottom: 10px;
     right: 10px;
     width: 60px;
     height: 60px;
     background: var(--bs-primary);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 5px solid #fff;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     z-index: 2;
 }

 .card-style-3-icon .material-icons {
     font-size: 28px;
 }

 /* Hover: Icon Swap Color */
 .card-style-3:hover .card-style-3-icon {
     background: var(--bs-secondary);
     transform: rotateY(180deg);
     /* Nice 3D flip effect */
 }

 .card-style-3:hover .card-style-3-icon .material-icons {
     transform: rotateY(-180deg);
     /* Keeps icon facing forward */
 }

 /* --- Card Content --- */
 .card-style-3-content {
     padding: 40px 25px 30px;
     /* Top padding makes room for icon */
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .card-style-3-content h3 {
     font-size: 1.35rem;
     font-weight: 700;
     color: var(--bs-secondary);
     margin-bottom: 12px;
     transition: color 0.3s ease;
 }

 .card-style-3:hover .card-style-3-content h3 {
     color: var(--bs-primary);
 }

 .card-style-3-content p {
     font-size: 0.95rem;
     color: #666;
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
 }

 /* --- Button / Link --- */
 .card-style-3-btn {
     display: inline-flex;
     align-items: center;
     font-weight: 600;
     color: var(--bs-primary);
     text-decoration: none;
     font-size: 0.95rem;
     transition: all 0.3s ease;
 }

 .card-style-3-btn .material-icons {
     font-size: 18px;
     margin-left: 8px;
     transition: transform 0.3s ease;
 }

 .card-style-3:hover .card-style-3-btn {
     color: var(--bs-secondary);
 }

 .card-style-3:hover .card-style-3-btn .material-icons {
     transform: translateX(5px);
 }

 .card-style-3-content-btn {
     padding: 10px;
     border: 1px solid var(--bs-primary);
     border-radius: 15px;
     background: #fff;
     color: var(--bs-primary);
     transition: all 0.3s ease;
 }

 .card-style-3-content-btn:hover {
     background: var(--bs-primary);
     color: #fff;
 }


 /* .embla {
     overflow: hidden;
 }

 .embla__container {
     display: flex;
     gap: 20px;
     margin-left: -10px;
 }

 .embla__slide {
     flex: 0 0 auto;
     min-width: 0;
     padding-left: 10px;
     width: 380px;
 } */
 /* .embla__dots {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 40px;
 }

 .embla__dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: #d5d5d5;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     padding: 0;
 }

 .embla__dot:hover {
     background: #b5b5b5;
 }

 .embla__dot.is-selected {
     background: var(--bs-primary);
     width: 32px;
     border-radius: 6px;
 } */

 .tabs-segmented {
     background: #e9ecef;
     border-radius: var(--bs-border-radius);
     padding: 4px;
     display: inline-flex;
 }

 .tabs-segmented .nav-link {
     color: #000;
     border: none;
     border-radius: var(--bs-border-radius-sm);
     padding: 8px 20px;
     margin: 0 2px;
     transition: all 0.3s ease;
 }

 .tabs-segmented .nav-link.active {
     background: white;
     color: var(--bs-primary);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .card-style-4 {
     margin: auto;
     width: 100%;
     background-color: #fff;
     border-radius: 1rem;
     padding: 0.5rem;
     color: #141414;
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     transition: all 0.3s ease;
 }

 .card-style-4:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(45, 123, 175, 0.15);
     border-color: transparent;
 }

 .card__hero {
     border-radius: 0.5rem 0.5rem 0 0;
     font-size: 0.875rem;
     overflow: hidden;
 }

 .card__hero img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.3s ease;
 }

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

 .card__hero__badge {
     position: absolute;
     top: 10px;
     right: 10px;
     z-index: 1;
     border-radius: 15px;
     background: #588fdf;
 }

 .card__btn {
     font-weight: 400;
     border: none;
     cursor: pointer;
     padding: 0.5rem 1.25rem;
     border-radius: 1rem;
     background-color: #141417;
     color: #fff;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .card__btn:hover {
     background-color: #fff;
     color: #141417;
     border: 1px solid #141417;
 }


 /* --- 2. Feature Box Design --- */
 .feature-item {
     background-color: #fff;
     padding: 10px;
     border-radius: var(--bs-border-radius);
     display: flex;
     align-items: center;
     transition: all 0.3s ease;
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.03);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
     position: relative;
     overflow: hidden;
 }

 /* Left border accent on hover */
 .feature-item::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     width: 4px;
     background-color: var(--bs-primary);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .feature-item:hover {
     box-shadow: 0 10px 25px rgba(59, 55, 136, 0.1);
     border-color: rgba(45, 123, 175, 0.2);
 }

 .feature-item:hover::before {
     opacity: 1;
 }

 /* Icon Styling */
 .feature-icon-box {
     width: 32px;
     height: 32px;
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     margin-right: 15px;
     transition: all 0.3s ease;
 }

 .feature-icon-box .material-icons {
     font-size: 18px;
 }

 .feature-item:hover .feature-icon-box {
     background-color: var(--bs-primary);
     color: #fff;
     transform: rotateY(180deg);
 }

 /* Keep icon upright during flip */
 .feature-item:hover .feature-icon-box .material-icons {
     transform: rotateY(-180deg);
 }

 /* Text Styling */
 .feature-content h5 {
     color: var(--bs-secondary);
     font-weight: 700;
     font-size: 14px;
     margin-bottom: 3px;
 }

 .feature-content p {
     font-size: 12px;
     color: #6c757d;
     margin: 0;
     line-height: 1.4;
 }



 /* --- SECTION STYLING --- */
 .why_choose_us_section {
     padding: 10px 0;
     background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
     position: relative;
     overflow: hidden;
 }

 /* Background Blob Decoration */
 .why_choose_us_bg_blob {
     position: absolute;
     top: -100px;
     right: -100px;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(45, 123, 175, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
     border-radius: 50%;
     z-index: 0;
 }

 /* --- LEFT SIDE CONTENT --- */
 .why_choose_us_pill_label {
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     padding: 6px 15px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 12px;
     display: inline-block;
     margin-bottom: 10px;
 }

 .why_choose_us_heading {
     color: var(--bs-secondary-dark);
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 10px;
 }

 /* --- STYLISH "LEAF" CARDS --- */
 .why_choose_us_card {
     background: #fff;
     border: none;
     padding: 10px;
     position: relative;
     z-index: 2;
     /* Asymmetric Shape */
     border-radius: 20px 20px 60px 20px;
     box-shadow: 0 10px 30px rgba(59, 55, 136, 0.05);
     transition: all 0.4s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .why_choose_us_card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(45, 123, 175, 0.15);
     /* Morph shape on hover */
     border-radius: 20px 60px 20px 20px;
 }

 /* Icon Styling */
 .why_choose_us_icon_wrapper {
     width: 35px;
     height: 35px;
     margin-bottom: 5px;
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;

     /* Gradient Border Effect */
     background: linear-gradient(#fff, #fff) padding-box,
         linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) border-box;
     border: 2px solid transparent;
     color: var(--bs-secondary);
 }

 /* Material Icons Font Size override for the wrapper */
 .why_choose_us_icon_wrapper .material-icons {
     font-size: 14px;
 }

 .why_choose_us_card:hover .why_choose_us_icon_wrapper {
     background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) padding-box,
         linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) border-box;
     color: #fff;
     transform: rotate(-10deg);
 }

 .why_choose_us_card_title {
     font-weight: 700;
     color: #222;
     margin-bottom: 5px;
 }

 .why_choose_us_card_desc {
     color: #000;
     font-size: 0.68rem;
     line-height: 1.6;
     margin: 0;
 }

 /* --- RIGHT SIDE: ORGANIC IMAGE --- */
 .why_choose_us_img_container {
     position: relative;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .why_choose_us_organic_img {
     width: 100%;
     max-width: 500px;
     height: 300px;
     object-fit: cover;
     /* Liquid/Blob Shape */
     border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
     box-shadow: 20px 20px 0px rgba(45, 123, 175, 0.1);
     animation: morphShape 8s ease-in-out infinite;
     transition: all 0.5s ease;
     z-index: 2;
     position: relative;
 }

 @keyframes morphShape {
     0% {
         border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
     }

     50% {
         border-radius: 60% 40% 30% 70% / 60% 50% 40% 60%;
     }

     100% {
         border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
     }
 }

 /* Floating Badge Elements */
 .why_choose_us_badge {
     position: absolute;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     padding: 5px 8px;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     z-index: 3;
     display: flex;
     align-items: center;
     gap: 10px;
     border: 1px solid rgba(255, 255, 255, 0.5);
 }

 .why_choose_us_badge.top-right {
     top: 10%;
     right: 0;
     animation: floatBadge 5s ease-in-out infinite;
 }

 .why_choose_us_badge.bottom-left {
     bottom: 15%;
     left: 0;
     animation: floatBadge 6s ease-in-out infinite reverse;
 }

 @keyframes floatBadge {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .icon-circle {
     width: 25px;
     height: 25px;
     background: var(--bs-primary);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .icon-circle .material-icons {
     font-size: 15px;
 }

 /* --- SECTION --- */
 .pricing_luminous_section {
     padding: 30px 0;
     position: relative;
     overflow: hidden;
 }


 .pricing_badge_pill {
     background-color: #fff;
     color: var(--bs-secondary);
     padding: 8px 20px;
     border-radius: 50px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     display: inline-block;
     text-transform: uppercase;
 }

 /* --- CARD STYLING --- */
 .luminous_card {
     background: #ffffff;
     border-radius: var(--bs-border-radius-xl);
     padding: 20px 25px;
     position: relative;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(0, 0, 0, 0.03);
     height: 100%;
     z-index: 1;
     display: flex;
     flex-direction: column;
 }

 .luminous_card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
 }

 .luminous_card.popular {
     background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-secondary-dark) 100%);
     border: none;
     color: #fff;
     transform: scale(1.05);
     z-index: 2;
     box-shadow: 0 25px 50px rgba(59, 55, 136, 0.25);
 }

 .luminous_card.popular .plan_name,
 .luminous_card.popular .plan_period {
     color: #fff !important;
 }

 .luminous_card.popular .plan_price {
     background: none;
     -webkit-text-fill-color: #fff;
     color: #fff;
 }

 .luminous_card.popular .plan_desc {
     color: rgba(255, 255, 255, 0.8);
 }

 .luminous_card.popular .feature_list li {
     color: #fff;
 }

 .luminous_card.popular .feature_list li .material-icons {
     color: var(--bs-primary-light);
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
 }

 .luminous_card.popular .btn_fill {
     background: rgba(255, 255, 255, 0.2);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow: none;
 }

 .luminous_card.popular .btn_fill:hover {
     background: #fff;
     color: var(--bs-secondary);
 }

 .plan_name {
     font-size: 1.25rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 10px;
 }

 .plan_price {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1;
     margin-bottom: 5px;
     background: -webkit-linear-gradient(45deg, var(--bs-primary), var(--bs-secondary));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .plan_period {
     color: #999;
     font-weight: 500;
 }



 .feature_list {
     list-style: none;
     padding: 0;
     margin: 0 0 10px 0;
     flex-grow: 1;
 }

 .feature_list li {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     color: #555;
     font-size: 0.95rem;
 }

 .feature_list li .material-icons {
     font-size: 20px;
     margin-right: 12px;
     color: var(--bs-primary);
 }

 .feature_list li.dimmed {
     color: #ccc;
     text-decoration: line-through;
 }

 .feature_list li.dimmed .material-icons {
     color: #e0e0e0;
     background: transparent !important;
 }

 /* --- BUTTONS --- */
 .btn_luminous {
     width: 100%;
     padding: 15px;
     border-radius: 50px;
     font-weight: 700;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     border: none;
 }

 .btn_outline {
     background-color: rgba(45, 123, 175, 0.08);
     color: var(--bs-primary);
 }

 .btn_outline:hover {
     background-color: rgba(45, 123, 175, 0.15);
     color: var(--bs-primary-dark);
     transform: translateY(-2px);
 }

 /* Toggle Styling */

 /* Badge for Popular Card */
 .popular_badge {
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--bs-primary-light);
     color: #fff;
     padding: 4px 16px;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     z-index: 3;
 }

 /* --- FOOTER STYLING --- */
 .footer-section_wrapper {
     background-color: var(--bs-secondary-dark);
     color: #fff;
     padding-top: 10px;
     position: relative;
     overflow: hidden;
 }

 /* Background Pattern (Subtle) */
 .footer-section_wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(var(--bs-secondary-light) 1px, transparent 1px);
     background-size: 40px 40px;
     opacity: 0.05;
     pointer-events: none;
 }

 /* Headings */
 .footer-section_heading {
     font-weight: 700;
     margin: 10px 0;
     color: #fff;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-section_heading::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 3px;
     width: 40px;
     height: 1px;
     background-color: var(--bs-primary-light);
     border-radius: 2px;
 }

 /* Section 1: Brand & Description */
 .footer-section_logo {
     max-width: 180px;
     margin-bottom: 10px;
     filter: brightness(0) invert(1);
     /* Makes logo white if it's colored */
 }

 .footer-section_desc {
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.3;
     margin-bottom: 15px;
 }

 /* Contact Info List */
 .footer-section_contact_list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-section_contact_item {
     display: flex;
     align-items: flex-start;
     font-size: 0.66rem;
     color: rgba(255, 255, 255, 0.8);
 }

 .footer-section_contact_icon {
     color: var(--bs-primary-light);
     margin-right: 12px;
     font-size: 1.2rem;
     margin-top: 2px;
 }

 /* Links (Sections 2, 3, 4) */
 .footer-section_links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-section_link_item {
     margin-bottom: 5px;
 }

 .footer-section_link {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 10px;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
 }

 .footer-section_link:hover {
     color: var(--bs-primary-light);
     transform: translateX(5px);
 }

 .footer-section_link::before {
     content: '›';
     /* margin-right: 8px; */
     font-size: 1.2rem;
     line-height: 1;
     opacity: 0;
     transition: opacity 0.3s;
 }

 .footer-section_link:hover::before {
     opacity: 1;
 }

 /* Section 5: Download App */
 .footer-section_download_box {
     background: rgba(255, 255, 255, 0.05);
     padding: 10px;
     border-radius: var(--bs-border-radius);
     border: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     justify-content: space-evenly;
     align-items: center;
 }

 .footer-section_qr_wrapper {
     background: #fff;
     padding: 5px;
     border-radius: var(--bs-border-radius-sm);
     display: inline-block;
     margin-bottom: 15px;
 }

 .footer-section_qr_img {
     width: 80px;
     height: 80px;
 }

 .footer-section_app_btns {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }



 /* Bottom Copyright */
 .footer-section_bottom {
     margin-top: 12px;
     padding: 12px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.5);
 }


 .contact_home_input_group {
     background-color: #F5F7FA;
     border: 1px solid #E1E5EA;
     border-radius: var(--bs-border-radius);
     padding: 5px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
 }

 /* When clicking anywhere inside, the whole box glows */
 .contact_home_input_group:focus-within {
     background-color: #fff;
     border-color: var(--bs-primary);
     box-shadow: 0 4px 20px rgba(var(--bs-primary-rgb), 0.15);
     transform: translateY(-2px);
 }

 .contact_home_icon_box {
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--bs-secondary);
     font-size: 1.2rem;
     border-right: 1px solid rgba(0, 0, 0, 0.05);
     transition: color 0.3s;
 }

 .contact_home_icon_box .material-icons {
     font-size: 20px;
 }

 .contact_home_input_group:focus-within .contact_home_icon_box {
     color: var(--bs-primary);
 }

 .form-control,
 .form-select {
     background: transparent;
     border: none;
     padding: 7px 15px;
     font-weight: 500;
     color: #2c3e50;
     box-shadow: none !important;
     /* Remove default bootstrap shadow */
     height: auto;
 }

 .form-control,
 .form-select::placeholder {
     color: #aab2bd;
     font-weight: 400;
     font-size: 13px;
 }

 /* Label styling above the input */
 .contact_home_label {
     font-size: 0.85rem;
     font-weight: 600;
     color: #000;
     margin-bottom: 6px;
     display: block;
     margin-left: 4px;
 }

 /* --- 3. LAYOUT SECTION --- */

 /* Left Side: Image */
 .contact_home_image_col {
     background-color: var(--bs-secondary);
     position: relative;
     min-height: 400px;
     overflow: hidden;
 }

 .contact_home_cover_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     opacity: 0.9;
 }

 /* An attractive overlay on the image */
 .contact_home_overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(180deg, rgba(59, 55, 136, 0.2) 0%, rgba(45, 123, 175, 0.6) 100%);
     z-index: 2;
 }

 .contact_home_image_content {
     position: absolute;
     bottom: 10%;
     left: 10%;
     right: 10%;
     z-index: 3;
     color: white;
 }

 /* Right Side: Form */
 .contact_home_form_col {
     display: flex;
     align-items: center;
     padding: 60px;
 }

 .contact_home_form_wrapper {
     width: 100%;
     max-width: 600px;
     margin: 0 auto;
 }

 .contact_home_title {
     font-weight: 800;
     color: var(--bs-secondary);
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .contact_home_submit {
     background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
     color: white;
     font-weight: 600;
     padding: 10px;
     border: none;
     border-radius: var(--bs-border-radius);
     width: 100%;
     font-size: 14px;
     transition: all 0.3s ease;
     margin-top: 10px;
 }

 .contact_home_submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(var(--bs-secondary-rgb), 0.3);
 }

 .navbar-toggler {
     border: none !important;
 }



 /* --- 2. BANNER SECTION CSS --- */
 .breadcrumb-hero-banner {
     background: linear-gradient(135deg, var(--bs-secondary) 0%, #2A2560 100%);
     padding-top: 100px;
     padding-bottom: 30px;
     position: relative;
     color: white;
     text-align: center;
     overflow: hidden;
 }

 /* Optional: Subtle Pattern Overlay for "Fascinating" look */
 .breadcrumb-hero-banner::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
     background-size: 30px 30px;
     opacity: 0.3;
     pointer-events: none;
 }

 /* Flex container to align Title left and Breadcrumbs right */
 .banner-content-wrapper {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 8px;
     position: relative;
     z-index: 2;
     /* Ensures text sits above the pattern */
 }

 .banner-title {
     font-weight: 700;
     margin-bottom: 0;
     letter-spacing: -0.5px;
 }

 .banner-subtitle {
     opacity: 0.7;
     font-weight: 300;
     margin-top: 5px;
 }

 /* --- 3. BREADCRUMB STYLING --- */
 .modern-breadcrumb {
     background: rgba(255, 255, 255, 0.1);
     /* Glass effect */
     backdrop-filter: blur(5px);
     padding: 8px 15px;
     border-radius: 50px;
     /* Pill shape to match your navbar */
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .breadcrumb-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     align-items: center;
     font-size: 12px;
 }

 .bc-item {
     display: flex;
     align-items: center;
     color: rgba(255, 255, 255, 0.7);
 }

 .bc-item a {
     text-decoration: none;
     color: white;
     font-weight: 500;
     transition: opacity 0.2s;
 }

 .bc-item a:hover {
     opacity: 0.8;
 }

 .bc-separator {
     font-family: 'Material Icons';
     font-size: 16px;
     margin: 0 8px;
     opacity: 0.5;
 }

 .bc-item.active {
     color: #fff;
     font-weight: 600;
     background: var(--bs-primary);
     /* Highlight active page */
     padding: 2px 12px;
     border-radius: 12px;
     margin-left: 5px;
 }

 @media (max-width: 768px) {

     .banner-content-wrapper {
         justify-content: center;
         flex-direction: column;
         align-items: center;
     }
 }

 /* --- SECTION STYLES --- */
 .about_us_page {
     font-family: 'Segoe UI', Roboto, sans-serif;
     color: #555;
     line-height: 1.8;
 }

 /* Text Utilities */
 .about_us_page .text-primary-custom {
     color: var(--bs-primary) !important;
 }

 .about_us_page .text-secondary-custom {
     color: var(--bs-secondary) !important;
 }

 /* Image Styling */
 .about_us_page .story-img-wrapper {
     position: relative;
     z-index: 1;
 }

 .about_us_page .story-img {
     border-radius: var(--bs-border-radius);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
     width: 100%;
     height: auto;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .about_us_page .story-img:hover {
     transform: translateY(-5px);
 }

 /* Decorative shape behind image */
 .about_us_page .story-img-wrapper::before {
     content: '';
     position: absolute;
     top: -20px;
     left: -20px;
     width: 100px;
     height: 100px;
     background: var(--bs-secondary);
     border-radius: var(--bs-border-radius);
     opacity: 0.1;
     z-index: -1;
 }

 .about_us_page .story-img-wrapper::after {
     content: '';
     position: absolute;
     bottom: -20px;
     right: -20px;
     width: 150px;
     height: 150px;
     background: var(--bs-primary);
     border-radius: 50%;
     opacity: 0.1;
     z-index: -1;
 }

 /* Material Icons Styling */
 .about_us_page .feature-item {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
 }

 .about_us_page .material-icons.icon-styled {
     color: var(--bs-primary);
     background: rgba(45, 123, 175, 0.1);
     /* Primary light opacity */
     padding: 8px;
     border-radius: 50%;
     margin-right: 12px;
     font-size: 20px;
     /* Adjust icon size */
     display: flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
 }

 .about_us_page h2 {
     font-weight: 800;
     letter-spacing: -0.5px;
 }

 /* --- Auth Model CSS --- */
 .auth_model .modal-content {
     border: none;
     border-radius: var(--bs-border-radius-xl);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     padding: 10px;
     overflow: hidden;
 }

 .auth_model .modal-header {
     border-bottom: none;
     padding-bottom: 0;
 }

 .auth_model .modal-title {
     font-weight: 700;
     font-size: 1.6rem;
     color: #000;
 }

 .auth_model .btn-close-custom {
     background: transparent;
     border: none;
     color: #aaa;
     transition: 0.3s;
     border-radius: 50%;
     width: 32px;
     height: 32px;
 }

 .auth_model .btn-close-custom:hover {
     background-color: #f0f0f0;
     color: #333;
     transform: rotate(90deg);
 }

 /* Inputs */
 .auth_model .custom-input-group,
 .auth_model .form-select-custom {
     border: 1px solid #e0e0e0;
     border-radius: 12px;
     padding: 4px;
     transition: 0.3s;
     background: #fff;
     display: flex;
     align-items: center;
 }

 .auth_model .custom-input-group:focus-within,
 .auth_model .form-select-custom:focus {
     border-color: var(--bs-primary);
     box-shadow: 0 0 0 4px rgba(45, 123, 175, 0.1);
     outline: none;
 }

 .auth_model .country-btn {
     border: none;
     background: transparent;
     font-weight: 500;
     color: #333;
     padding-left: 15px;
     border-right: 1px solid #eee;
     height: 100%;
 }

 .auth_model .input-icon {
     padding: 0 15px;
     color: #6c757d;
     border-right: 1px solid #eee;
     display: flex;
     align-items: center;
 }

 .auth_model .form-control {
     border: none;
     box-shadow: none;
     padding: 12px;
     font-size: 1rem;
     font-weight: 500;
 }

 /* Dropdown Arrow Customization */
 .auth_model .form-select-custom {
     width: 100%;
     padding: 12px 15px;
     font-size: 1rem;
     font-weight: 500;
     color: #333;
     appearance: none;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     background-size: 16px 12px;
     cursor: pointer;
 }

 .auth_model .otp-input {
     letter-spacing: 6px;
     font-size: 1.3rem;
     background-color: #fcfcfc;
     text-align: center;
     font-weight: 600;
 }

 .auth_model .btn-main {
     background-color: #000;
     color: white;
     border-radius: 12px;
     font-weight: 600;
     padding: 14px;
     width: 100%;
     transition: transform 0.2s;
 }

 .auth_model .btn-main:hover {
     background-color: #333;
     transform: translateY(-2px);
     color: #fff;
 }

 .store-badge {
     height: 30px;
     cursor: pointer;
     transition: opacity 0.2s;
 }

 .store-badge:hover {
     opacity: 0.8;
 }




 .contact_us_page .icon-box {
     width: 50px;
     height: 50px;
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 /* 3. Main Form Section Styling (Matching your Screenshot) */
 .contact_us_page .form-section {
     padding: 30px 0;
 }

 /* Left Image Side */
 .contact_us_page .image-col {
     background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80');
     /* Placeholder office image */
     background-size: cover;
     background-position: center;
     border-radius: var(--bs-border-radius-lg);
     min-height: 500px;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: flex-end;
 }

 .contact_us_page .image-overlay {
     background: linear-gradient(to top, rgba(59, 55, 136, 0.9), transparent);
     /* Secondary color gradient */
     width: 100%;
     padding: 40px;
     color: white;
 }

 /* Right Form Side */
 .contact_us_page .badge-custom {
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     padding: 8px 16px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 0.85rem;
     display: inline-block;
     margin-bottom: 15px;
 }


 /* 4. Map Section */
 .contact_us_page .map-container {
     border-radius: var(--bs-border-radius-lg);
     overflow: hidden;
     height: 400px;
 }

 /* list-page */
 /* --- 1. SIDEBAR (White Background + Shadow) --- */

 @media (min-width: 992px) {
     .list_page_design-sidebar-wrapper {
         position: sticky;
         top: 20px;
         background: white;
         border: 1px solid #ececec;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
         border-radius: var(--bs-border-radius);
         padding: 24px;
         max-height: calc(100vh - 40px);
         overflow-y: auto;
         z-index: 100;
     }

     .list_page_design-sidebar-wrapper::-webkit-scrollbar {
         width: 4px;
     }

     .list_page_design-sidebar-wrapper::-webkit-scrollbar-thumb {
         background: #ddd;
         border-radius: 2px;
     }

     .offcanvas-header,
     .mobile-apply-btn {
         display: none;
     }
 }

 @media (max-width: 991.98px) {
     .list_page_design-sidebar-wrapper {
         padding: 20px;
     }

     .offcanvas {
         border-radius: 0 16px 16px 0;
     }
 }

 .filter-section {
     margin-bottom: 25px;
 }

 .filter-title {
     font-size: 0.8rem;
     text-transform: uppercase;
     font-weight: 700;
     color: #8898aa;
     margin-bottom: 12px;
 }

 .location-input-group {
     display: flex;
     border: 1px solid #dee2e6;
     border-radius: 8px;
     overflow: hidden;
 }

 .location-input-group input {
     border: none;
     padding: 10px;
     font-size: 0.9rem;
     width: 100%;
     outline: none;
 }

 .btn-detect {
     background: white;
     border: none;
     color: var(--bs-primary);
     padding: 0 12px;
 }

 /* Chip Styling */
 .chip-group {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .chip-check {
     display: none;
 }

 .chip-btn {
     padding: 6px 12px;
     background: #f1f4f8;
     color: var(--bs-secondary);
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     cursor: pointer;
     border: 1px solid transparent;
     transition: 0.2s;
 }

 .chip-check:checked+.chip-btn {
     background: var(--bs-primary);
     color: white;
 }

 .sidebar-service-link {
     display: block;
     padding: 6px 0;
     color: #666;
     text-decoration: none;
     font-size: 0.9rem;
     transition: 0.2s;
 }

 .sidebar-service-link:hover {
     color: var(--bs-primary);
     padding-left: 5px;
 }


 /* --- 3. CARD DESIGN (Unchanged) --- */
 .list_page_design-card {
     background: var(--card-bg);
     border-radius: var(--bs-border-radius);
     border: none;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
     transition: transform 0.3s, box-shadow 0.3s;
     border: 1px solid #cacaca;
     height: 100%;
     overflow: hidden;
     position: relative;
 }

 .list_page_design-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .list_page_design-img-wrapper {
     position: relative;
     height: 180px;
     overflow: hidden;
 }

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

 .list_page_design-badge-distance {
     position: absolute;
     bottom: 10px;
     left: 10px;
     background: rgba(45, 123, 175, 0.9);
     color: white;
     padding: 4px 10px;
     border-radius: var(--bs-border-radius-xl);
     font-size: 0.8rem;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .list_page_design-btn-save {
     position: absolute;
     top: 10px;
     right: 10px;
     background: rgba(255, 255, 255, 0.9);
     border: none;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: var(--text-muted);
     transition: 0.2s;
 }

 .list_page_design-btn-save:hover {
     background: white;
     color: #e74c3c;
     transform: scale(1.1);
 }

 .list_page_design-body {
     padding: 10px;
 }

 .list_page_design-title {
     font-size: 17px;
     font-weight: 700;
     color: #2A2560;
     margin-bottom: 5px;
     display: flex;
     justify-content: space-between;
 }

 .list_page_design-category {
     font-size: 12px;
     color: var(--bs-primary);
     font-weight: 600;
     text-transform: uppercase;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .list_page_design-stats {
     display: flex;
     gap: 15px;
     margin-bottom: 10px;
     background: #f8f9fa;
     padding: 8px;
     border-radius: 8px;
 }

 .list_page_design-stat-item {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 0.85rem;
     color: var(--bs-secondary);
     font-weight: 500;
 }

 .star-yellow {
     color: #ffc107;
 }

 .list_page_design-footer {
     border-top: 1px solid #eee;
     padding-top: 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .list_page_design-address {
     font-size: 0.85rem;
     color: #6c757d;
     max-width: 60%;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .list_page_design-icon-btn {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: 0.2s;
     text-decoration: none;
 }

 .btn-map {
     background: #eef2f6;
     color: var(--bs-secondary);
 }

 .btn-map:hover {
     background: var(--bs-secondary);
     color: white;
 }

 .btn-web {
     background: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
 }

 .btn-web:hover {
     background: var(--bs-primary);
     color: white;
 }

 /* --- 4. PAGINATION --- */
 .list_page_design-pagination-wrapper {
     margin-top: 50px;
     display: flex;
     justify-content: center;
 }

 .list_page_design-pagination .page-item {
     margin: 0 4px;
 }

 .list_page_design-pagination .page-link {
     border: none;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     color: var(--bs-secondary);
     font-weight: 600;
     background: white;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .list_page_design-pagination .page-link:hover {
     background: #e9ecef;
     color: var(--bs-primary);
     transform: translateY(-3px);
 }

 .list_page_design-pagination .page-item.active .page-link {
     background: var(--bs-primary);
     color: white;
     box-shadow: 0 5px 15px rgba(45, 123, 175, 0.3);
     transform: translateY(-3px);
 }

 .list_page_design-pagination .page-link .material-icons {
     font-size: 18px;
 }


 /* 2. Main Navbar Styling */
 .services_dropdwon {
     background-color: #e9f4ff;
     border-bottom: 1px solid #dee2e6;
     padding: 0;
 }

 /* Top Level Links */
 .services_dropdwon .nav-link {
     color: #333;
     font-weight: 600;
     padding: 8px;
     border-bottom: 1px solid #dee2e6;
     transition: all 0.3s ease;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .services_dropdwon .nav-link:hover {
     color: var(--bs-primary);
 }

 /* Dropdown Items Styling */
 .services_dropdwon .dropdown-item {
     padding: 5px 2px;
     color: #555;
     border-bottom: 1px solid #eee;
     font-weight: 400;
     font-size: 12px !important;
     border-left: 3px solid transparent;
     transition: all 0.2s;
 }

 .services_dropdwon .dropdown-item:hover {
     background-color: #f0f8ff;
     color: var(--bs-primary-dark);
     border-left: 3px solid var(--bs-primary);
     padding-left: 25px;
 }

 .navbar-toggler:focus {
     box-shadow: none !important;
 }



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

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /*  */


 /* workshop-details */

 .workshop_details_page-wrapper {
     padding: 20px 0;
     overflow: hidden;
 }

 /* Cards */
 .workshop_details_page-card {
     background: var(--bg-surface);
     border-radius: var(--bs-border-radius);
     border: 1px solid rgba(0, 0, 0, 0.05);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
     padding: 14px;
     margin-bottom: 10px;
     overflow: hidden;
 }

 /* Typography */
 .workshop_details_page-title {
     font-weight: 700;
     color: var(--bs-secondary-dark);
     margin-bottom: 5px;
 }

 .workshop_details_page-subtitle {
     color: var(--text-muted);
     font-weight: 500;
 }

 .workshop_details_page-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: var(--text-muted);
     margin-bottom: 8px;
     display: block;
     font-weight: 600;
 }

 /* Badges & Stats */
 .workshop_details_page-badge {
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     padding: 4px 8px;
     border-radius: var(--bs-border-radius-sm);
     font-size: 12px;
     font-weight: 600;
     display: inline-block;
 }

 .workshop_details_page-rating {
     background-color: #FFF8E1;
     color: #F57F17;
     padding: 4px 8px;
     border-radius: var(--bs-border-radius-sm);
     font-weight: 700;
     display: inline-flex;
     align-items: center;
     gap: 4px;
 }

 .workshop_details_page-job-count {
     color: var(--bs-secondary);
     font-weight: 600;
     font-size: 12px;
 }

 /* --- EMBLA CAROUSEL STYLES --- */
 .embla {
     overflow: hidden;
     border-radius: var(--bs-border-radius);
     margin-bottom: 10px;
     aspect-ratio: 16/9;
     background: #eee;
 }

 .embla__container {
     display: flex;
 }

 .embla__slide {
     flex: 0 0 100%;
     min-width: 0;
 }

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

 /* Thumbnail Slider */
 .embla-thumbs {
     overflow: hidden;
 }

 .embla-thumbs__container {
     display: flex;
     gap: 10px;
     cursor: pointer;
 }

 .embla-thumbs__slide {
     flex: 0 0 20%;
     min-width: 0;
     opacity: 0.5;
     transition: opacity 0.2s ease-in-out, border-color 0.2s;
     border-radius: var(--bs-border-radius-sm);
     overflow: hidden;
     aspect-ratio: 4/3;
     border: 2px solid transparent;
 }

 /* Selected state */
 .embla-thumbs__slide--selected {
     opacity: 1;
     border-color: var(--bs-primary);
 }

 .embla-thumbs__slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* --- INTERACTIVE STAR RATING --- */
 .workshop_details_page-star-input {
     display: flex;
     flex-direction: row-reverse;
     justify-content: center;
     gap: 5px;
 }

 .workshop_details_page-star-input input {
     display: none;
 }

 .workshop_details_page-star-input label {
     cursor: pointer;
     color: #ddd;
     font-size: 2rem;
     transition: color 0.2s;
 }

 .workshop_details_page-star-input label .material-icons {
     font-size: 2.5rem;
 }

 /* Hover and Checked Logic */
 .workshop_details_page-star-input input:checked~label,
 .workshop_details_page-star-input label:hover,
 .workshop_details_page-star-input label:hover~label {
     color: #ffc107;
 }

 /* Misc Buttons */
 .workshop_details_page-icon-btn {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     border: 1px solid #e0e0e0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--bs-secondary);
     background: white;
     transition: all 0.2s;
     cursor: pointer;
 }

 .workshop_details_page-icon-btn:hover {
     background-color: rgba(59, 55, 136, 0.05);
     border-color: var(--bs-secondary);
 }

 .workshop_details_page-pill {
     display: inline-block;
     padding: 4px 8px;
     margin: 0 4px 8px 0;
     background: #f8f9fa;
     border: 1px solid #e9ecef;
     border-radius: var(--bs-border-radius-xl);
     font-size: 10px;
     color: var(--bs-secondary-dark);
 }

 .workshop_details_page-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 10px;
     font-size: 12px;
     color: #444;
 }

 .workshop_details_page-contact-item .material-icons {
     color: var(--bs-primary);
     font-size: 20px;
     margin-top: 2px;
 }

 .workshop_details_page-btn-primary {
     background-color: var(--bs-primary);
     color: white;
     border: none;
     border-radius: var(--bs-border-radius);
     padding: 12px 20px;
     font-weight: 600;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     text-decoration: none;
     transition: background-color 0.2s;
 }

 .workshop_details_page-btn-primary:hover {
     background-color: var(--bs-primary-dark);
     color: white;
 }

 .workshop_details_page-btn-secondary {
     background-color: white;
     color: var(--bs-secondary);
     border: 2px solid var(--bs-secondary);
     border-radius: var(--bs-border-radius);
     padding: 12px 20px;
     font-weight: 600;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     text-decoration: none;
     transition: all 0.2s;
 }

 .workshop_details_page-btn-secondary:hover {
     background-color: rgba(59, 55, 136, 0.05);
     color: var(--bs-secondary);
 }

 /* Catalog Grid */
 .workshop_details_page-product-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
     gap: 15px;
 }

 .workshop_details_page-product-item {
     border: 1px solid #eee;
     border-radius: var(--bs-border-radius-sm);
     padding: 10px;
     text-align: center;
 }

 .workshop_details_page-product-img {
     width: 100%;
     height: 100px;
     object-fit: cover;
     border-radius: var(--bs-border-radius-sm);
     margin-bottom: 8px;
 }

 .download_app img {
     width: 100%;
     max-height: 50px;
     transition: all 0.2s;
 }

 .download_app img:hover {
     transform: scale(1.03);
 }

 .download-app-title a {
     color: var(--bs-primary);
 }

 /*  */


 /* product-list */
 .product_list_page_style-sidebar-box {
     background: var(--bs-card-bg);
     border-radius: var(--bs-border-radius-xl);
     padding: 24px;
     box-shadow: var(--shadow-sm);
     border: 1px solid rgba(0, 0, 0, 0.03);
     margin-bottom: 24px;
 }

 /* --- 2. Custom Inputs --- */
 .product_list_page_style-input {
     background-color: var(--input-bg);
     border: 1px solid transparent;
     border-radius: 10px;
     padding: 10px 14px;
     padding-right: 40px;
     /* Space for icon */
     font-size: 0.9rem;
     width: 100%;
     transition: all 0.2s;
 }

 .product_list_page_style-input:focus {
     background-color: #fff;
     border-color: var(--bs-primary);
     box-shadow: 0 0 0 3px rgba(45, 123, 175, 0.1);
     outline: none;
 }

 /* --- 3. Custom Checkboxes --- */
 .product_list_page_style-checkbox-input {
     position: absolute;
     opacity: 0;
     cursor: pointer;
     height: 0;
     width: 0;
 }

 .product_list_page_style-checkbox-label {
     display: flex;
     align-items: center;
     cursor: pointer;
     font-size: 0.9rem;
     color: #555;
     user-select: none;
     margin-bottom: 8px;
     transition: color 0.2s;
 }

 .product_list_page_style-checkbox-label:hover {
     color: var(--bs-primary);
 }

 .product_list_page_style-checkmark {
     height: 18px;
     width: 18px;
     background-color: #fff;
     border: 2px solid #ddd;
     border-radius: 4px;
     margin-right: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s;
     flex-shrink: 0;
 }

 .product_list_page_style-checkbox-input:checked~.product_list_page_style-checkmark {
     background-color: var(--bs-primary);
     border-color: var(--bs-primary);
 }

 /* The Check Icon (CSS drawn) */
 .product_list_page_style-checkmark:after {
     content: "";
     display: none;
     width: 5px;
     height: 9px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
     margin-bottom: 2px;
 }

 .product_list_page_style-checkbox-input:checked~.product_list_page_style-checkmark:after {
     display: block;
 }

 /* --- 4. Garage Type Pills --- */
 .product_list_page_style-pill {
     background: white;
     border: 1px solid #e0e0e0;
     color: #666;
     padding: 6px 14px;
     border-radius: 50px;
     font-size: 0.8rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s ease;
     display: inline-block;
 }

 .product_list_page_style-pill:hover,
 .product_list_page_style-pill.active {
     background: var(--bs-primary);
     border-color: var(--bs-primary);
     color: white;
     box-shadow: 0 4px 10px rgba(45, 123, 175, 0.2);
 }

 /* --- 5. Accordion Styles (Updated for Material Icons) --- */
 .product_list_page_style-accordion-btn {
     background: transparent;
     border: none;
     width: 100%;
     text-align: left;
     padding: 12px 0;
     font-weight: 700;
     color: #333;
     font-size: 0.95rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .product_list_page_style-accordion-btn:focus {
     outline: none;
 }

 .product_list_page_style-accordion-btn::after {
     content: '\e5cf';
     /* Material Icon: expand_more */
     font-family: 'Material Icons';
     transition: transform 0.2s;
     font-size: 1.2rem;
     font-weight: normal;
 }

 .product_list_page_style-accordion-btn[aria-expanded="true"]::after {
     transform: rotate(180deg);
     color: var(--bs-primary);
 }

 .product_list_page_style-scroll-content {
     max-height: 220px;
     overflow-y: auto;
     scrollbar-width: thin;
     scrollbar-color: #ccc transparent;
     padding-right: 5px;
 }

 /* --- 6. MODERN CARD DESIGN --- */
 .product_list_page_style-card {
     background: var(--bs-card-bg);
     border-radius: var(--bs-border-radius-xl);
     border: none;
     box-shadow: var(--shadow-sm);
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     height: 100%;
     overflow: hidden;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 .product_list_page_style-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-hover);
 }

 .product_list_page_style-img-wrapper {
     height: 200px;
     position: relative;
     background-color: #f8f9fa;
 }

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

 .product_list_page_style-overlay-badges {
     position: absolute;
     top: 12px;
     left: 12px;
     right: 12px;
     display: flex;
     justify-content: space-between;
 }

 .product_list_page_style-badge {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(4px);
     padding: 5px 10px;
     border-radius: 8px;
     font-size: 0.7rem;
     font-weight: 700;
     color: var(--bs-secondary);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .product_list_page_style-card-body {
     padding: 20px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .product_list_page_style-title {
     font-size: 1.05rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 4px;
     line-height: 1.4;
 }

 .product_list_page_style-subtitle {
     font-size: 0.8rem;
     color: #8898aa;
     margin-bottom: 12px;
 }

 .product_list_page_style-price {
     font-size: 1.25rem;
     font-weight: 800;
     color: var(--bs-primary);
 }

 .product_list_page_style-qty-badge {
     background: #EDF2F7;
     color: #555;
     padding: 4px 8px;
     border-radius: 6px;
     font-size: 0.75rem;
     font-weight: 600;
 }

 .product_list_page_style-location-row {
     margin-top: auto;
     padding-top: 12px;
     border-top: 1px dashed #eee;
     color: #6c757d;
     font-size: 0.8rem;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .btn-outline-primary {
     color: var(--bs-primary) !important;
     border-color: var(--bs-primary) !important;
 }

 .btn-outline-primary:hover {
     color: #fff !important;
     background-color: var(--bs-primary) !important;
 }

 .dropdown-toggle::after {
     display: none !important;
 }

 .download-app-title {
     font-size: 12px;
 }

 /*  */

 /* --- PRODUCT DETAILS PAGE STYLES --- */
 .product-details-page-wrapper {
     padding-top: 1rem;
     padding-bottom: 3rem;
 }

 .product-details-page-card {
     background: var(--bs-card-bg);
     border-radius: var(--bs-border-radius);
     padding: 10px;
     margin-bottom: 1rem;
     box-shadow: var(--shadow-sm);
     border: 1px solid rgba(0, 0, 0, 0.05);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }


 /* Typography */
 .product-details-page-title {
     color: var(--bs-secondary-dark);
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .product-details-page-subtitle {
     color: #6c757d;
     font-size: 0.95rem;
 }

 .product-details-page-price {
     font-size: 1.75rem;
     font-weight: 800;
     color: var(--bs-primary);
 }

 .product-details-page-badge {
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     display: inline-block;
 }

 /* Buttons */
 .product-details-page-icon-btn {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     border: 1px solid #dee2e6;
     background: white;
     color: #6c757d;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s;
 }

 .product-details-page-icon-btn .material-icons {
     font-size: 18px;
 }

 .product-details-page-icon-btn:hover {
     background: var(--bs-primary);
     color: white;
     border-color: var(--bs-primary);
 }

 .product-details-page-btn-primary {
     background: var(--bs-primary);
     color: white;
     border: none;
     padding: 6px 10px;
     border-radius: var(--bs-border-radius-sm);
     font-weight: 600;
     width: 100%;
     transition: background 0.2s;
 }

 .product-details-page-btn-primary:hover {
     background: var(--bs-primary-dark);
 }

 .product-details-page-btn-secondary {
     background: white;
     color: var(--bs-primary);
     border: 2px solid var(--bs-primary);
     padding: 6px 10px;
     border-radius: var(--bs-border-radius-sm);
     font-weight: 600;
     width: 100%;
     text-decoration: none;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
     transition: all 0.2s;
 }

 .product-details-page-btn-secondary:hover {
     background: rgba(45, 123, 175, 0.05);
     color: var(--bs-primary-dark);
 }

 /* Specs Table & Grid */
 .product-details-page-spec-row {
     display: flex;
     justify-content: space-between;
     padding: 8px 0;
     border-bottom: 1px solid #eee;
 }

 .product-details-page-spec-label {
     color: #6c757d;
     font-size: 0.8rem;
 }

 .product-details-page-spec-value {
     font-weight: 500;
     color: var(--bs-secondary-dark);
     font-size: 0.8rem;
     text-align: right;
 }

 .product-details-page-similar-card {
     border: 1px solid #eee;
     border-radius: var(--bs-border-radius-sm);
     overflow: hidden;
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .product-details-page-similar-card:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-hover);
 }

 .product-details-page-similar-img {
     width: 100%;
     height: 140px;
     object-fit: cover;
 }

 .product-details-page-similar-body {
     padding: 10px;
 }

 .quantity-selector {
     display: inline-flex;
     align-items: center;
     background-color: var(--input-bg);
     /* Uses your root variable */
     border-radius: 50px;
     /* Capsule shape */
     padding: 4px;
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .quantity-btn {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     border: none;
     background-color: #fff;
     color: var(--bs-primary);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .quantity-btn:hover {
     background-color: var(--bs-primary);
     color: #fff;
     transform: translateY(-1px);
 }

 .quantity-btn:active {
     transform: scale(0.95);
 }

 .quantity-input {
     width: 40px;
     text-align: center;
     border: none;
     background: transparent;
     font-weight: 700;
     color: var(--bs-secondary-dark);
     margin: 0 5px;
     outline: none;
 }

 /* --- 2. Material Icons Helper --- */
 .blog_list_page .material-icons {
     font-size: 18px;
     /* Adjusted size for inline text */
     vertical-align: middle;
     position: relative;
     top: -1px;
 }

 /* --- 4. Card Styling --- */
 .blog_list_page__card {
     background-color: var(--bs-card-bg);
     border-radius: var(--bs-border-radius);
     border: none;
     box-shadow: var(--shadow-sm);
     border: 1px solid #d7d7d7;
     transition: all 0.3s ease;
     height: 100%;
     overflow: hidden;
     display: flex;
     flex-direction: column;
 }

 .blog_list_page__card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-hover);
 }

 /* Image Wrapper */
 .blog_list_page__img-wrapper {
     position: relative;
     overflow: hidden;
     height: 220px;
     background-color: #eee;
 }

 .blog_list_page__img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .blog_list_page__card:hover .blog_list_page__img {
     transform: scale(1.05);
 }

 /* Category Badge */
 .blog_list_page__category {
     position: absolute;
     top: 15px;
     left: 15px;
     background-color: rgba(59, 55, 136, 0.9);
     /* Secondary color */
     color: #fff;
     padding: 5px 12px;
     font-size: 0.75rem;
     font-weight: 600;
     border-radius: var(--bs-border-radius-sm);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     z-index: 2;
 }

 /* Content Area */
 .blog_list_page__content {
     padding: 14px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .blog_list_page__meta {
     display: flex;
     align-items: center;
     font-size: 0.85rem;
     color: #888;
     margin-bottom: 12px;
 }

 .blog_list_page__meta .material-icons {
     margin-right: 4px;
     color: var(--bs-primary);
     font-size: 16px;
 }

 .blog_list_page__meta-divider {
     margin: 0 10px;
     color: #ddd;
 }

 .blog_list_page__card-title {
     font-size: 1rem;
     font-weight: 700;
     color: var(--bs-secondary-dark);
     margin-bottom: 12px;
     line-height: 1.4;
 }

 .blog_list_page__card-title a {
     text-decoration: none;
     color: inherit;
     transition: color 0.2s;
 }

 .blog_list_page__card-title a:hover {
     color: var(--bs-primary);
 }

 .blog_list_page__excerpt {
     font-size: 0.75rem;
     color: #666;
     margin-bottom: 15px;
     flex-grow: 1;
     /* Pushes the footer down */
 }

 /* Card Footer - Modified (Removed Author) */
 .blog_list_page__footer {
     margin-top: auto;
     display: flex;
     justify-content: flex-end;
     /* Align Read More to right */
     align-items: center;
     border-top: 1px solid #f0f0f0;
     padding-top: 15px;
 }

 .blog_list_page__read-more {
     color: var(--bs-primary);
     font-weight: 700;
     font-size: 0.9rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     padding: 5px 0;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .blog_list_page__read-more:hover {
     color: var(--bs-secondary);
 }

 .blog_list_page__read-more .material-icons {
     margin-left: 5px;
     transition: margin-left 0.2s;
     font-size: 18px;
 }

 .blog_list_page__read-more:hover .material-icons {
     margin-left: 10px;
 }

 /* --- 5. Pagination & Button --- */
 .blog_list_page__pagination-wrapper {
     margin-top: 60px;
     margin-bottom: 60px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
 }

 .blog_list_page__btn-view-more {
     background-color: var(--bs-primary);
     color: white;
     border: none;
     padding: 12px 40px;
     font-weight: 600;
     border-radius: var(--bs-border-radius-xl);
     box-shadow: 0 4px 15px rgba(45, 123, 175, 0.3);
     transition: all 0.3s ease;
 }

 .blog_list_page__btn-view-more:hover {
     background-color: var(--bs-secondary);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(59, 55, 136, 0.3);
     color: #fff;
 }

 /* Custom Bootstrap Pagination Override */
 .page-link {
     color: var(--bs-secondary);
     border: none;
     margin: 0 5px;
     border-radius: 8px;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
 }

 .page-link:hover {
     background-color: #e9ecef;
     color: var(--bs-primary);
 }

 .page-item.active .page-link {
     background-color: var(--bs-primary);
     color: white;
     box-shadow: 0 4px 10px rgba(45, 123, 175, 0.3);
 }

 /* Adjust Material Icons inside pagination */
 .page-link .material-icons {
     font-size: 20px;
 }

 /* Wrapper to ensure background color covers the area */
 .faq_list_page-wrapper {
     background-color: var(--bs-bg-body);
     padding: 30px 0;
     font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
 }

 /* --- Column Headers --- */
 .faq_list_page-col-header {
     font-size: 1rem;
     font-weight: 700;
     color: var(--bs-secondary);
     margin-bottom: 25px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .faq_list_page-icon-box {
     width: 45px;
     height: 45px;
     background: white;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     color: var(--bs-primary);
 }

 .faq_list_page-icon-box .material-icons {
     font-size: 24px;
 }

 /* --- Accordion Item (Card) --- */
 .faq_list_page-item {
     border: none !important;
     background: transparent !important;
     margin-bottom: 15px;
 }

 /* --- The Button (Trigger) --- */
 .faq_list_page-btn {
     background-color: var(--bs-card-bg);
     color: var(--bs-secondary);
     font-weight: 600;
     font-size: 0.9rem;
     border-radius: var(--bs-border-radius) !important;
     padding: 12px;
     border: 1px solid rgba(0, 0, 0, 0.03);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     position: relative;
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
     text-align: left;
 }

 /* Override Bootstrap focus */
 .faq_list_page-btn:focus {
     box-shadow: none;
     border-color: rgba(0, 0, 0, 0.05);
 }

 /* Hide default bootstrap arrow */
 .faq_list_page-btn::after {
     display: none !important;
 }

 /* Custom Toggle Icon */
 .faq_list_page-toggle-icon {
     font-size: 24px;
     color: var(--bs-primary);
     transition: transform 0.3s ease;
 }

 /* --- ACTIVE STATE (Click Effect) --- */
 /* When expanded, turn blue */
 .faq_list_page-btn:not(.collapsed) {
     background-color: var(--bs-primary);
     color: #ffffff;
     box-shadow: 0 8px 25px rgba(45, 123, 175, 0.35);
     transform: translateY(-3px);
     border-color: var(--bs-primary);
 }

 /* Rotate icon and turn white when active */
 .faq_list_page-btn:not(.collapsed) .faq_list_page-toggle-icon {
     color: #ffffff;
     transform: rotate(180deg);
 }

 /* --- Content Body --- */
 .faq_list_page-body {
     background-color: #fff;
     border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
     padding: 30px;
     margin-top: -10px;
     /* Pulls it up slightly under the header */
     border: 1px solid rgba(0, 0, 0, 0.03);
     border-top: none;
     color: #5a6a7e;
     line-height: 1.7;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
     position: relative;
     z-index: 1;
     /* Behind the button */
 }

 /* Material Icons Helper */
 .blog_details_page .material-icons {
     vertical-align: middle;
     font-size: 20px;
 }

 /* --- 3. Header Section --- */
 .blog_details_page__header {
     margin-bottom: 20px;
 }

 .blog_details_page__category-badge {
     display: inline-block;
     background-color: var(--bs-secondary-rgb);
     background: rgba(59, 55, 136, 0.1);
     color: var(--bs-secondary);
     padding: 6px 12px;
     border-radius: 6px;
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 15px;
 }

 .blog_details_page__title {
     font-size: 1.25rem;
     /* Large but not huge */
     font-weight: 800;
     color: var(--bs-secondary-dark);
     line-height: 1.2;
     margin-bottom: 15px;
 }



 .blog_details_page__meta {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
     font-size: 0.58rem;
     color: #666;
     padding-bottom: 20px;
     border-bottom: 1px solid #e0e0e0;
 }

 .blog_details_page__meta-item {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .blog_details_page__meta-item i,
 .blog_details_page__meta-item .material-icons {
     color: var(--bs-primary);
 }

 /* --- 4. Featured Image --- */
 .blog_details_page__featured-img-wrapper {
     width: 100%;
     height: auto;
     border-radius: var(--bs-border-radius-lg);
     overflow: hidden;
     margin-bottom: 30px;
     box-shadow: var(--shadow-sm);
 }

 .blog_details_page__featured-img {
     width: 100%;
     height: auto;
     max-height: 500px;
     object-fit: cover;
     display: block;
 }

 /* --- 5. Content Layout --- */
 /* The main container for text */
 .blog_details_page__content-area {
     font-size: 0.8rem;
     color: #444;
 }

 .blog_details_page__content-area h2 {
     color: var(--bs-secondary);
     font-weight: 700;
     margin: 1rem 0;
     font-size: 1.2rem;
 }

 .blog_details_page__content-area h3 {
     color: var(--bs-primary-dark);
     font-weight: 600;
     margin-top: 1.5rem;
     margin-bottom: 0.8rem;
     font-size: 1.4rem;
 }

 .blog_details_page__content-area ul {
     margin-bottom: 1.5rem;
     padding-left: 1.5rem;
 }

 .blog_details_page__content-area li {
     margin-bottom: 0.5rem;
 }

 .blog_details_page__blockquote {
     border-left: 4px solid var(--bs-primary);
     background-color: #fff;
     padding: 10px;
     border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
     margin: 1rem 0;
     font-style: italic;
     color: var(--bs-secondary-dark);
     font-size: 0.8rem;
 }

 .blog_details_page__sidebar {
     position: sticky;
     top: 105px;
 }

 .blog_details_page__toc {
     display: none;
     background-color: var(--bs-card-bg);
     padding: 20px;
     border-radius: var(--bs-border-radius);
     box-shadow: var(--shadow-sm);
     margin-bottom: 20px;
 }

 .blog_details_page__toc-title {
     font-weight: 700;
     color: var(--bs-secondary);
     margin-bottom: 15px;
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     gap: 8px;
 }

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

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

 .blog_details_page__toc-list a {
     text-decoration: none;
     color: #666;
     font-size: 0.95rem;
     transition: all 0.2s;
     display: block;
     border-left: 2px solid transparent;
     padding-left: 10px;
 }

 .blog_details_page__toc-list a:hover,
 .blog_details_page__toc-list a.active {
     color: var(--bs-primary);
     border-left-color: var(--bs-primary);
     padding-left: 14px;
 }

 /* Share Buttons */
 .blog_details_page__share-label {
     font-size: 0.8rem;
     text-transform: uppercase;
     color: #999;
     font-weight: 700;
     margin-bottom: 10px;
     display: block;
 }

 .blog_details_page__share-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     padding: 7px;
     margin-bottom: 10px;
     border-radius: var(--bs-border-radius-sm);
     text-decoration: none;
     color: white;
     font-weight: 600;
     font-size: 0.6rem;
     transition: opacity 0.2s;
 }

 .blog_details_page__share-btn:hover {
     opacity: 0.9;
     color: white;
 }

 /* --- 7. Next/Prev Navigation --- */
 .blog_details_page__nav {
     margin-top: 40px;
     padding-top: 30px;
     border-top: 1px solid #e0e0e0;
     display: flex;
     justify-content: space-between;
 }

 .blog_details_page__nav-link {
     text-decoration: none;
     max-width: 45%;
 }

 .blog_details_page__nav-label {
     display: block;
     font-size: 0.8rem;
     color: #999;
     text-transform: uppercase;
     margin-bottom: 5px;
 }

 .blog_details_page__nav-title {
     display: block;
     font-weight: 700;
     color: var(--bs-secondary);
     font-size: 0.6rem;
     line-height: 1.3;
 }

 .blog_details_page__nav-link:hover .blog_details_page__nav-title {
     color: var(--bs-primary);
 }

 .sitemap-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .sitemap-title {
     color: var(--bs-secondary);
     font-weight: 700;
     font-size: 1.5rem;
     margin-bottom: 10px;
 }

 .sitemap-subtitle {
     color: var(--bs-primary-dark);
     opacity: 0.8;
     max-width: 600px;
     margin: 0 auto;
 }

 /* --- 4. Search Component --- */
 .sitemap-search-wrapper {
     max-width: 550px;
     margin: 0 auto 50px auto;
     position: relative;
 }

 .sitemap-search-input {
     width: 100%;
     padding: 10px 25px 10px 60px;
     /* Extra left padding for icon */
     border-radius: var(--bs-border-radius-xl);
     border: 1px solid transparent;
     background-color: var(--bs-card-bg);
     box-shadow: var(--shadow-sm);
     font-size: 1rem;
     transition: all 0.3s ease;
     color: var(--bs-secondary-dark);
 }

 .sitemap-search-input:focus {
     outline: none;
     border-color: var(--bs-primary-light);
     box-shadow: var(--shadow-hover);
     transform: translateY(-2px);
 }

 .sitemap-search-icon {
     position: absolute;
     left: 20px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--bs-primary);
     font-size: 1.5rem;
     /* Material icons need explicit sizing */
     user-select: none;
 }

 /* --- 5. Card Component --- */
 .sitemap-card {
     background-color: var(--bs-card-bg);
     border-radius: var(--bs-border-radius);
     box-shadow: var(--shadow-sm);
     border: none;
     height: 100%;
     transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     border: 1px solid #e5e0e0;
 }

 .sitemap-card:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-hover);
 }

 /* Card Header */
 .sitemap-card-header {
     padding: 10px 25px;
     background: linear-gradient(to right, rgba(45, 123, 175, 0.03), transparent);
     border-bottom: 1px solid rgba(0, 0, 0, 0.03);
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .sitemap-icon-box {
     width: 38px;
     height: 38px;
     background-color: rgba(45, 123, 175, 0.1);
     color: var(--bs-primary);
     border-radius: var(--bs-border-radius-sm);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.3s ease, color 0.3s ease;
 }

 .sitemap-icon-box .material-icons {
     font-size: 1.6rem;
     /* Size for header icons */
 }

 .sitemap-card:hover .sitemap-icon-box {
     background-color: var(--bs-primary);
     color: #fff;
 }

 .sitemap-card-title {
     margin: 0;
     font-size: 1rem;
     color: var(--bs-secondary);
     font-weight: 600;
 }

 /* Card Body */
 .sitemap-card-body {
     padding: 15px 25px;
     flex-grow: 1;
 }

 /* --- 6. List Styling --- */
 .sitemap-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .sitemap-list-item {
     margin-bottom: 12px;
 }

 .sitemap-list-item:last-child {
     margin-bottom: 0;
 }

 .sitemap-link {
     text-decoration: none;
     color: var(--bs-secondary-dark);
     font-size: 12px;
     display: flex;
     align-items: center;
     transition: all 0.2s ease;
     position: relative;
     padding-left: 0;
 }

 /* Material Icon Styling in Link */
 .sitemap-link .material-icons {
     font-size: 1.1rem;
     /* Smaller size for list bullets */
     margin-right: 8px;
     color: var(--bs-primary-light);
     transition: transform 0.2s ease;
     display: inline-flex;
     vertical-align: middle;
 }

 /* Link Hover Effect */
 .sitemap-link:hover {
     color: var(--bs-primary);
     padding-left: 6px;
 }

 .sitemap-link:hover .material-icons {
     color: var(--bs-primary);
     transform: translateX(2px);
 }


 /* career form */

 .career_form-card {
     background-color: var(--bs-card-bg);
     border-radius: var(--bs-border-radius-xl);
     border: 1px solid #eee;
     box-shadow: var(--shadow-sm);
     padding: 40px;
     transition: all 0.3s ease;
 }

 .career_form-card:hover {
     box-shadow: var(--shadow-hover);
 }

 .career_form-label {
     font-weight: 600;
     font-size: 0.8rem;
     color: var(--bs-secondary-dark);
     margin-bottom: 8px;
 }

 .career_form-control {
     background-color: var(--input-bg);
     border: 1px solid transparent;
     border-radius: var(--bs-border-radius);
     padding: 6px 10px;
     font-size: 0.75rem;
     transition: all 0.2s ease-in-out;
 }

 .career_form-control:focus {
     background-color: #fff;
     border-color: var(--bs-primary-light);
     box-shadow: 0 0 0 4px rgba(45, 123, 175, 0.1);
 }

 .input-group-text.career_form-icon {
     background-color: var(--input-bg);
     border: 1px solid transparent;
     border-right: none;
     border-top-left-radius: var(--bs-border-radius);
     border-bottom-left-radius: var(--bs-border-radius);
     color: var(--bs-primary);
 }

 .input-group-text.career_form-icon .material-icons {
     font-size: 20px;
 }

 .input-group .career_form-control {
     border-left: none;
 }

 select.career_form-control {
     cursor: pointer;
 }

 .career_form-file-input {
     padding: 10px;
     background-color: var(--input-bg);
     border: 1px dashed var(--bs-primary-light);
     border-radius: var(--bs-border-radius);
 }

 .career_form-btn {
     background-color: var(--bs-primary);
     color: white;
     font-weight: 600;
     padding: 6px 20px;
     border-radius: var(--bs-border-radius-lg);
     font-size: 14px;
     transition: all 0.3s;
 }

 .career_form-btn .material-icons {
     font-size: 18px;
 }

 .career_form-btn:hover {
     background-color: #000;
     color: #fff;
     box-shadow: var(--shadow-hover);
 }

 .career_form-section-header {
     color: var(--bs-secondary);
     font-size: 0.9rem;
     font-weight: 700;
     margin-top: 10px;
     margin-bottom: 15px;
     padding-bottom: 5px;
     border-bottom: 2px solid var(--input-bg);
 }

 /*  */



 /* web stories */
 :root {
     --story-card-radius: 16px;
     --story-aspect-ratio: 9/16;
     --story-overlay-gradient: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
 }

 body {
     background-color: #f8f9fa;
     font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
     margin: 0;
 }

 /* --- SOFTWARE LIST (Header) --- */
 .web_stories_software_scroll {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-top: 20px;
 }

 .web_stories_software_tag {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     color: #475569;
     padding: 8px 16px;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     transition: all 0.2s;
     text-decoration: none;
 }

 .web_stories_software_tag:hover {
     background: #0d6efd;
     color: white;
     border-color: #0d6efd;
     transform: translateY(-2px);
 }

 /* --- STORY CARD (Listing Page) --- */
 .web_stories_card {
     position: relative;
     border-radius: var(--story-card-radius);
     overflow: hidden;
     aspect-ratio: var(--story-aspect-ratio);
     cursor: pointer;
     background: #000;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .web_stories_card:hover {
     transform: translateY(-6px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .web_stories_card_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .web_stories_card:hover .web_stories_card_img {
     transform: scale(1.05);
 }

 .web_stories_overlay_content {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 10px;
     background: var(--story-overlay-gradient);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     pointer-events: none;
 }

 .web_stories_title {
     color: white;
     font-size: 15px;
     font-weight: 700;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 }

 .web_stories_date {
     color: #cbd5e1;
     font-size: 0.85rem;
     font-weight: 400;
 }

 .web_stories_watermark {
     position: absolute;
     top: 15px;
     left: 15px;
     z-index: 2;
     max-width: 65px;
     filter: brightness(0) invert(1);
 }

 /* --- FULL SCREEN VIEWER (Details Page) --- */
 .web_stories_modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 9999;
     display: flex;
     justify-content: center;
     overflow: hidden;
 }

 .modal-blur-bg {
     position: absolute;
     /* or as you already have it */
     inset: 0;
     overflow: hidden;
     background-color: #111;
     /* fallback color while loading */
 }

 /* two layers stacked on top of each other */
 .bg-layer {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     filter: blur(12px) brightness(0.6);
     /* keep your existing blur/effect */
     opacity: 0;
     transition: opacity 400ms ease;
     /* crossfade duration */
     will-change: opacity, background-image;
 }

 /* visible layer fades in */
 .bg-layer.visible {
     opacity: 1;
 }

 .web_stories_close {
     position: absolute;
     top: 20px;
     right: 25px;
     z-index: 10;
     background: rgba(0, 0, 0, 0.3);
     border: 2px solid rgba(255, 255, 255, 0.5);
     color: white;
     border-radius: 50%;
     width: 45px;
     height: 45px;
     font-size: 24px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
     text-decoration: none;
     /* For the link back */
 }

 .web_stories_close:hover {
     background: rgba(0, 0, 0, 0.6);
     color: white;
 }

 .web_stories_embla_wrapper {
     position: relative;
     z-index: 5;
     width: 100%;
     max-width: 420px;
     height: 85vh;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
     background: #000;
 }

 .web_stories_embla {
     overflow: hidden;
     width: 100%;
     height: 100%;
 }

 .web_stories_embla__container {
     display: flex;
     height: 100%;
     touch-action: pan-y pinch-zoom;
 }

 .web_stories_embla__slide {
     flex: 0 0 100%;
     min-width: 0;
     position: relative;
 }

 .web_stories_slide_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .web_stories_progress_container {
     position: absolute;
     top: 8px;
     left: 0;
     width: 100%;
     padding: 0 8px;
     z-index: 20;
     display: flex;
     gap: 4px;
 }

 .web_stories_progress_bar {
     height: 3px;
     background: rgba(255, 255, 255, 0.3);
     flex: 1;
     /* Distribute space evenly */
     border-radius: 2px;
     transition: background 0.3s ease;
 }

 .web_stories_progress_bar.active {
     background: #ffffff;
     /* Filled white for viewed stories */
 }

 /* 2. Header Overlay (Credit Text & Share Icon) */
 .web_stories_header_overlay {
     position: absolute;
     top: 20px;
     left: 0;
     width: 100%;
     padding: 0 12px;
     z-index: 20;
     display: flex;
     justify-content: space-between;
     align-items: center;
     pointer-events: none;
     /* Let clicks pass through to image */
 }

 .web_stories_header_overlay .btn-share {
     pointer-events: auto;
     /* Re-enable clicks for the button */
     background: transparent;
     border: none;
     color: white;
     padding: 0;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
     transform: rotate(-20deg);
     /* Slight tilt like paper plane */
     transition: transform 0.2s;
 }

 .web_stories_header_overlay .btn-share:hover {
     transform: scale(1.1) rotate(-20deg);
 }

 .story_credit_text {
     color: rgba(255, 255, 255, 0.8);
     font-size: 12px;
     font-weight: 500;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
 }

 /* 3. Updated Navigation Buttons (White Circle / Black Arrow) */
 .web_stories_nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: #ffffff;
     border: none;
     color: #000000;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     font-size: 1.5rem;
     cursor: pointer;
     z-index: 60;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
     transition: transform 0.2s ease, opacity 0.3s;
 }

 .web_stories_nav:hover {
     background: #f0f0f0;
     transform: translateY(-50%) scale(1.1);
 }

 .web_stories_prev {
     left: -70px;
 }

 .web_stories_next {
     right: -70px;
 }



 @media (max-width: 768px) {
     .web_stories_embla_wrapper {
         width: 100%;
         height: 100%;
         max-width: 100%;
         border-radius: 0;
     }

     .web_stories_nav {
         display: none;
     }

     .web_stories_close {
         top: 15px;
         right: 15px;
     }
 }

 /*  */